Skip to main content


         This documentation site is for previous versions. Visit our new documentation site for current releases.      
 

This content has been archived and is no longer being updated.

Links may not function; however, this content may be relevant to outdated versions of the product.

Converting a CPM CSR Portal to a CPM Interaction Portal

Updated on July 11, 2017

This article explains the steps required to convert an existing CPM CSR Portal to a CPM Interaction Portal.

If you are using any of the Vertical Frameworks (for example: CPMi and CPM-FS), then consider the OOTB rules from the respective framework instead of the CPM Framework.

Prerequisites

HFix-21430 is recommended to be installed after the CPM 7.1.3 upgrade. Contact Global Customer Support (GCS) to obtain this hotfix.

Procedure

To convert the CPM CSR Portal to CPM Interaction Portal, follow these steps:

  1. Configure the CPM Interaction Portal
  2. Update the interaction flow
  3. Retrofit custom harnesses into the interaction class
  4. Populate data pages
  5. Copy data from interaction to service items
  6. Update Service Tasks
  7. Retrofit custom harnesses into the work class
  8. Interaction composite details
  9. Retrofit wrap-up functionality

Configure the CPM Interaction Portal

Add CPMInteractionPortal and update a new access group to include CPM standard roles.

Configure access group

Do not modify or override the OOTB CPM operators or access groups. If needed, Save As the instances and then perform the update.

Pre 7.1 CSR portal

CPM CSR Portal (pre-CPM 7.1)

CPM 7.1 portal

CPM interaction Portal (CPM 7.1)

Update the interaction flow

In CPM 7, the Interaction Portal uses the flows CPMInteraction and CPMInteractionDriver instead of CAInteraction and CAInteractionDriver, which were used in previous versions of CPM.

Any customizations implemented using CAInteraction and CAInteractionDriver​ must be ported to instead use CPMInteraction or CPMInteractionDriver.

Main interaction flow

Existing interactions are not backward compatible. An Interaction created in previous versions of CPM cannot be processed after upgrading to CPM 7, but it can be opened in review mode. However, all service items are backward compatible.

Retrofit custom harnesses into an interaction class

As a part of CPM 7.1.3, all CPM harnesses are updated with Pega 7 OOTB features. Copy these harnesses into custom rulesets and retrofit all the harness level customizations into the respective harnesses.

This step must be completed for the CPM Interaction Portal to work correctly.

Update the custom Perform harness

The custom Perform harness needs to be updated to work with the new CPM user interface. Resave the OOTB Perform harness in PegaCA-Work-Interaction-Call. Perform and retrofit any customizations as required.

Perform harness (pre-CPM 7.1)

Perform harness (pre-CPM 7.1)

Perform harness (CPM 7.1)

Perform harness (CPM 7.1)

All of the OOTB harnesses that are overridden or customized in the application, such as Perform, Review, Confirm, and CPMPerform, must be updated for the new Interaction Portal to render as expected. (Resave from the latest harness and apply customizations.)

Populate data pages

In CPM versions previous to CPM 7.1, a thread family page called CAPortalInteraction was used for sharing between interaction and service processes. Currently, in the event of any changes, syncing with Interaction pyWorkPage instances is manually performed.

In CPM 7.1, requestor level data pages are created on demand for maintaining the data.

Customer-related data

Customer-related data in CPM 7.1.3, Account and Contact, are referred to in the data pages D_Account and D_Contact, respectively.

Both Interaction and Service process pages, pyWorkPage.Account and pyWorkPage.Contact refer to data pages, D_Account, D_Contact respectively in the new design. These pages are auto populated on demand when a service case is launched from the Interaction work page.

Populate contact details

The D_Contact_Details data page is auto-populated with customer contact details in an interaction when a contact is selected. This data page populates the data to the service case from the interaction case when a new service case is triggered. Both D_Contact_Addressses and D_Contact_CommOptions are simultaneously populated.

Populating contact details

In OOTB CPM, the data page is auto-populated based on the page property PegaCA-Work.Contact.ContactID.

ContactID property

Contact ID is mandatory because certain dashboard functionalities, such as Fetch Recent Interactions by Contact, require the contact ID.

Override the Load activities of the respective Data pages to populate the customer specific data.

Populate pyWorkParty (Contact) details a data page, D_Contact_Party, which is auto populated based on the Declare Onchange Trigger, CPMGetContactData on Contact.ContactID.

Interaction Driver Data and Service Case Data is displayed using data pages (parameterized). The following sections detail the different data pages that are auto-populated.

Driver data pages

  • D_TasksListForMenu – Take Action menu
  • D_SuggestedTasks – Suggestions
  • D_QueuedTasks – To do items
  • D_CompletedItems – Completed Item. Can be used to display a Log.

