Step 1: Create the Flow component
The first step is to create a Flow component. This Flow component will be part of the Flow twice. The user enters configuration values in the Flow component through Field Mapping.
To go to the Flow component, click βFlow componentβ under the βBackground processesβ menu on the left side panel.

To create a new Flow component, click [+ Flow component].

The βDetailsβ tab is selected by default.
To define the Flow component, label it as βActivityEmailSenderβ.
To elaborate on the purpose of this Flow component, optionally enter a description.
To store information/logs regarding the execution of the Flow component and associated events, create a βFlow Progression Entityβ labeled as "UserName_flowApp_progressionβ by clicking the [+] button.

To enable execution of multiple requests, disable βSkip execution while in progressβ by clicking the toggle button.
By default, it is enabled. If this remains enabled then the Flow component will not be triggered for the other requests while one request is in progress. Since more than one request will be received simultaneously, if one customer request is in progress, additional requests will be skipped.


To define the Mapped Fields, expand the βField Mappingβ section by clicking on the arrow. Mapped Fields are input fields for this Flow component. (When the Flow component is placed in a Flow, the user can assign values to these fields in the form of constant text or from relevant sources before executing the Flow.) To add a new field, click [+ Field]. Add nine (9) mapped fields.

To set up the Mapped Fields, define the fields as follows:
Mapped Field: βCustomerIDβ, Data Type: βstringβ. This mapped field will contain Customer ID information.
Mapped Field: βFromβ, Data Type: βstringβ. This mapped field will contain the text displaying which person or team sent the email.
Mapped Field: βSubjectβ, Data Type: βstringβ. This mapped field will contain the contents of the email subject.
Mapped Field: βEmailBodyβ, Data Type: βstringβ. This mapped field will contain the contents of the email subject.
Mapped Field: βActivityTypeβ, Data Type: βstringβ. This mapped field will contain the value of the type of activity being recorded for the customer.
Mapped Field: βAssignedToβ, Data Type: βstringβ. This mapped field will contain the information about who the task was assigned to.
Mapped Field: βPriorityβ, Data Type: βnumericalβ. This mapped field will contain the priority of the activity in terms of a numerical value.
Mapped Field: βDescriptionβ, Data Type: βstringβ. This mapped field will contain the description of the activity.
Mapped Field: βEmailTypeβ, Data Type: βstringβ. This mapped field will contain the description of the type of email e.g. Marketing email.
After all fields are defined, the Field Mapping section will be as per the image below.

To expand the βEventsβ section, click on the βEventsβ arrow. In this section, the users define the events that may be triggered during the execution of the Flow component.

When a Flow component is created, its four (4) predefined Events are displayed in this section:
βSuccessβ
βErrorβ
βWasDisabledβ
βAlreadyRunningβ

To create a new βEventβ, click the [+ Event] button.

The Event box displays. It is enabled by default.
To define the Event:
Enter the Event name to be displayed.
Enter the Event name for the platform.

To associate more Events with this Flow component, create the following additional events.
βSentβ: This Event is triggered when the email is sent.
βOpenedβ: This Event is triggered when the email is opened.
βBouncedβ: This Event is triggered if the email bounces back i.e. it is not delivered.
βLinkClickedβ: This Event is triggered when the link in the email is clicked. If a link is provided in the email and the user clicks it, the Event will trigger the Flow component connected to it in the Flow.

To configure the icon for this Flow component, click the βLangstackβ icon on the right-hand side.
A dialog box displays. To select the image to load as the Flow component icon, click on the βLangstackβ icon or βUpload iconβ button. In this exercise, the Mail icon is selected. (user can choose any image). To save the image, click the [Save] button.
The new icon displays.
To view the predefined variables for the Flow component, go to the βVariablesβ tab. Two (2) variables are already defined to store the values entered by the user in defining the Flow component Mapped Fields.
Variable Name: βSourceβ, Data Type: βJXPFlowAppActivityβ. This variable contains a number of elements relevant to the Flow component activity in a Flow that hold a certain value.
Variable Name: βMappedFieldsβ, Data Type: βjsonβ. Mapped fields contain the values in Json format.

To create a new βTarget Entityβ, go to the βTarget Entitiesβ tab and click the [+ Target entity] button.

To define the target entity, select βUserName_Acc_Activitiesβ from the drop-down menu. The created record with this Flow component will be stored in this entity.

