cancel
Showing results for 
Search instead for 
Did you mean: 

Linking placeholders in a Raise Alert Action Block

former_member1231563
Participant
0 Kudos

Hello Experts,

Would anybody let me know how to link placeholders for the Short/Long text Parameter or mutiple values for the Container Parameter of a Raise Alert Action Block

Till now I am able to link a single placeholder/value for the above parameters in the Link editor

What if i want to link multiple values for multiple placeholders for the Short/Long text or If i have more than one container fields defined, how to assign values to all the three fields during run time in a single expression Editor Tab

Any help would be highly appreciated!!

Thanks

Praveen

Accepted Solutions (0)

Answers (2)

Answers (2)

austin_jacob
Explorer
0 Kudos

Hi Praveen,

In Raise Alert Action Block

Short Text and Long Text are of Data Type "List"

You can either assign a local property of type to List to them or you may build a List in expression editor as

"[[string:Value1], [string:Value2]]"

or

list("Value1","Value2")

ContainerProperties and FollowupAction are of Data type "Map"

You can either assign a local property of type Map to them or you may build a Map in expression editor as

"{name1=[string:value1], name2=[string:value2], name3=[string:value3]}"

or

map(name1,value1,name2,value2,.....)

Regards,

Austin

Former Member
0 Kudos

This message was moderated.