Need Help with Looping in JS for a usecase | Community
Skip to main content
akashaj7696
Level 3
April 8, 2021
Question

Need Help with Looping in JS for a usecase

  • April 8, 2021
  • 2 replies
  • 2063 views

Hi Everyone,

 

I have a usecase wherein i need to populate one value to other field. Please see below-

CCT_IDbestZip
ID1 
ID1 
ID1 
ID1 
ID112345
ID1 
ID1 
ID1 
ID1 
ID1 

 

I want to populate the zip - 12345 to all the ID1 rows, I tried a code, mentioned below but didn't get it to work yet.

 

var query=xtk.queryDef.create(
<queryDef schema="temp:union" operation="select" lineCount="10000">
<select>
<node expr="@id"/>
<node expr="@CCT_ID"/>
<node expr="@bestZip"/>
<node expr="@newZip"/>
</select>
</queryDef>);

var result = query.ExecuteQuery();

for each (var rec in result.union){

if (rec.@CCT_ID = rec.@CCT_ID){
if (rec.@bestZip != ""){
var value = rec.@bestZip;
logInfo("The value of zip is: " +value);
}
if (rec.@CCT_ID = rec.@CCT_ID){
if (rec.@bestZip = ""){
var newZip = value;
logInfo("The NewZip Value is:" +newZip);
var update=<union xtkschema="temp:union" _operation="update" _key="@id" id={rec.@id}/>
update.@newZip = newZip;

//Write the results to the session
xtk.session.Write(update);
}
}
}

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

Darren_Bowers
Level 9
April 9, 2021

Hi @akashaj7696 - I have tried to do this and I found that its easier to write back to another schema than the one you are querying in the queryDef. You can then query the temporary table later in the workflow.

I could never get the xtk.session.Write() function to actually work correctly so I used sqlExec() instead. Be careful if you are using user-input values as its not database-safe doing direct DB writes, so you should sanitize the inputs.

Also, the write operation seems to affect the cursor in the query operation when you need to page the query (i.e. >10000 results). It works fine if you never need to page the query.

There is some more info here:  https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/advanced-workflow-data-enrichment/qaq-p/355955

Cheers

Darren

akashaj7696
Level 3
April 9, 2021
Thanks Darren. Is there any solution to this usecase without using JS?
Adobe Employee
June 24, 2021

Hi there,

If the ask is to query the temporary table and update the temporary table in return, it's not doable outside JS and you would have to have the column you want to update into the temporary table prior the JS by adding it as Additional Data with an empty value.... From a temp table to itself within the workflow itself require a JS activity...

Hope this helps,

Denis.