2022

Page tree

Versions Compared

Key

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

...

CHANGE THE MAPPINGS AS MENTIONED BELOW:

 

1st RULE

 SF 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

 


SF 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.

...