cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

C4C Visibility Rule - Sales Quote

former_member703991
Participant
0 Kudos
1,029

Hi All,

What is the rule I can use for below scenario to set visible:

(Source =A) and (Priority =A, B) then Type field should be visible.

Accepted Solutions (1)

Accepted Solutions (1)

former_member438195
Participant

Hello Riyu,

Based on conditions (Source =A) and (Priority =A, B) then Type field should be visible.

The below rule shall attend your needs:

IF(AND(Source=="A",OR(Priority=="A",Priority=="B")),True,False)

Could not see fields Source and Priority on test system to create the rule will full details, however if you replace the above with bindings from rule editor, it shall work.

Please let me know if you need further help 😉

BR,

Vandré

Answers (1)

Answers (1)

PrasanthArya
Product and Topic Expert
Product and Topic Expert
0 Kudos

Condiering Source and Prioirty are your extension fields , please find for thoese fields and based on the same an example could be

AND(Root.DeliveryPriorityCode==2, Root.Source==1)

Define Rule condiion on on Type field for visibile propoerty where 2 and 1 are the correspdoing code list values of Source and Priority fields.