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:

    1. Enter the Process name as β€œCustomerJoinDateAnniversaryNotification”.

    2. Optionally enter the description for the Process.

    3. 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:

    1. 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”.

    2. 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:

    1. Select Action as β€œUpdate Variable”.

    2. Select the Target variable as β€œcurrent_day”.

    3. 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:

    1. Select Action as β€œUpdate Variable”.

    2. Select the Target variable as β€œcurrent_month”.

    3. 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:

    1. Select Action as β€œCondition action”.

    2. 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:

    1. Select Source as Variables>current_month>length(). It displays as current_month.length().

    2. Select Operator as β€œIs Equal”.

    3. 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:

    1. Select Action as β€œUpdate Variable”.

    2. Select the Target variable as β€œcurrent_month”.

    3. Define Source as follows:

      1. In the Source, type β€˜0’ without quotes and press Enter.

      2. 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:

    1. Select Action as β€œUpdate Variable”.

    2. Select the Target variable to be β€œcurrent_daymonth”.

    3. Select Value as follows:

      1. Navigate and select the β€œcurrent_day” variable.

      2. 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:

    1. Select Action as β€œTraverse Entity”. This action will traverse an entity.

    2. Select entity β€œUserName_Acc_customers”. This entity will be traversed.

    3. 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:

    1. Order By: β€œJoin_Date”. This defines that the records to be traversed will be ordered by the Join_Date field of the entity.

    2. 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:

    1. Select the field as β€œDayMonthJoinDate”.

    2. 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.

    3. 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:

    1. Variable Name: β€œexisting_anniversary”

    2. Data Type: β€œUserName_Acc_Activities”

  • To send a response, define the second variable as follows:

    1. Variable Name: β€œnew_anniversary”

    2. 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:

    1. Select Action as β€œFind first List item”

    2. Select Target variable as β€œexisting_anniversary”

    3. 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:

    1. Select item>Activity_Type. It displays as β€œitem.Activity_Type”.

    2. Select Operator as β€œIs Equal”.

    3. 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:

    1. Select item>Activity_DateTime. It displays as β€œitem.Activity_DateTime”.

    2. 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:

    1. Select Action as β€œCondition action”.

    2. 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:

    1. Select Source as Variables>existing_anniversary. It displays as β€œexisting_anniversary”.

    2. 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:

    1. Select Action as β€œGroup action”.

    2. 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:

    1. Select Action as β€œUpdate Variable”.

    2. Select Target variable as new_anniversary>Activity_AssignedTo and press Enter. It will display as β€œnew_anniversary.Activity_AssignedTo”.

    3. 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:

    1. Select Action as β€œUpdate Variable”.

    2. Select Target variable as new_anniversary>Activity_Type and press Enter. It will display as β€œnew_anniversary.Activity_Type”.

    3. 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:

    1. Select Action as β€œUpdate Variable”.

    2. Select Target Variable as new_anniversary>Activity_CreatedBy and press Enter. It will display as β€œnew_anniversary.Activity_CreatedBy”.

    3. 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:

    1. Select Action as β€œUpdate Variable”.

    2. Select Target variable as new_anniversary>Activity_Description. It will display as β€œnew_anniversary.Activity_Description”.

    3. 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:

    1. Select Action as β€œUpdate Variable”.

    2. Select Target variable as new_anniversary>Activity_DateTime. It will display as β€œnew_anniversary.Activity_DateTime”.

    3. 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:

    1. Select Action as β€œUpdate Variable”.

    2. Select Target variable as new_anniversary>Customer_ID and press Enter. It will display as β€œnew_anniversary.Customer_ID”.

    3. 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:

    1. Select Action as β€œCreate Entity record”. This action creates a new record in the Target Entity and its related entities.

    2. 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.

    3. 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.

circle-info

For this exercise, skip the upcoming steps with the β€œTrigger Flow” action as these are a part of exercises in Introduction to Flows & Flow components. Save and publish the Process, and proceed to Test the Process section.

Triggering Flow

To trigger a flow, add a new action after "Create Entity record" and follow the steps below:

  1. To check if the record is created successfully, add and define an Action as follows:

    1. Select Action as β€œCondition action”.

    2. Enter the description as β€œcheck if creation is successful”.

  1. To check if the error code is equal to β€œ0”, in the Criteria tab, add a Criteria bar as follows:

    1. Select Variables>anniversary_response>errorcode. It displays as β€œanniversary_response.errorcode”.

    2. Select Operator as β€œIs Equal”.

    3. Type the Integer value as β€œ0” and press Enter. The text displays in a blue bubble.

  1. 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:

    1. Select Action as β€œTrigger Flow”.

    2. Select Flow as β€œCustomerActivityCreated”.

    3. Select Entity variable as Variables>new_anniversary. It is displayed as β€œnew_anniversary”.

    4. Details Json field is empty.

  1. To display the Activity_ID of the created record on the Test Console, add the last Action and define it as follows:

    1. Select Action as β€œDisplay on test console”.

    2. 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