Parsing External Signal Parameters
Dear All,
I created a workflow where query activity retrieves IDs passed to an External signal activity. My question is I am unable to parse the IDs relevant to query criteria. Below is the syntax of the query condition
@2175539in ($(vars/@ids))
what I am passing in external activity is id = "id1','id2"
$(vars/@ids) gets parsed to 'id1\',\'id2'
I know that it is escaping single quotes with a backward slash, which I wanted to avoid, and also I tried to use replace function of ACS which was not working as expected, below is the syntax for the same.
Replace($(vars/@ids),'\\','')
I am expecting the following desired output.
$(vars/@ids) = 'id1','id2' which would fit perfectly in my query criteris i. e @2175539 in ('id1',id2')
Any insights would be really helpful.