Other data pages

  • D_CPMInteractions – A requestor level page that is maintained and is filled by iterating through the pzRecentsCache OOTB data page. Records are filtered by the custom property Type.
  • D_ServiceCases – Used by applying the current interaction pyID for the services case. It can be a parameterized data page (requestor level) or a Thread Family level data page.
  • D_CPMPortalContext – Always maintains the current interaction context details when multiple interactions are opened or while switching between multiple interactions.
  • D_CPMInteractionDriverVisibility – Maintains all interaction IDs that are open in the particular requestor session. The DriverVisible property uniquely identifies the current active interaction.
  • D_CPMPortalRecents – Lists all interaction details open by the current requestor session.
  • D_CPMServiceCaseRecents – Lists all triggered service cases.

Copy data from interaction to service items

CACopyParentData, used in CPM versions earlier than CPM 7.1 for populating data to the service cases, is no longer used in the new Interaction Portal. Accordingly, any respective changes have to be retrofitted using the data transform CPMSetDefaults or the activity NewDefaults.

It is recommended to use the CPMSetDefaults data transform to copy all required data from an Interaction to a Service Case. If any other custom logic (which cannot be achieved using data transform) is required, then use the NewDefaults activity.

If the NewDefaults activity has to be overridden, then perform the following steps:

  1. Copy the NewDefaults activity rule from CPM OOTB into the respective custom work class (for example, PegaCA-Work) activity. Do not remove the first step, because it is required for CPM to work correctly.BPM extension activity
  1. Copy the NewDefaults activity rule from CPM OOTB into the respective custom Interaction Class (for example, PegaCA-Work-Interaction) activity and remove the first step. This step is required for CPM to work correctly.BPM extension activity

If the NewDefaults activity exists in the work class, then add the first step to call the CPMNewDefaults activity. This is mandatory for CPM Portals to work correctly.

Update service tasks

Update the service process flows and intent tasks

Starting in CPM 7.1.3 for the use of CPM Interaction Portal, the intent task is driven by the starting flow instead of the starting activity.

  • All service process flows must be created as starter flows.
  • All intent tasks must be updated with the corresponding service process flows by checking the following options in the Process tab of the flow:
    • Create a new work object
    • Skip create harness

Starting process

  1. All intent tasks must be updated with the corresponding starting flow and task class.
    Intent task

Update the flow actions

Configure the flow action’s Action area and Back-to-back Processing Configuration, based on business need. This depends on whether you want to display the Confirm harness or close the work object.

For example, the flow actions must be updated in the Action button to close the work object if any assignment is not performed, rather than displaying review harness.

Flow action details

This update must be performed for all of the flow actions in the intent task flows.

Retrofit custom harnesses into the work class

As a part of CPM 7.1.3, all of the CPM harnesses are updated with Pega 7 OOTB features. Copy these harnesses into the work class of custom rulesets and retrofit all of the harness level customizations into the respective harnesses.

This step should be completed for the CPM Interaction Portal to work correctly.

The custom Perform harness must be updated to work with the new CPM user interface. Resave the OOTB Perform harness in PegaCA-Work. Perform and retrofit any customizations as required.

Old Perform harness

Perform harness (pre-CPM 7.1)

New Perform harness

Perform harness (CPM 7.1)

All of the OOTB harnesses that are overridden or customized in the application, such as Perform, Review, Confirm and CPMPerform, need to be updated for the new Interaction Portal to render as expected. (Resave from the latest harness and apply customizations.)

Interaction composite details

In the CPM 7.1.3 Interaction Portal, composites are UI-driven and are not driver-driven like they previously were in the CPM CSR Portal.

Prior to CPM 7.1, composite data was displayed using the CAComposite harness rule. In CPM 7.1.3, the CPMCompositeContainer auto-generated section holds the composite data.

The OOTB CPMCompositeContainer section container holds the Account, Business Unit, and Summary data sections.

Retrofit the changes from the CAComposite to the CPMCompositeContainer section by:

  1. Save-As the OOTB CPMCompositeContainer section to custom ruleset or class.
  2. Create a new wrapper section and embed all of the sections to be displayed as a part of the interaction composite details in a tabbed group.
  3. Include the wrapper section in the CPMCompositeContainer section.

Pre 7.1 composite portal

CA Composite (pre-CPM 7.1)

New composite portal

CPMSummaryComposite_New (CPM 7.1.3)

Retrofit wrap-up functionality

For wrap-up functionality in releases prior to CPM 7.1, the CAWrapUp flow was used. Starting in CPM 7.1.3, this process has been updated to use CPMWrapup. Any customizations on the CAWrapUp flow must be retrofitted back to the CPMWrapup flow.

  1. Ensure that the pega_cpm_IP_EventManager JavaScript file is added in to the Perform harness for the interaction class.
    JavaScript file added to Perform harness
  2. Save-As the CPMWrapUp flow to a custom ruleset or class and incorporate or retrofit the existing functionality.Wrap up flow

Have a question? Get answers now.

Visit the Support Center to ask questions, engage in discussions, share ideas, and help others.

Did you find this content helpful?

Want to help us improve this content?

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

Pega.com is not optimized for Internet Explorer. For the optimal experience, please use:

Close Deprecation Notice
Contact us