10.1 Configure an event-based journey - Order Confirmation

In this section you will configure a trigger-based journey - Order Confirmation

Login to Adobe Journey Optimizer by going to Adobe Experience Cloud. Click Journey Optimizer.

ACOP

You'll be redirected to the Home view in Journey Optimizer. First, make sure you're using the correct sandbox. The sandbox to use is called --aepSandboxId--. To change from one sandbox to another, click on PRODUCTION Prod (VA7) and select the sandbox from the list. In this example, the sandbox is named AEP Enablement FY22. You'll then be in the Home view of your sandbox --aepSandboxId--.

ACOP

10.1.1 Create your event

In the menu, go to Configurations and click Manage under Events.

Journey Optimizer

On the Events screen, you'll see a view similar to this. Click Create Event.

Journey Optimizer

You'll then see an empty event configuration.

Journey Optimizer

First of all, give your Event a Name like this: --demoProfileLdap--PurchaseEvent, and add a description like this: Purchase Event.

Journey Optimizer

Next is the Event Type selection. Select Unitary.

Journey Optimizer

Next is the Event ID Type selection. Select System Generated

Journey Optimizer

Next is the Schema selection. A schema was prepared for this exercise. Please use the schema Demo System - Event Schema for Website (Global v1.1) v.1.

Journey Optimizer

After selecting the Schema, you'll see a number of fields being selected in the Payload section. Click the Edit/Pencil icon to add additional fields to this event.

Journey Optimizer

You'll then see this popup. You now need to check additional checkboxes in order to access additional data when this event gets triggered.

Journey Optimizer

First of all, check the checkbox on the line --aepTenantId--.

Journey Optimizer

Next, scroll down and check the checkbox on the line productListItems.

Journey Optimizer

Next, scroll down and check the checkbox on the line commerce.

Journey Optimizer

Next, click Ok.

You'll then see that additional fields have been added to the event. Click Save.

Journey Optimizer

Your new event is then shared and you'll see your event in the list of available events now.

Click on your event again to open up the Edit Event screen again. Hover over the Payload field again to see the 3 icons again. Click on the View Payload icon.

Journey Optimizer

You'll now see an example of the expected payload. Your event has a unique orchestration eventID, which you can find by scrolling down in that payload until you see _experience.campaign.orchestration.eventID.

Journey Optimizer

The event ID is what needs to be sent to Adobe Journey Optimizer in order to trigger the journey that you'll build in the next step. Write down this eventID, as you'll need it in one of the next steps. "eventID": "ef6dd943c94fe1b4763c098ccd1772344662f2a9f614513106cb5ada8be36857"

Click Ok, followed by Cancel.

Your event is now configured and ready to be used.

10.1.2 Create your journey

In the menu, go to Journeys and click Create Journey.

Journey Optimizer

You'll then see this. Give your journey a name. Use --demoProfileLdap-- - Order Confirmation journey. Click OK.

Journey Optimizer

First, you need to add your event as the starting point of your journey. Search for your event --demoProfileLdap--PurchaseEvent and drag and drop it onto the canvas. Click OK.

Journey Optimizer

Next, under Actions, search for the Email action and add it onto the canvas.

Journey Optimizer

Set the Category to Marketing and select an email surface that enables you to send email. In this case, the email surface to select is Email. Ensure that the checkboxes for Clicks on email and email opens are both enabled.

ACOP

The next step is to create your message. To do that, click Edit content.

ACOP

You now see this. Click the Subject line text field.

ACOP

In the text area start writing Thanks for your order,

Journey Optimizer

The subject line is not done yet. Next you need to bring in the personalization token for the field First name which is stored under profile.person.name.firstName. In the left menu, scroll down to find the Person > Full name > First name field and click on the + icon to add the personalization token into the subject line. Click Save.

Journey Optimizer

You'll then be back here. Click Email Designer to create the email's content.

Journey Optimizer

In the next screen, click Design from scratch.

Journey Optimizer

In the left menu, you'll find the structure components that you can use to define the structure of the email (rows and columns).

Drag and drop 8 times a 1:1 column on the canvas, which should give you this:

