Hi! It is not feasible in my experience to write to delivery variables from JS like that. Instead you could create an additional variabel in your query and set the value to the instance.vars.test value. Then you can simply reference <%=targetData.temp%> in the delivery. This is tested and works like...
Honestly, when we have seen some of the warnings like the one you refer to there, we often mitigate simply by duplicating the workflow and running that instead. No clue why. If that does not help, my suggestion would be to pause elements one by one, and monitor when error dissapears, to narrow down ...
Sure! So in pseudo configuration I would do it sort of like this. Query Activity with empty additional data field: JS Activity in the next step: var query = xtk.queryDef.create(
<queryDef schema="temp:query2" operation="select">
<select>
<node expr="newField"/>
<node expr="@id"/>
<n...
To my knowledge if the values you want to calculate are per recipient, then you would need to use a JS activity to query the temporary table in the workflow and then loop through each item instance and do the calculations on each iteration. Lastly you would have to write the results back to the elem...
Hi @Parvesh_Parmar. Thanks for the feedback. I see how this may not be a sustainable solution. I have switched to working with triggering a workflow from JSSP instead and then parsing variables throughout the workflow to both query the correct recipients as well as setting delivery variables during...
Hi Community! I am working on a use-case that allows external system to integrate to our Campaign instance in order to create push deliveries and schedule + execute them. Here I have a requirement where I need to be able to set a single application variable "path". However, I have been unable to suc...
Hi @JustinNi2 I totally missed this, sorry! The option we ended up with was, to do a calculation of 10% control group initially while ingesting the recipient in the system and add that to a person field. Then we aimed to look at this field in all commercial activities and simply split based on it, a...
Hi @SushantTrimukheD Thanks for the reply! I am most keen on avoiding an ftp in this proces. Im looking for an automated solution where the push notification is created, and executed via an external system. (For now, let's just say Postman for POC purposes). So a few more details: An example use-ca...
Hi Community! I have a use-case which I wanted to sparre with some of you about. We are looking into making an integration from an external system to ACC, to allow sending push notifications with dynamic content values such as title, sub title, text, and custom params. Also, the external system shou...