2022

Page tree

Versions Compared

Key

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

Issue        : Invoice(s) were not getting updated from SF Salesforce to QuickBooks.

Reason    : Since there is only insert/no update sequence for invoice in OpportunityToInvoice workflow.

...

  1. Change the invoice sequence from ‘insert’‘Insert’ to ‘upsert’ ‘Upsert’ .

  2. Make sure that ‘Id’ ‘ID’ is the primary key.


  3. Inside mappings, target field<Id> shouId be mapped with  “IF“IF(ISEMPTY(VALUE("AVSFQB__Quickbooks_Id__c")),"",VALUE("AVSFQB__Quickbooks_Id__c"))”




  4. Save the workflow.

...