ContributionsMost RecentMost LikesSolutionsRe: Creating elements out of normalized column data for Gravity Forms Hi, You can use the below expression a mapper followed by a splitter snap. $value.split(“;”)[1].split(“,”).map(x =>$value.split(“;”)[0]+“;”+x) in the above expression, $value is assumed to be the actual source value. The example source json is as follows. [{“value”:“col1;col2”}, {“value”:“ABC;CC1,CC2,CC3”}, {“value”:“DEF;CC1,CC2,CC3”}] Re: Not able to create JSON Array Hi @kumar25, You can you the Group By N snap and set the Group Size to 0 and Target field to values. Re: Batch records size of 300 Hi @sravankunadi , You are missing the concatenation. where ever your are trying to replace the value dynamically you need to use the " or ' along with +. In your case, the expression should go like below. lib.env.marketo.api+‘rest/v1/leads.json?filterType=id&filterCalues=’+$test+‘&fields=id,active,--------------------’ Re: How can I test for no rows back from Oracle query Hi, You can try using the gate snap after Oracle execute snap. Gate snap will always provide the output, even if there is no data then an empty array will be there. In the router check $input0.length > 0 for records else true. Add the splitter snap in the output view of where records were found and split data. Re: Get certain values of strings in array Hi, You can use the below expression. $[‘betroffene IT Systeme’].map(x => x.substring(x.indexOf(“(”)+1, x.indexOf(“)”))) Re: Lookup or Cache to store a value Hi Amit, Looks like you are trying to read the data from the upstream document. When you use the pipeline parameters you need not use the original field. Instead, you can access the variable using underscore. (ex: _yourVariableName). From the parent, when you are calling the child pipeline also you need to pass the value, so that in the child you will be able you use the same value. Re: Parallel or Async API call Hi, Use the child pipeline and move the calling of the API code into the child. In the parent pipeline, use the pipeline execute snap with the setting pool size. The number you specify in pool size will execute that many concurrent API calls. Re: XML - How to get value from actual position based on another value HI, Yes, that can also possible using the below expression. $Business.find(x => x.Branch.City.Ident == “Capital”) != null ? ($Business.find(x => x.Branch.City.Ident == “Capital”)).Branch.Id : 1 Re: XML - How to get value from actual position based on another value Hi, Try to use the below expression. It will give the Id of Ident Captial. ($Business.find(x => x.Branch.City.Ident == “Capital”)).Branch.Id Re: Change array to object and extract certain characters from it Hi, Use the below expression in a mapper. After that use the Splitter snap to get the details. $Systems.map(x => {“Systems” : x.substring(x.indexOf(“(”)+1, x.indexOf(“)”))})