Journey Optimizer

Go to Content Components.

Journey Optimizer

Drag and drop an Image component on the first row. Click Browse.

Journey Optimizer

Go to the folder enablement-assets, select the file luma-logo.png and click Select.

Journey Optimizer

You're now back here. Click your image to select it and then use the Size slider to make the logo image a bit smaller.

Journey Optimizer

Go to Content Components and drag and drop an Image component on the second row. Select the Image component but DON'T click Browse.

Journey Optimizer

Paste this image URl in the field Source: https://parsefiles.back4app.com/hgJBdVOS2eff03JCn6qXXOxT5jJFzialLAHJixD9/29043bedcde632a9cbe8a02a164189c9_preparing.png. This image is hosted outside of Adobe.

Journey Optimizer

When you change the scope to another field, the image will be rendered and you'll see this:

Journey Optimizer

Next, go to Content Components and drag and drop a Text component on the third row.

Journey Optimizer

Select the default text in that component Please type your text here. and replace it by the below text:

You’re one step closer!

Hi 

We've received your order details!

We will also send you a separate email containing your VAT Invoice.

We'll be back in touch with you as soon as we've finished packing your package. Please read carefully the Order Information detailed below.
Journey Optimizer

Put the cursor next to the text Hi and click Add Personalization.

Journey Optimizer

Navigate to the Person > Full name > First name field and click on the + icon to add the personalization token into the subject line. Click Save.

Journey Optimizer

You'll then see this:

Journey Optimizer

Next, go to Content Components and drag and drop a Text component on the fourth row.

Journey Optimizer

Select the default text in that component Please type your text here. and replace it by the below text:

Order Information

Change the font size to 26px and center your text in this cell. You'll then have this:

Journey Optimizer

Next, go to Content Components and drag and drop an HTML component on the fifth row. Click the HTML component and then click Show the source code.

Journey Optimizer

In the Edit HTML popup, paste this HTML:

<table><tbody><tr><td><b>Items purchased</b></td><td></td><td><b>Quantity</b></td><td><b>Subtotal</b></td></tr><tr><td colspan="4" width="500"><hr></td></tr></tbody></table>

Click Save.

Journey Optimizer

You'll then have this. Click Save to save your progress.

Journey Optimizer

Go to Content Components and drag and drop an HTML component on the sixth row. Click the HTML component and then click Show the source code.

Journey Optimizer

In the Edit HTML popup, paste this HTML:

