Step 1: Check if the join date matches the current date
To check if the join date matches the current date, follow the steps below.
To go to the Process template, select โProcessโ under the Background processes menu on the left side panel.

In the Background processes>Process tab, click the [+ Process] button.

To label the Process and enable it, go to the โDetailsโ tab. In the โDetailsโ tab:
Enter the Process name as โCustomerJoinDateAnniversaryNotificationโ.
Optionally enter the description for the Process.
Ensure the Process is enabled.

To disallow multiple requests simultaneously, leave the toggle button enabled for โskip execution while in progressโ. Enabling this toggle button defines that the execution of this Process will be skipped when there is one already in progress.

The default value for Process execution is selected as โImmediateโ. For this exercise, keep it as is.

To define the shared variables, go to the โVariablesโ tab. This tab consists of the shared variable โStartupParametersโ with the data type โListโ.

To add a variable, click the [+ Variable] button.

Add and define (2) shared variables:
To have a variable to hold the day and month of the current date, define the first variable as follows: Variable Name: โstrDayMonthTodayโ, Data Type: โstringโ.
To have a variable to hold the current date, define the second variable as follows: Variable Name: โcurrentDateโ, Data Type: โDateTimeโ and initialize it to โDateTime.Now()โ (Navigate to Functions>DateTime>Now).

To create a new Target Entity, go to the โTarget Entitiesโ tab and click [+ Target Entity]. This Target entity is where the Process will update the records.

To define the target entity, select the โTarget Entityโ from the drop-down menu as โUserName_Acc_Activitiesโ.

To add the sequence of actions to check if the current date matches the customer's join date, go to the โCodeโ tab. To create a new โAction boxโ, click the [+ Action box] button.

To calculate the day and month of today, label the Action box as โCalculate DayMonth of todayโ. This is the first โAction boxโ in which the value for the โDayMonthJoinDateโ (field in the entity โUserName_Acc_customerโ) for the current day will be evaluated and stored in the record to be updated.

To define variables for the actions in this Action box, go to the Action box>Variables tab. To create a new variable, click the [+ Variable] button. Create three (3) variables.

To store the value of the current date as a string, define a variable as follows: Variable Name: โcurrent_daymonthโ, Data Type: select โstringโ.

To store the value for the month in the current date, define a variable as follows: Variable Name: โcurrent_monthโ, Data Type: โstringโ.

To store the value for the day in the current date, define a variable as follows: Variable Name: โcurrent_dayโ, Data Type: โstringโ.

To add an action, go to the Action box>Code tab of the โAction boxโ and click the (+) button.

To update the variable with the โcurrent_dayโ with the day's value in the current date, define the added Action as follows:
Select Action as โUpdate Variableโ.
Select the Target variable as โcurrent_dayโ.
Select Value by navigating the dropdown Functions>DateTime>Now()>Day()>toString(). It will display as โDateTime.Now().Day().toString()โ. The current day's value is first converted to string and then updated to the variable โcurrent_dayโ.

To update the variable with the โcurrent_monthโ with the month's value in the current date, add and define another Action as follows:
Select Action as โUpdate Variableโ.
Select the Target variable as โcurrent_monthโ.
Select Value by navigating the dropdown Functions>DateTime>Now()>Month()>toString(). It will display as โDateTime.Now().Month().toString()โ. The current month's value is first converted to string and then updated to the variable โcurrent_monthโ.

To add a zero in case the month is of 1 digit, add and define an Action as follows:
Select Action as โCondition actionโ.
Enter the label as โif month is 1 digit, add a zeroโ.

To check if the length of the month's value is equal to 1, add and define a Criteria bar as follows:
Select Source as Variables>current_month>length(). It displays as current_month.length().
Select Operator as โIs Equalโ.
Enter Value as โ1โ and press Enter.

If the Criteria is returned as true, define an Action in the Code tab>On True section as follows:
Select Action as โUpdate Variableโ.
Select the Target variable as โcurrent_monthโ.
Define Source as follows:
In the Source, type โ0โ without quotes and press Enter.
Navigate the dropdown and select Variables>current_month.

To update the variable with the โcurrent_daymonthโ with the month's value in the current date, add another Action after Condition action and define it as follows:
Select Action as โUpdate Variableโ.
Select the Target variable to be โcurrent_daymonthโ.
Select Value as follows:
Navigate and select the โcurrent_dayโ variable.
Navigate and select the โcurrent_monthโ variable.

