Exclusion tab in delivery | Community
Skip to main content
January 27, 2022
Solved

Exclusion tab in delivery

  • January 27, 2022
  • 1 reply
  • 979 views

Hi All,

 

While checking default exclusion tab present in delivery , like exclude duplicate address and recipients who no longer want to be contacted, they are defined in delivery Input form as such:

 

  <if expr="@deduplicate and [../@messageType] != 5">
     <set translatedExpr="'Exclude duplicate addresses.'" xpath="/ignored/humanFilter"/>
</if>

 

<if expr="@useBlackList">
   <set translatedExpr="[/ignored/humanFilter]+'Exclude recipients no longer wishing to be contacted. '"
xpath="/ignored/humanFilter"/>
</if>

Can someone help to understand from where these human filters are derived/ defined in system, where logic are defined?

 

Thanks,

Diksha

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Amine_Abedour

hello @diksha_goel 

 

The "/ignored/humanFilter" node stores the "human-readable text" that will be displayed in the window :

 

The "translatedExpr=" will try to translate this text to the instance language.

 

Br,

 

Amine

 

1 reply

Amine_Abedour
Community Advisor
Amine_AbedourCommunity AdvisorAccepted solution
Community Advisor
January 27, 2022

hello @diksha_goel 

 

The "/ignored/humanFilter" node stores the "human-readable text" that will be displayed in the window :

 

The "translatedExpr=" will try to translate this text to the instance language.

 

Br,

 

Amine

 

Amine ABEDOUR