How do I use a personaliation field (from nms:deliverycustomization) in a delivery/personalisation block? | Community
Skip to main content
Level 2
September 25, 2018
Solved

How do I use a personaliation field (from nms:deliverycustomization) in a delivery/personalisation block?

  • September 25, 2018
  • 2 replies
  • 3019 views

Hi

I am aware I can put personalisation blocks into other personalisation blocks, or into deliveries, using something like <%@ include view='myPBName' %>

Is there an easy equivalent for personalisation fields?

Alternatively; is there a way to update personalisation block content using an 'update data' activity? I am experimenting with using the fields rather than the blocks as I was struggling to make this happen.

Thanks

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 david--garcia

You can create or write into a perzonalisation block from a workflow like the following.

Here are the methods from the js api.

includeView

Reusable content blocks that can be included in the customization

Methods

Generic Methods

createCreates a new entity corresponding to a given schema.
loadLoads and returns an entity corresponding to a given schema and key.
saveSaves an entity in the database.

2 replies

david--garcia
david--garciaAccepted solution
Level 10
September 25, 2018

You can create or write into a perzonalisation block from a workflow like the following.

Here are the methods from the js api.

includeView

Reusable content blocks that can be included in the customization

Methods

Generic Methods

createCreates a new entity corresponding to a given schema.
loadLoads and returns an entity corresponding to a given schema and key.
saveSaves an entity in the database.

Level 2
September 26, 2018

thanks David - that got me to what I needed