Requirement is as below:
For CAML query, I am looking to parameterize an attribute that is passed in that query.
Query is as below:
The part I am looking to parameterize is where Name= “Data”, I am trying to store this value “Data” in asset and be able to use that variable here as this value may change so don’t want to keep it hard coded.
Dear Sonali,
You can store the Data as Asset, then retrieve the value using Get Asset activity into a variable strVar(assuming) of type string before passing it to the query
Then
“ …
…Name=”+ strVar +“/…”