How do we pass more than one value(array) of values from a variable into a filter condition of subsequent query activity | Community
Skip to main content
New Participant
February 7, 2020
Solved

How do we pass more than one value(array) of values from a variable into a filter condition of subsequent query activity

  • February 7, 2020
  • 2 replies
  • 7229 views

Hello,

 

Can we pass multiple values from a variable in JavaScript activity into filter criteria of subsequent query activity.

Tried using "is Included in" but all the values from Variable are being read as single value inside the filter criteria of query activity.

How can we have read all them separately, any suggestions appreciated !

 

 

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 Raj_Ganta-1

Hi,

 

Can you try the below code once?

 

var id = [] var res = query.getElementsByTagName("{{schema name}}") for each (var w in res){ id.push("'"+w.getAttribute("attribute name")+"'"); } vars.idArray = id.join(",").slice(1,-1); logInfo(vars.idArray);

 

 

if it is a string that is in filter criteria should use $noescaping(vars/@idArray) in it.

 

2 replies

New Participant
February 9, 2020

Hi,

You can define your variables in two(or more) separate variables in javscript activity and then in query activity use two(or more) different conditions with OR operator(separate condition for every variable with same column of table). I think this should work if i understood it correctly.

 

Regards

Raj_Ganta-1
Raj_Ganta-1Accepted solution
New Participant
February 7, 2020

Hi,

 

Can you try the below code once?

 

var id = [] var res = query.getElementsByTagName("{{schema name}}") for each (var w in res){ id.push("'"+w.getAttribute("attribute name")+"'"); } vars.idArray = id.join(",").slice(1,-1); logInfo(vars.idArray);

 

 

if it is a string that is in filter criteria should use $noescaping(vars/@idArray) in it.

 

Employee
November 23, 2020
This works. Thank you