To define a sequence of Actions to create an entity record in the target entity, go to the βCodeβ tab. To create a new βAction boxβ, click the [+ Action box] button.

Label the Action box as βcreate anniversary email recordβ. In this βAction boxβ, the necessary actions will be added and configured to create an anniversary email record for the customer.

To define the variables to be used in the βAction boxβ, expand the βAction boxβ and go to the βVariablesβ tab. To create a new variable to store values, click the [+ Variable] button.

To load the records from the entity βUserName_Acc_customersβ into a variable, define the variable as follows:
Variable Name: βCustomerβ
Data Type: βUserName_Acc_customersβ

To add Actions, go to the βCodeβ tab in the Action box to add Actions.
To load the entity record into the variable βCustomerβ, add and define this first Action as follows:
Select Action as βLoad Entity recordβ.
From the drop down menu, select the variable βCustomerβ. The entity record will be loaded into the variable βCustomerβ.
To configure the criteria settings, click the βCriteria settingsβ icon.

To configure the settings for how the records of the entity will be loaded into the variable, in the βLoad Entity recordβ Action criteria settings, define the following fields:
Select βOrder byβ as βCustomer_IDβ. The records will be displayed by ordering the βCustomer_IDβ field.
Sort in βAscendingβ order. The records will be loaded in ascending order.
Create a new βMatch keyβ by clicking the [+ Match key] button.

Define the match key as follows:
Select the field βCustomer_IDβ from the drop down menu. This match key maps the βCustomer_IDβ field in the entity to the field βCustomerIDβ in the βMapped Fieldsβ.
Select the source as Variables>MappedFields>CustomerID>toGUID(). It is displayed as βMappedFields.CustomerID.toGUID()β. The value of the βCustomerIDβ provided in the mapped field of the Flow component by the user will be aligned with the βCustomer_IDβ field (after conversion from Json to GUID) in the entity.
Click the [Save] button.

To check if the record is loaded, add another Action and define it as follows:
Select Action as βCondition actionβ.
Enter the description as βcheck if the record is loadedβ.

To define the variables to be used in the βCondition actionβ, expand the βCondition actionβ and go to the βVariablesβ tab. Create two (2) variables.

To convert the record in the Customer variable into Json before triggering the Flow component activity, define the first variable as follows:
Variable Name: βJSβ
Data Type: βJsonβ

To update the values of the record fields to be loaded into the entity βUserName_Acc_Activitiesβ, define the second variable as follows:
Variable Name: βCustomerActivityβ
Data Type: βUserName_Acc_Activitiesβ

To define the criteria for this action, go to the βCriteriaβ tab. To verify if the record is loaded, add and define a Criteria bar as follows:
Select Variables>Customer. It is displayed as βCustomerβ.
Select the Operator as βIs Setβ.

To define the actions in case the criteria returns a True value, go to the Code tab>On True section.

To define a sequence of actions to create an email activity record, define a Group action as follows:
Select Action as βGroup actionβ. The actions defined within a Group action are treated as a group. When the Group action is changed in the position or copied, the changes are applied to all the actions defined within the group.
Add the description as βcreate an email activityβ. This action contains a sequence of actions to create an email activity and update it in the βUserName_Acc_Activitiesβ entity.

To create a new Action in the Group action, click the (+) button in the Group action. To update the values of the new record, add nine (9) Actions in the Group action by clicking the (+) button.
To update the βActivity_AssignedToβ field of the record with the value from the mapped field βAssignedToβ (defined in the Details>Field Mapping section), define the first Action as follows:
Select Action as βUpdate Variableβ.
Select Target variable as CustomerActivity>Activity_AssignedTo. It is displayed as βCustomerActivity.Activity_AssignedToβ.
Select Value as Variables>MappedFields>AssignedTo. It is displayed as βMappedFields.AssignedToβ.

To update the βActivity_CreatedByβ field of the record with the text βActivityEmailSender Flow componentβ, define the second Action as follows:
Select Action as βUpdate Variableβ.
Select Target variable as CustomerActivity>Activity_CreatedBy. It is displayed as βCustomerActivity.Activity_CreatedByβ.
Type Value as βActivityEmailSender Flow componentβ and press Enter. It will display in a blue bubble.

