2022

Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

GO TO “CUSTOMER TO ACCOUNT” WORKFLOW

CHANGE THE MAPPINGS AS MENTIONED BELOW:

 

1st RULE

 Salesforce UPSERT ACCOUNT

 


VALIDATE ROW

IF(ISEMPTY(VALUE("ParentRef/ListID")),IF(VALUE("CustomerTypeRef/FullName").equals("Retail"),"true","false"),"false")

 

Here, “Retail” is the customer type; however, we can change it according to our requirement.

 

3RD RULE


Salesforce UPSERT ACCOUNT

 



VALIDATE ROW

IF(ISEMPTY(VALUE("ParentRef/ListID")),"false",IF(EQUALS(VALUE("Sublevel"),"1"),IF(VALUE("CustomerTypeRef/FullName").equals("Retail"),"true","false") ,"false"))

 

Here, “Retail” is the customer type; however, we can change it according to our requirement.

 

 

 

 

  • No labels