How pass an object as a parameter to a content block? | Community
Skip to main content
israel_sanchez
Level 3
October 22, 2020
Solved

How pass an object as a parameter to a content block?

  • October 22, 2020
  • 2 replies
  • 2867 views

Hello all, I have a workflow with a Java Script task that queries and retrieves a set of products from a custom schema, those products are selected based on specific properties for each recipient, so I have a custom content block with the HTML template where the products info will be filled, the question is, how can I pass those objects from the JS task to the content block?

 

I would like to say the complete email body is build in AEM.

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 isahore

Hi @israel_sanchez,

I assume every recipient will be getting a different set of products. In your JS code, you can add those products into the temporary schema against each recipient record using the xtk.session.Write() method [I know it is not efficient to this method to write into temporary tables], and then get all the products in the content block just like other targetData elements and attributes.

e.g. <%= targetData.product1 %>

 

To make the workflow efficient, you can avoid writing into the temporary schema, but write into a file (.csv) on the server instead. The file would contain the recipient identifier, and the products per line of data. Later on in the workflow, you can use the "data loading (File)" activity to read that file and then enrich your targeting dimension with the data from that file.

You can keep using the same file name for every execution of the workflow, but remember to delete the file from the server once it has served its purpose (end of the workflow). This operation (file write/read) is way faster than writing into the temporary schema in your JS code when the number of records in the temporary schema is too high.

 

Let me know if that helps.

 

Thanks,

Ishan

2 replies

DavidKangni
Community Advisor
Community Advisor
October 23, 2020

Hi there,

Assuming you want to use last name under recipient schema.

 

If your block is a JS recipient.lastName

If your block is html then <%= recipient.lastName %>

 

Basically make sure you can read you calculated data from the workflow.

 

Thanks,

David

David Kangni
isahore
Community Advisor
isahoreCommunity AdvisorAccepted solution
Community Advisor
October 28, 2020

Hi @israel_sanchez,

I assume every recipient will be getting a different set of products. In your JS code, you can add those products into the temporary schema against each recipient record using the xtk.session.Write() method [I know it is not efficient to this method to write into temporary tables], and then get all the products in the content block just like other targetData elements and attributes.

e.g. <%= targetData.product1 %>

 

To make the workflow efficient, you can avoid writing into the temporary schema, but write into a file (.csv) on the server instead. The file would contain the recipient identifier, and the products per line of data. Later on in the workflow, you can use the "data loading (File)" activity to read that file and then enrich your targeting dimension with the data from that file.

You can keep using the same file name for every execution of the workflow, but remember to delete the file from the server once it has served its purpose (end of the workflow). This operation (file write/read) is way faster than writing into the temporary schema in your JS code when the number of records in the temporary schema is too high.

 

Let me know if that helps.

 

Thanks,

Ishan

israel_sanchez
Level 3
October 28, 2020
Thank you, I'll check that way, I think to query inside the Content Block is a good approach, I'll keep you posted once we have the WF completed.