{{#each xxx as |item|}}<table width="500"><tbody><tr><td><img src="{{item.--aepTenantId--.core.imageURL}}" width="100"></td><td><table><tbody><tr><td><b>{{item.name}}</b><br>{{item.--aepTenantId--.core.subCategory}}<br><b>{{item.priceTotal}}</b><br>&nbsp;<br>Article no: {{item.SKU}}</td></tr></tbody></table></td><td>{{item.quantity}}</td><td><b>{{item.priceTotal}}</b></td></tr></tbody></table>{{/each}}

You'll then have this:

Journey Optimizer

You now have to replace xxx by a reference to the productListItems object that is part of the event that triggers the journey.

Journey Optimizer

First, delete xxx in your HTML code first.

Journey Optimizer

In the left menu, click Contextual attributes. This context is passed to the message from the journey.

Journey Optimizer

You'll then see this. Click the arrow next to Journey Orchestration to drill deeper.

Journey Optimizer

Click the arrow next to Events to drill deeper.

Journey Optimizer

Click the arrow next to --demoProfileLdap--PurchaseEvent to drill deeper.

Journey Optimizer

Click the arrow next to productListItems to drill deeper.

Journey Optimizer

Click the + icon next to Name to add it to the canvas. You'll then have this. You now need to select .name as indicated in the below screenshot, and then you should remove .name.

Journey Optimizer

You'll then have this. Click Save.

Journey Optimizer

You'll be back in the Email Designer now. Click Save to save your progress.

Journey Optimizer

Next, go to Content Components and drag and drop an HTML component on the seventh row. Click the HTML component and then click Show the source code.

Journey Optimizer

In the Edit HTML popup, paste this HTML:

<table><tbody><tr><td><b>Subtotal</b><br>Delivery charge (included)</td><td align="right"><b>xxx</b><br><b>5</b></td></tr><tr><td colspan="2" width="500"><hr></td></tr><tr><td><b>Total including VAT</b></td><td align="right"><b>xxx</b></td></tr></tbody></table>

There are 2 references of xxx in this HTML code. You now have to replace each xxx by a reference to the productListItems object that is part of the event that triggers the journey.

Journey Optimizer

First, delete the first xxx in your HTML code.

Journey Optimizer

In the left menu, click Contextual Attributes.

Journey Optimizer

Click the arrow next to Journey Orchestration to drill deeper.

Journey Optimizer

Click the arrow next to Events to drill deeper.

Journey Optimizer

Click the arrow next to --demoProfileLdap--PurchaseEvent to drill deeper.

Journey Optimizer

Click the arrow next to Commerce to drill deeper.

Journey Optimizer

Click the arrow next to Order to drill deeper.

Journey Optimizer

Click the + icon next to Price Total to add that to the canvas.

Journey Optimizer

You'll then have this. Now delete the second xxx in your HTML code.

Journey Optimizer

Click the + icon next to Price Total again to add that to the canvas.

Journey Optimizer

You can also add the field Currency from within the Order object onto the canvas, as you can see here. When you're done, click Save to save your changes.

Journey Optimizer

You'll then be back in the Email Designer. Click Save again.

Journey Optimizer

Go back to the message dashboard by clicking the arrow next to the subject line text in the top-left corner.

Journey Optimizer

Click the arrow in the top left corner to go back to your journey.

Journey Optimizer

Click Ok to close your email action.

Journey Optimizer

Click Publish to publish your journey.

Journey Optimizer

Click Publish again.

Journey Optimizer

Your journey is now published.

Journey Optimizer

10.1.5 Update your Adobe Experience Platform Data Collection Client property

Go to Adobe Experience Platform Data Collection and select Tags.

This is the Adobe Experience Platform Data Collection Properties page you saw before.

Properties page

In module 0, Demo System created two Client properties for you: one for the website and one for the mobile app. Find them by searching for --demoProfileLdap-- in the [Search] box. Click to open the Web property.

Search box

Go to Data Elements. Search and open the data element XDM - Purchase.

Journey Optimizer

You'll then see this. Navigate to the field _experience.campaign.orchestration.eventID and fill out your eventID here. The eventID to fill out here, is the eventID you created as part of exercise 10.1.2. Click Save or Save to Library.

Journey Optimizer

Save your changes in your Client property, and then publish your changes by updating your development library.

Journey Optimizer

Your changes are now deployed and can be tested.

10.1.6 Test your order confirmation email using the demo website

Let's test the updated journey by buying a product on the demo website.

Go to https://builder.adobedemo.com/projects. After logging in with your Adobe ID, you'll see this. Click your website project to open it.

DSN

On the Screens page, click Run.

DSN

You'll then see your demo website open up. Select the URL and copy it to your clipboard.

DSN

Open a new incognito browser window.

DSN

Paste the URL of your demo website, which you copied in the previous step. You'll then be asked to login using your Adobe ID.

DSN

Select your account type and complete the login process.

DSN

You'll then see your website loaded in an incognito browser window. For every demonstration, you'll need to use a fresh, incognito browser window to load your demo website URL.

DSN

Click the Adobe logo icon in the top left corner of your screen to open the Profile Viewer.

Demo

Have a look at the Profile Viewer panel and the Real-time Customer Profile with the Experience Cloud ID as the primary identifier for thi currently unknown customer.

Demo

Go to the Register/Login page. Click CREATE AN ACCOUNT.

Demo

Fill out your details and click Register after which you'll be redirected to the previous page.

Demo

Add any product to your cart, and go to the Cart page. Click Proceed to checkout.

Journey Optimizer

Next, verify the fields on the checkout page and click Checkout.

Journey Optimizer

You'll then receive your order confirmation email within seconds.

Journey Optimizer

You have finished this exercise.

Last updated