To traverse the entity โUserName_Acc_customersโ for comparing the values of the customer's join date with the current date, define the Action as follows:
Select Action as โTraverse Entityโ. This action will traverse an entity.
Select entity โUserName_Acc_customersโ. This entity will be traversed.
In the field โTreat element in the list asโ, the variable named โitemโ is automatically created and populated. This item contains the value of each element in the list of the records read from the โUserName_Acc_customersโ entity.

To set up the criteria for Traverse Entity selected as โUserName_Acc_customersโ, click the "Criteria Setup" icon.
To define settings for the traverse such that the entity can be traversed in order by the โDayMonthJoinDateโ in the entity in ascending manner, set the criteria as follows:
Order By: โJoin_Dateโ. This defines that the records to be traversed will be ordered by the Join_Date field of the entity.
Ascending: the records to be traversed will be ordered in an ascending manner, i.e., the joining date of the oldest value will be displayed first.

To add a Match Key, click the [+ Match key] button.

To define a Match key:
Select the field as โDayMonthJoinDateโ.
Select Variables>current_daymonth. It displays as โcurrent_daymonthโ. The field โDayMonthJoinDateโ will be matched with the variable โcurrent_daymonthโ. This match key defines that only those records will be traversed in which the DayMonthJoinDate's value is the same as the values of day and month in the current date.
To save the settings, click the [Save] button.

To define Variables for Actions in the Traverse Entity Action, go to Variables. A variable โitemโ is already created.

Add two (2) more Variables.
To store the value for the existing anniversary, define the first variable as follows:
Variable Name: โexisting_anniversaryโ
Data Type: โUserName_Acc_Activitiesโ

To send a response, define the second variable as follows:
Variable Name: โnew_anniversaryโ
Data Type: โUserName_Acc_Activitiesโ

To define the actions for the Traverse Entity Action, go to the Code tab and add a new Action.
To find the first item in the list of entity records, define the first Action as follows:
Select Action as โFind first List itemโ
Select Target variable as โexisting_anniversaryโ
Select Source List as Variables>item>Customer_Activities. It displays as โitem.Customer_Activitiesโ.

To define the criteria for the โFind first List itemโ Action, click on the โSetup criteriaโ icon.
Based on the Filter Settings, if a record for an Anniversary is already created for a customer and the record creation date is the current date, then that record (in the variable โitemActivitiesโ) will be updated into the variable โJoinDateAnniversaryListโ. If by the end of this traverse, โJoinDateAnniversaryListโ is empty, a new record will need to be created. If it has any record, the new record will not be created. To set up the Filter Settings, add two (2) Criteria bars by clicking the (+) button.
To check if the Activity Type in the traversed record is equal to โAnniversaryโ, define the first Criteria bar as follows:
Select item>Activity_Type. It displays as โitem.Activity_Typeโ.
Select Operator as โIs Equalโ.
Type the text โAnniversaryโ and press Enter. The text displays in a blue bubble. This Criteria bar checks if the value of the โActivity_Typeโ in the traversed record matches the type โAnniversaryโ.

To check if the Activity_Type in the traversed record is created today, define the second Criteria bar as follows:
Select item>Activity_DateTime. It displays as โitem.Activity_DateTimeโ.
Select Operator as โIs todayโ.

To set the criteria such that both the Criteria bars must return โTrueโ, keep the logical operator as โANDโ. If both of the Criteria bars return โTrueโ, no new record will be created. To save the Filter Settings, click the [Save] button.

Add a new action in the Traverse entity action and define it as follows:
Select Action as โCondition actionโ.
Enter the description as โif the anniversary exists, skip the customerโ.

To check if the value for the โexisting_anniversaryโ is received, in the Criteria tab add a new Criteria bar:
Select Source as Variables>existing_anniversary. It displays as โexisting_anniversaryโ.
Select the Operator as โIs Setโ.

To define the action if the criteria is True, in the Code tab>On True section add an Action โContinue List Traverseโ.

To add a group of actions for assigning values to the record fields, a new Action after the Condition action and define it as follows:
Select Action as โGroup actionโ.
Enter the description as โupdating the anniversary fieldsโ.