To update the βActivity_DateTimeβ field of the record with the current date, define the third Action as follows:
Select Action as βUpdate Variableβ.
Select Target variable as CustomerActivity>Activity_DateTime. It is displayed as βCustomerActivity.DateTimeβ.
Select Value as Functions>DateTime>Now(). It is displayed as βDateTime.Now()β.

To update the βActivity_Descriptionβ field of the record with the value from the mapped field βDescriptionβ (defined in the Details>Field Mapping section), define the fourth Action as follows. (The value in this field is entered as a string by the user in the Flow component.)
Select Action as βUpdate Variableβ.
Select Target variable as CustomerActivity>Activity_Description. It is displayed as βCustomerActivity.Activity_Descriptionβ.
Select Value as Variables>MappedFields>Description. It is displayed as βMappedFields.Descriptionβ.

To update the βActivity_Priorityβ field of the record with the value from the mapped field βPriorityβ (defined in the Details>Field Mapping section), define the fifth Action as follows.
Select Action as βUpdate Variableβ.
Select Target variable as CustomerActivity>Activity_Priority. It is displayed as βCustomerActivity.Activity_Priorityβ.
Select Value as variables>MappedFields>Priority>toInteger(). It is displayed as βMappedFields.Priority.toInteger()β. (The value is entered as a string by the user and converted to Integer before creating the record.)

To update the βActivity_Typeβ field of the record with the value from the mapped field βEmailTypeβ (defined in the Details>Field Mapping section), define the sixth Action as follows. The value is entered as a string by the user in the Flow component.
Select Action as βUpdate Variableβ.
Select Target variable as CustomerActivity>Activity_Type. It is displayed as βCustomerActivity.Activity_Typeβ.
Select Value as Variables>MappedFields>EmailType. It is displayed as βMappedFields.EmailTypeβ.

To update the βActivity_Statusβ field with details including the customer email and the type of email sent, define the seventh Action as follows:
Select Action as βUpdate Variableβ.
Select Target variable as CustomerActivity>Activity_Status. It is displayed as βCustomerActivity.Activity_Statusβ.
In the Value, define two (2) values that together display as : βEmail sent to the customer emailβ βCustomer.Emailβ. For example, the email sent to customer email address β[email protected]β, it will be displayed in the entity as βEmail sent to the customer email [email protected]β.β
First type constant text as βEmail sent to the customer email β and press Enter. It is displayed in a blue bubble.
In the same field, select Variables>Customer>Email. It is displayed as βCustomer.Emailβ.

To update the βCustomer_IDβ field of the record with the value from the mapped field βCustomerIDβ (defined in the Details>Field Mapping section), define the eighth Action as follows. (The value is entered as a string by the user in the Flow component and converted to GUID before creating the record in the entity.)
Select Action as βUpdate Variableβ.
Select Target variable as CustomerActivity>Customer_ID. It is displayed as βCustomerActivity.Customer_IDβ.
Select Value as Variables>MappedFields>CustomerID>toGUID(). It is displayed as βMappedFields.CustomerID>toGUID()β. The value is entered as a string by the user in the Flow component and converted to GUID before creating the record in the entity.

To create the record into the βUserName_Acc_Activitiesβ entity and get the βJXPResponseβ when the entity record is created, define the last Action in the Group action as follows:
Select Action as βCreate Entity recordβ.
Click [+] and add a variable named βResultβ. This variable is of JXPResponse data type and is displayed in the βVariablesβ tab of the βAction boxβ. This variable will contain the response to display when the created record is loaded into the target entity.
Select Value as βCustomerActivityβ. This variable contains the values of the entity fields updated in the βGroup actionβ.

To update the customer entity record into a json variable before triggering the Flow component Event, add another Action by clicking the (+) button in the βAction boxβ after the βGroup actionβ (within the βOn Trueβ section).
To update the target variable βJSβ with details in the Customer variable,define the Action as follows:
Select Action as βUpdate Variableβ.
Select Target variable as βJSβ.
Select Value as Variables>Customer>toJson(). It is displayed as βCustomer.toJson()β.

To trigger the Flow component event with an event Sent, add the last Action as follows:
Select Action as βTrigger Flow component eventβ.
Select JXPFlowAppActivity as βSourceβ.
Enter the Event name as βSentβ.
Select Details json as βJSβ (Variables>JS).

To save the Flow component, click the [Save] button.

To publish the Flow component, click the [Publish] button.

To enable the Flow component, in the Details tab click the toggle button to set it as βEnabledβ.

Last updated
