Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
var request = { 
    "type"   : "calculateSaveFormulas",
    "object" : "Some_Custom_Object__c", // the object type
    "data"   : {
        // optional list of objectIds (must be of the same object type as specified.
        "objectIds"     : [ "a025000000iW9YuAAK", "a0250000005thYuAnp" ],
        // optional where clause (additional way to select specific objects)
        "whereClause"   : "Type = 'Bodega' OR Type = 'Supermarket'",
        // optional list of specific formula fields to calculate. If you don't pass this parameter, it will calculate and save all formulas.
        "formulaFields" : [ "Total_Price__c" : "Some_Other_Formula_Field__c" ]
    }
};
bridge.sendRequest(request, function (responseData) { alert('Javascript got its calculateSaveFormulas response: ' + responseData); });

...