In this Group action, the actions will be configured to update the values of the fields of the target entity โUserName_Acc_Activitiesโ through the variable โnew_anniversaryโ. Add six (6) actions.
To update the variable โnew_anniversaryโ with a value for the field โActivity_AssignedToโ in the entity, define the first Action as follows:
Select Action as โUpdate Variableโ.
Select Target variable as new_anniversary>Activity_AssignedTo and press Enter. It will display as โnew_anniversary.Activity_AssignedToโ.
Enter Value as โsales teamโ (without quotes) as constant text. This text will be displayed in the field for the record.

To update the variable โnew_anniversaryโ with a value for the field โActivity_Typeโ in the entity, define the second Action as follows:
Select Action as โUpdate Variableโ.
Select Target variable as new_anniversary>Activity_Type and press Enter. It will display as โnew_anniversary.Activity_Typeโ.
Add the Value as โAnniversaryโ (without quotes) and press Enter. This text will be displayed in the field for the record.

To update the variable โnew_anniversaryโ with a value for the field โActivity_CreatedByโ in the entity, define the third Action as follows:
Select Action as โUpdate Variableโ.
Select Target Variable as new_anniversary>Activity_CreatedBy and press Enter. It will display as โnew_anniversary.Activity_CreatedByโ.
Enter Value as โanniversary processโ (without quotes) and press Enter. This text will be displayed in the field for the record.

To update the variable โnew_anniversaryโ with a value for the field โActivity_Descriptionโ in the entity, define the fourth Action as follows:
Select Action as โUpdate Variableโ.
Select Target variable as new_anniversary>Activity_Description. It will display as โnew_anniversary.Activity_Descriptionโ.
Add the Value as โthis is the anniversary of the customerโs joining date.โ (without quotes) and press Enter. This text will be displayed in the field for the record.

To update the variable โnew_anniversaryโ with a value for the field โActivity_DateTimeโ in the entity, define the fifth Action as follows:
Select Action as โUpdate Variableโ.
Select Target variable as new_anniversary>Activity_DateTime. It will display as โnew_anniversary.Activity_DateTimeโ.
Select the Value as Functions>DateTime>Now(). It will display as โDateTime.Now()โ. This will update the field for the record with current date information.

To update the variable โnew_anniversaryโ with a value for the field โCustomer_IDโ in the entity, define the sixth Action as follows:
Select Action as โUpdate Variableโ.
Select Target variable as new_anniversary>Customer_ID and press Enter. It will display as โnew_anniversary.Customer_IDโ.
Select the Value as Variables>item>Customer_ID. It will display as โitem.Customer_IDโ.

The Group action will look as per the image below.

To create a new record, add a new Action after the Group action. To update the values of the fields updated in the variable (by the first six actions) into a variable createRecord and create the record in the target entity, define the Action as follows:
Select Action as โCreate Entity recordโ. This action creates a new record in the Target Entity and its related entities.
Add a new variable by clicking [+] and name it โanniversary_responseโ. To save this variable, click the [Save] button. This variable will be the data type JXPResponse variable and will display the success or failure of the record creation.
Select Entity variable as โnew_anniversaryโ. The information of the fields stored in this variable will be populated in the newly created record in the target entity.

To save the Process, click the [Save] button.
To publish the Process, click the [Publish] button.
Triggering Flow
To trigger a flow, add a new action after "Create Entity record" and follow the steps below:
To check if the record is created successfully, add and define an Action as follows:
Select Action as โCondition actionโ.
Enter the description as โcheck if creation is successfulโ.

To check if the error code is equal to โ0โ, in the Criteria tab, add a Criteria bar as follows:
Select Variables>anniversary_response>errorcode. It displays as โanniversary_response.errorcodeโ.
Select Operator as โIs Equalโ.
Type the Integer value as โ0โ and press Enter. The text displays in a blue bubble.

To configure the Flow โCustomerActivityCreatedโ to be triggered when this Process is executed, in the Code tab>On True section, add and define an Action as follows:
Select Action as โTrigger Flowโ.
Select Flow as โCustomerActivityCreatedโ.
Select Entity variable as Variables>new_anniversary. It is displayed as โnew_anniversaryโ.
Details Json field is empty.

To display the Activity_ID of the created record on the Test Console, add the last Action and define it as follows:
Select Action as โDisplay on test consoleโ.
Select Variables>new_anniversary>Activity_ID. It will display as โnew_anniversary.Activity_IDโ.

To save the Process, click the [Save] button.

To publish the Process, click the [Publish] button.

Last updated
