Skip to main content

Manipulating application data

3 Tasks

20 mins

Visible to: All users
Beginner Pega Platform 8.7 Data Integration English
Verify the version tags to ensure you are consuming the intended content or, complete the latest version.

Scenario

To ensure that customers are billed for only the services provided, the program manager wants the application to display a list of the services performed by the service provider. The list must include the following information:

  • Name of the service performed
  • Unit cost of the service
  • Number of times the service was performed
  • Total cost for each service
  • Total cost of the services performed

On the Perform service flow, configure the CopySelectedServices data transform to copy services provided from a Service case to an Assistance request case.

The following diagram displays the relationships of the Selected services Embedded data type in the Assistance Request case type, and the Services data relationship in the Service case type to the Services offered data type.

entity relationship diagram services offered

The following table provides the credentials you need to complete the challenge:

Role User name Password
Application Developer author@gogoroad pega123!
Note: Your practice environment may support the completion of multiple challenges. As a result, the configuration shown in the challenge walkthrough may not match your environment exactly.

You must initiate your own Pega instance to complete this Challenge.

Initialization may take up to 5 minutes so please be patient.

Challenge Walkthrough

Detailed Tasks

1 Configure the Review service summary step

  1. In the navigation pane of App Studio, click Case types > Assistance Request to open the Assistance request case type.
  2. In the Assistance request case type, on the Workflow tab, click Review service summary to open the step properties pane.
  3. In the step properties pane to the right, click Configure view to display a dialog box.
  4. In the dialog box, click Add field to configure a new field.
  5. Create a multi-record data relationship named Selected services. In the Type list, select Embedded data. In the Data object list, select Services offered. Click the List of records radio button to designate it as a multi-record data relationship. 
    selected-services
  6. Click Submit & add another to configure a new field.
  7. Create a currency calculated field named Invoiced total. In the Type list, select Currency.
  8. Expand the Advanced section and then select the This is a calculated field (read-only) check box.
  9. In the Calculation section, in the Function dropdown, select Sum of. In the Field dropdown, select Line total.
  10. Click Submit.
    Invoiced total field configuration
  11. In the Options for the Description, Quantity, Service, and Unit Cost fields, select Read-only.
    Review service summary
  12. Click Submit to record the new fields and return to the Workflow tab of the case life cycle.
  13. Click Save to save your changes in the case life cycle.

2 Configure the CopySelectedServices data transform

  1. In the navigation pane of App Studio, click Case types > Service to open the Service case type.
  2. In the Perform service process, click Configure Process.
  3. Click Open process in Dev Studio to open the Perform service flow rule in the flow canvas.
    Tip: Alternatively, in Dev Studio, in the App Explorer, expand Service > Process > Flow, and then select PerformService to open the Perform service flow rule.
  4. On the flow canvas, right-click the Select services connector, and then select View Properties to display the Connector properties dialog box.
     
    Select services connector View properties
  5. In the Connector properties dialog box, in the Set properties area, select Apply data transform to add a data transform to the connector.
  6. In the Data transform field, enter CopySelectedServices to name the data transform. 
    connector properties CopySelectedServices data transform
  7. To the right of the Data transform field, click the Open icon to open the Create Data Transform tab.
  8. On the Create Data Transform tab, click Create and open to display a new data transform record.
  9. On the Definition tab of the data transform record, configure the CopySelectedServices data transform.
    1. On the data transform record, in the Action list, select For Each Page In to repeat over the items in a list. A second, indented row labeled 1.1 is displayed on the record.
    2. In the row labeled 1, in the Target field, enter or select .Services to repeat over the items in the Services list.
    3. In the Source column, select the Also use each page as source context check box to use the Services page as the source context to resolve property references.
    4. In the row labeled 1.1, in the Actions list, select When to configure the condition for selecting a row. A third, indented row labeled 1.1.1 is displayed on the record.
    5. In the row labeled 1.1, in the Target field, enter .Quantity>0 to only select rows with a quantity greater than zero.
    6. In the row labeled 1.1.1, from the Actions list, select Append to to append the contents of the selected row to a different list.
    7. In the row labeled 1.1.1, in the Target field, enter pyWorkCover.SelectedServices to copy the contents of the selected row to the Selected Services data relationship in the Assistance request parent case.
    8. In the row labeled 1.1.1, from the Relation list, select current source page to copy the contents of the selected row in the Services data relationship in the Service case. 
      data-transform
    9. On the data transform record, click the Pages & Classes tab to define the pyWorkCover page so that the data transform can resolve the Selected services property reference.
    10. In the Page name field, enter pyWorkCover as the name of the page to define.
    11. In the Class field, enter or select GoGo-GoGoRoad-Work-AssistanceRequest to define the context of the pyWorkCover page as the Assistance Request case type class. 
      page-classes
    12. Click Save to complete the configuration of the data transform.
  10. Click the PerformService tab to return to the Perform service flow record.
  11. In the Connector properties dialog box, click Submit to complete the configuration of the Select services connector that runs the CopySelectedServices data transform.
  12. Click Save to complete the configuration of the Perform service flow record.

3 Set default property values for service quantity

  1. From the App Explorer, expand Service > Data Model > Data Transform, and then click pyDefault to open the pyDefault data transform.
    Note: If you do not see pyDefault, refresh the App Explorer by clicking Options > Refresh App Explorer.
  2. In the Pages & Classes tab, enter pyWorkCover for the Page name field and GoGo-GoGoRoad-Work-AssistanceRequest for the Class field.
    pagename
  3. In the Definition tab, click Add a row.
  4. In the Action field, select For Each Page In.
  5. In the Target field, enter or select .Services.
  6. Check the box Also use each page as source context.
  7. In the child step's Action field, select Set.
  8. In the Target field, enter or select .Quantity.
  9. In the Source field, enter 0.
    pydefault-2
  10. Click Save to save your changes to the new version of pyDefault.

Confirm your work

  1. Click Create > New > Assistance Request
  2. In the Enter customer information form, select [email protected] as the Account ID.
  3. Advance the case to the Select services view and confirm the default values in each field in the Quantity row is 0.
  4. Enter the quantities provided in the following image and verify that the total cost is $210.00. 
    services-screen
  5. Click Submit to complete the Select services assignment and resolve the Service case. The Review service summary view is displayed.
  6. On the Review service summary view, verify that the Selected services table displays the three rows filled out in the Service case and that the value of the Invoice total field is $210.00.
    Note: In a real-life implementation, ensure that the list of selected services in the Assistance Request case is read-only and restricts users from adding or removing items. You can remove the Add item and Delete controls by editing the section rule that displays the list, which is outside the scope of this challenge.
    reviewServices
Note: The empty first row in the table is a result of the Selected services list initialization. You can remove the empty first row by deleting the .SelectedServices(1).pyLabel created by default in the pySetFieldDefaults data transform, which is outside the scope of this challenge.

This Challenge is to practice what you learned in the following Module:


Available in the following missions:

If you are having problems with your training, please review the Pega Academy Support FAQs.

Did you find this content helpful?

80% found this content useful

Want to help us improve this content?

We'd prefer it if you saw us at our best.

Pega Academy has detected you are using a browser which may prevent you from experiencing the site as intended. To improve your experience, please update your browser.

Close Deprecation Notice