Application Data Model

Size: px
Start display at page:

Download "Application Data Model"

Transcription

1 Application Data Model Pega Marketing for Financial Services 7.31 October 2017 Introduction This document provides an overview of the Pega Marketing for Financial Services customer data model. It is intended for system architects and data architects. It provides an overview about how the application retrieves and uses data from your internal systems and how data are stored in the Customer Analytics Record in the Pega Marketing for Financial Services application. The extended Customer Analytics Record, also called xcar, in the Pega Marketing for Financial Services application is a flat structured record of the customer data used for customer analytics. Pega uses the Decision, or DDS, to store the records. The Decision is a Cassandra based big data repository developed on NoSQL technology. While Pega Marketing for Financial Services also supports relational tables, Pega recommends an xcar solution over using relational database tables for Pega Marketing for Financial Services for performance gains. This document also covers the data objects used in Pega-provided use cases of Pega Marketing for Financial Services. For a complete list of all data objects and properties available on this and other Pega Financial Services applications, see the Pega Foundation for Financial Services data model document on the Pega Discovery Network (PDN). For additional details on how Pega integrates with your specific applications and databases, consult your Delivery Team. Content How Pega integrates to your systems Customer analytics data store deployment options Pega-provided Decision Pega-provided relational database Combined rational and decision data stores Data objects Rule types used Loading your data Data object details Customer Deposit accounts Tech Note 1

2 Loan accounts Investment accounts Credit card accounts Credit card transactions How Pega integrates to your systems The Pega Marketing for Financial Services application integrates to your customer data to provide Next Best Actions, execute marketing campaigns and learn customer behavior using predictive and adaptive analytics. Pega Platform is a highly flexible software development platform that provides integration to your data using widely available industry protocols. A typical Pega Marketing for Financial Services implementation looks like this: System of Record A ETL Process Data Warehouse Batch Data Customer Analytical Data Access Data Update Pega Marketing Application System of Record B Real-Time Data Pega Integration Layer The data in your systems of record is usually extracted to a data warehouse or data lake for internal purposes. Typically, only a portion of this data will be required for this application and Pega accesses this batch data using our Pega Marketing for Financial Services data integration components. Real-time data can be accessed directly from systems of record using web services technology. Your project objectives and data latency requirements will determine your data access implementation. After the source data is identified, data is loaded to the Pega-provided customer analytical data store. This process restructures the customer data as flattened data objects, which are designed to maximize performance and scalability while ensuring data integrity. Designing the customer analytical data store is an important part of project initiation and should be done in conjunction with your business and implementation partners. The customer analytical data store is also referred to as the spine table or the Customer Analytics Record. Tech Note 2

3 Customer analytical data store deployment options To maximize reuse and reduce implementation effort, Pega recommends that you select one of the following deployment options for your customer analytic data store when implementing Pega Marketing for Financial Services. Pega-provided Decision In this option your customer analytic data store is contained in Pega using NoSQL technology. Use this option if you are planning to deploy your application using inbound Pega Customer Decision Hub or in analytics-driven decision processes. Pega-provided relational database In this option your customer analytic data store is contained in a defined external database schema using standard SQL technology. Use this option if you are planning to deploy your application for outbound marketing or if you plan to use audience-driven marketing campaigns. The creation of Audiences requires customer data to be stored in relational tables. Combined relational and decision data stores In this option your customer analytic data store is contained in both SQL and NoSQL data stores and is automatically replicated and maintained within Pega for maximum flexibility. Use this option if you plan to deploy your application in both inbound and outbound marketing use cases, or when using Pega Customer Decision Hub with outbound treatment capabilities. Combined relational and decision data store is the recommended deployment option in the 7.31 release. Tech Note 3

4 Data objects The Pega Marketing for Financial Services application includes an extensible data model which consists of six data objects. Customer PegaMarketingFS-Data-Customer Deposit Accounts PegaMarketingFS-Data-Customer-Accounts-Deposit Loan Accounts PegaMarketingFS-Data-Customer-Accounts-Loan Investment Accounts PegaMarketingFS-Data-Customer-Accounts-Investment Credit Card Accounts PegaMarketingFS-Data-Customer-Accounts-CreditCard Credit Card Transactions PegaFS-Data-Transaction-Card Customer is the main data object and contains the customer details, including home address, telephone, and . A summary of assets and liabilities is also included in this data object. Deposit Accounts, Loan Accounts, Investment Accounts, and Credit Card Accounts define the details of all Customer owned accounts including balances, description, account status, and important account dates. Credit Card Transactions defines the transaction details, including amount, currency, merchant category code, description, important transaction dates, and merchant locations of credit card account transactions. Rule types used The application data objects are implemented via Dataset rules. A Dataset represents a data object and can be logical, physical or both. The dataset and its properties are defined by the class it applies to. The Dataset can also define the physical location of data such as relational database table, a NoSQL object, or even the application clipboard. Datasets are highly flexible Tech Note 4

5 and are accessed by the application at run-time to retrieve the data needed for AI and marketing purposes. To learn more about Datasets, see About Data Set rules. Datasets can be loaded and retrieved through Data Flow rules. Data Flows orchestrate the movement of data from source to destination within Pega. Data Flows also have the ability to transform your data. This is the primary mechanism used to flatten data in Pega Marketing for Financial Services. To learn more about Data Flows, see About Data Flow rules. The Data Flows rely on Report Definition rules such as LoadCustomerSummary to query data from your systems. Use report definitions to identify the columns and filters in your data model to pull against. Customers are expected to create their own report definitions for their data models. For more information about creating a report definition rule, see Report Definition rule form. Loading your data to the customer analytics data store Pega ships with data flows that demonstrate how to import data from a relational database record into the Decision. These data flows act like an ETL process. They pull from a number of defined data sources and save all records into a data set that has been defined, when the data set rule was created, as a decision data store. Customers should start by identifying the data objects your use cases will require. At a minimum, the Customer data object must be loaded. Extend the Data Flow listed below that corresponds to the data object required for your decisioning. Create your own where necessary. Data Flow Data Object Usage DF_GetCustomerData Customer Copies and saves customer information into the CustomerDecision DF_GetCreditCardAccountsData Credit Card Accounts Copies and saves credit card account information into the CreditCardAccountsDecision DF_GetDepositAccountsData Deposit Accounts Copies and saves deposit account information into the DepositAccountsDecision Data Store DF_GetInvestmentAccountsData Investment Accounts Copies and saves investment account information into the InvestmentAccountsDecision DF_GetLoanAccountsData Loan Accounts Copies and saves loan account information into the LoanAccountsDecision Data Store Tech Note 5

6 In order to pull the records from the source tables, class definition rules need to be created and mapped to each relevant database table. A report definition is then needed to pull the records. For example, in DF_GetCustomerData, the Pega Foundation for Financial Services database tables FSF_SAMPLE_CUST, FSF_SAMPLE_CUST_ADDRESS. and FSF_SAMPLE_CUST_COMMS are mapped to via the respective class definitions and pulled from through the referenced report definitions. The records of these three tables are merged in the compose shape based on a common key. Customers are expected to create a class for each of their source database table and define properties that map to the columns in those tables relevant to their intended decisioning logic. Create a report definition to pull those properties and then create or update the existing data flows to do the actual storing. Note that different data set rules will create different tables in the Decision. Pega handles the structure of these tables based on the definition of the class defined on the data set rule. A database administrator is not needed to define a table structure when using the Decision. Customers can use an agent to run these data flows to load the values into the Decision Data Store. This way, it can be scheduled as a reoccurring process. Pega Marketing for Financial Services provides the agent PegaMarketingFS that runs the activity StoreCustomerRecordsinDDS as a reference. This functionality is provided disabled. To enable, open the agent rule PegaMarketingFS and check the checkbox Enable, and then restart your system. Check that the agent schedule rule for PegaMarketingFS has been updated to include an enabled StoreCustomerRecordsinDDS. Marketing with Decision records After the decisioning data has been successfully stored in the Decision, it can be used for predictive and adaptive analytics as well as for decisioning logic. Two data flows pull these records from the Decision and populate them onto the clipboard. They are CustomerData and SingleCustomerData. CustomerData takes all you customers stored in the CustomerDecision and merges it with all the other pertinent records stored in all other Decision tables that have been created. In Pega Marketing for Financial Services, this is all of the accounts associated to the customer. It then takes that bulk set of data and pushes it into a clipboard through the use of an abstract shape. This data flow is used when marketing for against a large subset of customers, for example for campaigns and for field marketing. SingleCustomerData is designed to pull from the Decision for a single customer record. It does this by calling the CustomerData finding the intersection between the customer defined on your customer class at run time and the set of data generated by the CustomerData data flow. This occurs in the merge shape in the data flow. This data flow is leveraged whenever information needs to be load for a single customer or decisioning is done on a single customer. Examples of this is for pulling customer information in the Marketing Profile and providing offers for a specific customer through real time containers. Tech Note 6

7 When creating an implementation marketing solution, save as both CustomerData and SingleCustomer data to the implementation customer class and update the shapes to refer to the new data flows and data sets in the implementation customer class. Do not change or alter the MasterSegmentTable data set. This is used as part of segmentation. Unfortunately segmentation does not support the Decision. Implementing Segmentation Segmentation is dependent on Associated Customer Data defined in the Application Settings of your Pega Marketing portal. The Associated Customer Data has to be stored in relational databases. It is recommend to use the source relational database tables that you mapped to for your data flow pulls as the associated databases. This chapter provides step by step instructions on integrating your associated customer tables. Repeat the below steps for each associated table. 1. Create a new class. 2. Ensure that your tables contains a foreign key to match and join the contents of this table with your customer data. This typically is represented by CustomerID. 3. Create a Database Table rule that maps your class to the associated database table. The database operator used on this database table rule only needs to have read access. 4. Define properties in this class. While these properties do not have to have the same name as the database columns from which they are sourced, they should represent the properties on the tables from which you plan to use for marketing decisions. 5. Update the external mappings tab of your class so that the properties in the class map to the columns in your database table. While many databases are not case-sensitive, some such as MS SQL are and so it is safer to be case-sensitive. 6. Create a page list property in your customer class that applies to your newly created class in step 1. This will be used as the Entity Name when defining your Associated Customer Data. Entity Names cannot be inherited. They must be on your top most customer class. 7. Create an Association rule in your customer class with the same name as the pagelist property created in Step 6. The class association defined on this association rule should be the class created in step 1. The class join prefix should be the same as the property name created in step 6 and the class name for class join prefix should your customer class. Define the foreign keys mapping (join criteria) by click Edit conditions. Add in the pages and class tab, the pagelist property defined in Step 6. Save your association rule. 8. Add this class as an Associated Customer Data in the Manage Data Relationships tab of the Application settings landing page on the Pega Marketing portal using the two rules that you created in step 6 and Optional. For customers who are also using these class to source their Decision, create a report definition in this new class to pull from all the columns and use this report definition in a data flow to pull and store the data into the Decision. Tech Note 7

8 Performance test results The following are performance test results conducted on loading data into the DDS via a simple data flow based off of DF_GetCustomerData. Each test was run 3 times and an average of the resulting times were taken. The environment details are as follows: Test 1 Load 100 million customer records with 45 columns of varchar(32) on 1 database table in PostGreSQL with no partitioning and 3 nodes and 1 thread. Partition key defined as a random number between 1 and 100. Result 5 h 3 min Test 2 Load 100 million customer records with 45 columns of varchar(32) on one database table in PostGreSQL with partitioning and 3 nodes and 1 thread. Partition key defined as a random number between 1 and 100. Result 1 hr 52 min Test 3 Load 100 million customer records with 45 columns of varchar(32) on one database table in PostGreSQL with partitioning and 3 nodes and 5 threads. Partition key defined as a random number between 1 and 100. Result 27 min 26 sec Test 4 Load 100 million customer records with 45 columns of varchar(32) on one database table in PostGreSQL with partitioning and 3 nodes and 10 threads. Partition key defined as a random number between 1 and 100. Result 21 min 31 sec Test 5 Load 100 million customer records with 45 columns of varchar(32) on one database table in PostGreSQL with partitioning and 3 nodes and 15 threads. Partition key defined as a random number between 1 and 100. Result 20 min 32 sec Test 6 Repeated run REST services to invoke DF_GetCustomerData through real-time container with 100 million customer records, 200 million account records with 45 columns of varchar(32) on two database table in PostGreSQL with partitioning on both tables and 3 nodes and 10 threads. Partition key defined as a random number between 1 and 100. Result 99% of REST call response under 100 ms Tech Note 8

9 Recommendations to optimize performance 1. Define a partition key. Make sure that this is numerical. Customers may need to perform further tests to identify the number of partitions that is optimal for their data records. 2. Increase thread count to improve performance. It is not recommended to increase the thread count past 10 as it does not increase performance significantly. 3. Increase the node count to improve performance. Multiple nodes are only useful after setting up partitioning. The performance tests were run under 3 nodes but this can be increased further. 3 is the recommended default. Customers may need to perform further tests to identify the number of partitions that is optimal for their data records. 4. Limit the number of database tables that you pull from. Similarly limit the number of fields that you pull so that your only pull records that you need for decisioning. Data model details Customer Data Object: Applies To Class: Relational Dataset: NoSQL Dataset: Customer PegaMarketingFS-Data-Customer Customer CustomerDecision Logical Data Model Data Source Property Type Description Table Column CustomerID Required. Primary Key for the Dataset [PegaDATA].FSF_SAMPLE_CUST C_CIFNBR CIFNBR Not used in this context. Use CustomerID instead. n/a n/a FirstName Customer first name [PegaDATA].FSF_SAMPLE_CUST C_FIRSTNAME LastName Customer last name [PegaDATA].FSF_SAMPLE_CUST C_LASTNAME pyfullname Customer full name [PegaDATA].FSF_SAMPLE_CUST C_FULLNAME Customer annual AnnualIncome Decimal income [PegaDATA].FSF_SAMPLE_CUST C_ANNUALINCOME CreditScore Customer credit score [PegaDATA].FSF_SAMPLE_CUST C_CREDITSCORE Gender Customer gender [PegaDATA].FSF_SAMPLE_CUST C_GENDER RelationshipStartDate DateTime Customer relationship start date with financial institution. Can take just date instead of full datetime. [PegaDATA].FSF_SAMPLE_CUST C_RELATIONSHIPSTARTDATE Tech Note 9

10 MaritalStatus OrganizationName BusinessSegment Territory Customer marital status [PegaDATA].FSF_SAMPLE_CUST C_MARITALSTATUS Organization name if customer is not an individual but an organization [PegaDATA].FSF_SAMPLE_CUST C_FULLNAME Organization business segment [PegaDATA].FSF_SAMPLE_CUST C_BUSINESSSEGMENT Organization territory (market region) [PegaDATA].FSF_SAMPLE_CUST C_TERRITORYID Industry Organization industry [PegaDATA].FSF_SAMPLE_CUST C_INDUSTRYCODE Required for outbound marketing. Customer [PegaDATA].FSF_SAMPLE_CUST_COMMS CS_CONTACTSTRING PrimaryFax fax [PegaDATA].FSF_SAMPLE_CUST_COMMS CS_CONTACTSTRING PrimaryHomePhone home phone [PegaDATA].FSF_SAMPLE_CUST_COMMS CS_CONTACTSTRING PrimaryMobilePhone mobile phone [PegaDATA].FSF_SAMPLE_CUST_COMMS CS_CONTACTSTRING PrimaryWorkPhone Required for outbound marketing. Customer primary work phone [PegaDATA].FSF_SAMPLE_CUST_COMMS CS_CONTACTSTRING Facebook Customer Facebook handle [PegaDATA].FSF_SAMPLE_CUST_COMMS CS_CONTACTSTRING Twitter Customer Twitter handle [PegaDATA].FSF_SAMPLE_CUST_COMMS CS_CONTACTSTRING PrimaryAddressLine1 address line 1 [PegaDATA].FSF_SAMPLE_CUST_ADDRESS CA_ADDLINE1 PrimaryAddressLine2 address line 2 [PegaDATA].FSF_SAMPLE_CUST_ADDRESS CA_ADDLINE2 City address city [PegaDATA].FSF_SAMPLE_CUST_ADDRESS CA_CITY State address state [PegaDATA].FSF_SAMPLE_CUST_ADDRESS CA_STATE Country address country [PegaDATA].FSF_SAMPLE_CUST_ADDRESS CA_COUNTRY PostalCode address postal code [PegaDATA].FSF_SAMPLE_CUST_ADDRESS CA_ZIPCODE TotalAssets Decimal Customer total assets [PegaDATA].FSF_SAMPLE_CUST C_TOTALASSETS TotalLiabilities Decimal Customer total liabilities [PegaDATA].FSF_SAMPLE_CUST C_TOTALLIABILITIES RiskCode Customer risk code (Representation of risk score) [PegaDATA].FSF_SAMPLE_CUST C_RISKCODE Tech Note 10

11 TaxIDNbr ResidentialStatus BalanceTransaction NetWealth LastReviewedDate Age Decimal Decimal DateTime Customer tax identification number [PegaDATA].FSF_SAMPLE_CUST C_TAXIDNBR Customer residential status for primary home [PegaDATA].FSF_SAMPLE_CUST_ADDRESS CA_RESIDENTIALSTATUS Customer balance transactions. This is a value used for calculating customer CLV in the simple model. Do not populate this column. NA Calculated value Customer net wealth. This value is calculated as part of CLV calculations. (Total assets - total liabilities) NA Calculated value Customer last reviewed date with financial advisor for investment accounts [PegaDATA].FSF_SAMPLE_CUST C_NEXTREVIEWDATE Customer age. This value is calculated based on customer date of birth. [PegaDATA].FSF_SAMPLE_CUST c_birthdate Credit card accounts Data Object: Applies To Class: Relational Dataset: NoSQL Dataset: Credit Card Accounts PegaFS-Int-FSF_SAMPLE_CCACCT CreditCardAccounts CreditCardAccountsDecision Deposit accounts Data Object: Applies To Class: Relational Dataset: NoSQL Dataset: Deposit Accounts PegaFS-Int-FSF_SAMPLE_ACCT DepositAccounts DepositAccountsDecision Tech Note 11

12 Logical Data Model Data Source Property Type Description Table Column CustomerID Primary key of data set. Customer Identifier. FSF_SAMPLE_ACCT A_CIFNBR AccountNumber Account number FSF_SAMPLE_ACCT A_ACCTNBR AccountType Account type FSF_SAMPLE_ACCT A_ACCOUNTTYPE AccountDescription Account product name FSF_SAMPLE_ACCT A_ACCTDESC Active Whether account is active FSF_SAMPLE_ACCT A_ACTIVE Status Account status FSF_SAMPLE_ACCT A_STATUS OpenDate Date Account open date FSF_SAMPLE_ACCT A_OPENDATE BehaviorScore Decimal Behavior score of based on account usage FSF_SAMPLE_ACCT A_BEHAVIORSCORE AvgMonthlyBalance Decimal Account average monthly balance FSF_SAMPLE_ACCT A_AVGMONTHLYBALANCE AvgYearlyBalance Decimal Account average balance this year FSF_SAMPLE_ACCT A_YEARTODATEAVERAGEBALANCE Appl Numerical representation of the type of account FSF_SAMPLE_ACCT A_APPL AccountBalance Decimal Account balance FSF_SAMPLE_ACCT A_YTDDISPUTES TotalDisputes MarketSegmentID Number of times transactions have been disputed on this account since January 1st FSF_SAMPLE_ACCT A_ACCOUNTBALANCE Numerical representation of the market segment. (1 = Retail, 2 = Commercial, 3 = Private wealth, 4 = Small medium business) FSF_SAMPLE_ACCT A_MARKETSEGMENTID Investment accounts Data Object: Applies To Class: Relational Dataset: NoSQL Dataset: Investment Accounts PegaFS-Int-FSF_SAMPLE_CMACCT InvestmentAccounts InvestmentAccountsDecision Logical Data Model Data Source Property Type Description Table Column CustomerID Primary key of data set. Customer Identifier. FSF_SAMPLE_CMACCT CMA_CIFNBR AccountNumber Account number FSF_SAMPLE_CMACCT CMA_ACCTNBR Tech Note 12

13 AccountType Account type (E.g. Brokerage, retirement, college funds) FSF_SAMPLE_CMACCT CMA_TYPE AccountSubType Account sub-type (E.g. Traditional individual retirement account, pension, 529 plan, ROTH IRA) FSF_SAMPLE_CMACCT CMA_SUBTYPE Status Account status FSF_SAMPLE_CMACCT CMA_STATUS OpenDate Date Account open date FSF_SAMPLE_CMACCT CMA_OPENDATE AvgMonthlyBalance Decimal Account average monthly value FSF_SAMPLE_CMACCT CMA_AVGMONTHLYVAL Appl Numerical representation of the type of account FSF_SAMPLE_CMACCT CMA_APPL OwnershipType Ownership type of customer on account (E.g. Joint owner with right of survivorship, individual, community property) FSF_SAMPLE_CMACCT CMA_OWNERSHIPTYPE CurrentValue Decimal Current value of account FSF_SAMPLE_CMACCT CMA_CURRENTVALUE MarketSegmentID Numerical representation of the market segment. (1 = Retail, 2 = Commercial, 3 = Private wealth, 4 = Small medium business) FSF_SAMPLE_CMACCT CMA_MARKETSEGMENTID Loan accounts Data Object: Applies To Class: Relational Dataset: NoSQL Dataset: Loan Accounts PegaFS-Int-FSF_SAMPLE_LOANACCT LoanAccounts LoanAccountsDecision Logical Data Model Data Source Property Type Description Table Column CustomerID Primary key of data set. Customer Identifier. FSF_SAMPLE_LOANACCT LA_CIFNBR AccountNumber Account number FSF_SAMPLE_LOANACCT LA_ACCTNBR Status Account status FSF_SAMPLE_LOANACCT LA_STATUS InArrears Boolean Whether account is in arrears FSF_SAMPLE_LOANACCT LA_INCOLLECTIONS Appl Numerical representation of the type of account FSF_SAMPLE_LOANACCT LA_APPL DelinquencyAmount Decimal Account delinquency amount FSF_SAMPLE_LOANACCT LA_DELINQUINCYAMOUNT MaturityDate Date Date loan matures FSF_SAMPLE_LOANACCT LA_MATURITYDATE LoanToValue Decimal Loan to value ratio FSF_SAMPLE_LOANACCT LA_LOANTOVALUE UnpaidPrincipal Decimal Remaining principal FSF_SAMPLE_LOANACCT LA_UNPAIDPRINCIPAL Tech Note 13

14 RiskScore Decimal Risk score on loan FSF_SAMPLE_LOANACCT LA_RISKSCORE Rate Decimal Rate percent FSF_SAMPLE_LOANACCT LA_RATE RateType Rate type (E.g. HELOC, 3/1 ARM, FHA, conventional) FSF_SAMPLE_LOANACCT LA_RATETYPE YTDBrokenPromises Number of times customer has broken promise on a scheduled late payment or payment plan since January 1st FSF_SAMPLE_LOANACCT LA_YTDBROKENPROMISES YTDInArrears Number of times account has been in arrears since January 1st FSF_SAMPLE_LOANACCT LA_YTDINARREARS MarketSegmentID Numerical representation of the market segment. (1 = Retail, 2 = Commercial, 3 = Private wealth, 4 = Small medium business) FSF_SAMPLE_LOANACCT LA_MARKETSEGMENTID CyclesPastDue Decimal Credit card payment cycles past due FSF_SAMPLE_LOANACCT LA_CYCLESPASTDUE DaysDeliquent Total number of days payment is past due FSF_SAMPLE_LOANACCT LA_DAYSDELINQUENT NoOfSuccessfulPayments Total no of successful payments FSF_SAMPLE_LOANACCT LA_NOOFSUCCESSFULPAYMENTS NoOfTimesinCollections Total number of times account has been in collections FSF_SAMPLE_LOANACCT LA_NOOFTIMESINCOLLECTIONS Tech Note 14

15 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks or service marks are property of their respective holders. For information about the third-party software that is delivered with the product, refer to the third-party license file on your installation media that is specific to your release. Notices This publication describes and/or represents products and services of Pegasystems Inc. It may contain trade secrets and proprietary information that are protected by various federal, state, and international laws, and distributed under licenses restricting their use, copying, modification, distribution, or transmittal in any form without prior written authorization of Pegasystems Inc. This publication is current as of the date of publication only. Changes to the publication may be made from time to time at the discretion of Pegasystems Inc. This publication remains the property of Pegasystems Inc. and must be returned to it upon request. This publication does not imply any commitment to offer or deliver the products or services described herein. This publication may include references to Pegasystems Inc. product features that have not been licensed by you or your company. If you have questions about whether a particular capability is included in your installation, please consult your Pegasystems Inc. services consultant. Although Pegasystems Inc. strives for accuracy in its publications, any publication may contain inaccuracies or typographical errors, as well as technical inaccuracies. Pegasystems Inc. shall not be liable for technical or editorial errors or omissions contained herein. Pegasystems Inc. may make improvements and/or changes to the publication at any time without notice. Any references in this publication to non-pegasystems websites are provided for convenience only and do not serve as an endorsement of these websites. The materials at these websites are not part of the material for Pegasystems products, and use of those websites is at your own risk. Information concerning non-pegasystems products was obtained from the suppliers of those products, their publications, or other publicly available sources. Address questions about non-pegasystems products to the suppliers of those products. This publication may contain examples used in daily business operations that include the names of people, companies, products, and other third-party publications. Such examples are fictitious and any similarity to the names or other data used by an actual business enterprise or individual is coincidental. This information is the property of: Pegasystems Inc. One Rogers Street Cambridge, MA USA Phone: (617) Fax: (617) Pega Marketing for Financial Services Document: Application Data Model Software Version: 7.31 Updated: October 2017 Tech Note 15

Application Data Model

Application Data Model Application Data Model Pega Marketing for Financial Services 7.31 October 2017 Introduction This document provides an overview of the Pega Marketing for Financial Services customer data model. It is intended

More information

Application Data Model

Application Data Model Application Data Model Pega Marketing for Financial Services 7.4 April 2018 Introduction This document provides an overview of the Pega Marketing for Financial Services customer data model. It is intended

More information

Capturing Interaction History

Capturing Interaction History Capturing Interaction History Pega Marketing for Financial Services 7.31 November 2017 Introduction This document contains information about how Pega Marketing for Financial Services 7.31 captures Interaction

More information

Pega Underwriting for Insurance

Pega Underwriting for Insurance OPERATIONS Pega Underwriting for Insurance Implementation Planning Workbook 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks,

More information

VCR REST Connectivity

VCR REST Connectivity VCR REST Connectivity Pega Smart Dispute for Issuers 7.21 December 2017 Introduction This document explains how Pega Smart Dispute for Issuers connects to VCR using REST connectors. VCR supports POST method

More information

Pega Digital Software Delivery

Pega Digital Software Delivery Pega Digital Software Delivery USER GUIDE 1.00 [Type here] 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved.

More information

Pega Field Marketing USER GUIDE 7.4

Pega Field Marketing USER GUIDE 7.4 Pega Field Marketing USER GUIDE 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

VCR Batch Queue Processing

VCR Batch Queue Processing VCR Batch Queue Processing Smart Dispute for Issuers 7.21 February 2017 Introduction Visa claims resolution (VCR) provides various queues for members to download and process cases or transactions. The

More information

Agile Studio WORKING WITH DEVELOPMENT SYSTEMS ON PREVIOUS PEGA PLATFORM RELEASES 7.3

Agile Studio WORKING WITH DEVELOPMENT SYSTEMS ON PREVIOUS PEGA PLATFORM RELEASES 7.3 Agile Studio WORKING WITH DEVELOPMENT SYSTEMS ON PREVIOUS PEGA PLATFORM RELEASES 7.3 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered

More information

X12 Message Processing

X12 Message Processing X12 Message Processing Pega Foundation for Healthcare 7.31 July 2017 Overview The Accredited Standards Committee (ASC) X12 message is used to transfer data across and between industries. Pega Foundation

More information

Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare

Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare INSTALLATION GUIDE Pega Customer Relationship Management for Healthcare 7.31 2017 Pegasystems Inc., Cambridge, MA All rights

More information

Managing the Burn Down Agent

Managing the Burn Down Agent Managing the Burn Down Agent Agile Studio 7.3.1 December 2017 Introduction Agile Studio 7.3.1 has several burn down charts that teams and managers can use to view the overall progress of a sprint, team,

More information

Pega Agile Studio. Upgrade Guide 7.4

Pega Agile Studio. Upgrade Guide 7.4 Pega Agile Studio Upgrade Guide 7.4 2018 Pegasystems Inc., Cambridge, MA. All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare

Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare Pega Customer Service for Healthcare and Pega Sales Automation for Healthcare UPGRADE GUIDE Pega Customer Relationship Management for Healthcare 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved.

More information

Pega Foundation for Financial Services

Pega Foundation for Financial Services Pega Foundation for Financial Services ACCOUNTING GUIDE 7.32 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved.

More information

Pega Foundation for Healthcare

Pega Foundation for Healthcare Pega Foundation for Healthcare COMMON CODES SOLUTION BUSINESS CASE USE CASE GUIDE 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered

More information

Pega Foundation for Healthcare

Pega Foundation for Healthcare Pega Foundation for Healthcare COMMON CODES SOLUTION BUSINESS CASE USE CASE GUIDE 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered

More information

MARKETING. Pega Marketing. Installation Guide 7.4

MARKETING. Pega Marketing. Installation Guide 7.4 MARKETING Pega Marketing Installation Guide 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All

More information

Pega Agile Studio USER GUIDE 7.4

Pega Agile Studio USER GUIDE 7.4 Pega Agile Studio USER GUIDE 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

Pega Co-Browse. Installation Guide 7.4

Pega Co-Browse. Installation Guide 7.4 Pega Co-Browse Installation Guide 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

Technical Note. Using the Net Promoter Framework 7.1

Technical Note. Using the Net Promoter Framework 7.1 Technical Note Using the Net Promoter Framework 7.1 Copyright 2014 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain

More information

Integrating Agile Studio with Other Applications

Integrating Agile Studio with Other Applications Integrating Agile Studio with Other Applications Agile Studio 7.3.1 December 2017 Introduction Agile Studio is integrated with Pega Platform 7.3.1 to allow teams to change their application s records in

More information

Pega Chat. Installation Guide 7.4

Pega Chat. Installation Guide 7.4 Pega Chat Installation Guide 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

Pega Underwriting for Insurance

Pega Underwriting for Insurance PEGA OPERATIONS Pega Underwriting for Insurance IMPLEMENTATION GUIDE 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks,

More information

Agile Studio USER GUIDE 7.3

Agile Studio USER GUIDE 7.3 Agile Studio USER GUIDE 7.3 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks or

More information

User Guide. PegaSurvey 7.2.1

User Guide. PegaSurvey 7.2.1 User Guide PegaSurvey 7.2.1 Copyright Copyright 2016 Pegasystems Inc. All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. Other brand or product

More information

Financial Accounting for Financial Services Framework. Version 2.3. Installation Guide

Financial Accounting for Financial Services Framework. Version 2.3. Installation Guide Financial Accounting for Financial Services Framework Version 2.3 Installation Guide Copyright 2009 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of

More information

Certified Senior System Architect

Certified Senior System Architect White Paper Certified Senior System Architect EXAM BLUEPRINT Copyright 2017 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may

More information

Healthcare FHIR API TECHNICAL SPECIFICATION 7.4

Healthcare FHIR API TECHNICAL SPECIFICATION 7.4 Healthcare FHIR API TECHNICAL SPECIFICATION 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All

More information

PEGA MARKETING. Pega Marketing IMPLEMENTATION GUIDE 7.31

PEGA MARKETING. Pega Marketing IMPLEMENTATION GUIDE 7.31 PEGA MARKETING Pega Marketing IMPLEMENTATION GUIDE 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved.

More information

Decision Strategy Manager

Decision Strategy Manager Decision Strategy Manager DMSample - Retention Predictive Model Version 7.1.8 2015 by Pegasystems Inc. All rights reserved This document describes products and services of Pegasystems Inc. It may contain

More information

MARKETING. Pega Marketing. Upgrade Guide 7.4

MARKETING. Pega Marketing. Upgrade Guide 7.4 MARKETING Pega Marketing Upgrade Guide 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other

More information

Technical Note. Customer Process Manager. 7.1 Release 2. CPM Next Best Action Adapter

Technical Note. Customer Process Manager. 7.1 Release 2. CPM Next Best Action Adapter Technical Note Customer Process Manager 7.1 Release 2 CPM Next Best Action Adapter Copyright 2014 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems

More information

Project Management Framework

Project Management Framework Project Management Framework 7.1.2 UPGRADE GUIDE Copyright 2015 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade

More information

Decision Manager Help. Version 7.1.7

Decision Manager Help. Version 7.1.7 Version 7.1.7 This document describes products and services of Pegasystems Inc. It may contain trade secrets and proprietary information. The document and product are protected by copyright and distributed

More information

Certified Pega Customer Service Business Architect

Certified Pega Customer Service Business Architect White Paper Certified Pega Customer Service Business Architect EXAM BLUEPRINT Copyright 2015 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems

More information

Product Designer for Financial Services

Product Designer for Financial Services Product Designer for Financial Services IMPLEMENTATION GUIDE 7.22 Copyright 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks,

More information

Agile Studio IMPLEMENTATION GUIDE 7.3.1

Agile Studio IMPLEMENTATION GUIDE 7.3.1 Agile Studio IMPLEMENTATION GUIDE 7.3.1 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

EXAM BLUEPRINT Certified CPM Architect

EXAM BLUEPRINT Certified CPM Architect EXAM BLUEPRINT Certified CPM Architect White Paper Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade

More information

Distributed Transactions and PegaRULES Process Commander. PegaRULES Process Commander Versions 5.1 and 5.2

Distributed Transactions and PegaRULES Process Commander. PegaRULES Process Commander Versions 5.1 and 5.2 Distributed Transactions and PegaRULES Process Commander PegaRULES Process Commander Versions 5.1 and 5.2 Copyright 2007 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products

More information

Pega Product Composer for Healthcare

Pega Product Composer for Healthcare Pega Product Composer for Healthcare IMPLEMENTATION GUIDE 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights

More information

EXAM BLUEPRINT PRPC Certified Pega Business Architect

EXAM BLUEPRINT PRPC Certified Pega Business Architect EXAM BLUEPRINT PRPC Certified Pega Business Architect White Paper Copyright 2014 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It

More information

System Architect Essentials I. EXERCISE GUIDE (v. 7.1)

System Architect Essentials I. EXERCISE GUIDE (v. 7.1) System Architect Essentials I EXERCISE GUIDE (v. 7.1) Copyright 2015 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain

More information

Project Management Framework

Project Management Framework Project Management Framework Release Notes Version 7.1.1 Framework Overview The Project Management Framework (PMF) is a powerful Project Management application designed for the management of Scrum projects.

More information

7.21 IMPLEMENTATION GUIDE

7.21 IMPLEMENTATION GUIDE Pega Customer Service 7.21 IMPLEMENTATION GUIDE Copyright 2016 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved.

More information

Managing the Burn Down Agent

Managing the Burn Down Agent Managing the Burn Down Agent Project Management Framework 7.1.2 May 2015 Introduction The Project Management Framework has several burn down charts that can be used by teams and managers to view the overall

More information

EXAM BLUEPRINT PRPC Certified Reporting Specialist v6.2

EXAM BLUEPRINT PRPC Certified Reporting Specialist v6.2 White Paper EXAM BLUEPRINT PRPC Certified Reporting Specialist v6.2 Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc.

More information

Ten Innovative Financial Services Applications Powered by Data Virtualization

Ten Innovative Financial Services Applications Powered by Data Virtualization Ten Innovative Financial Services Applications Powered by Data Virtualization DATA IS THE NEW ALPHA In an industry driven to deliver alpha, where might financial services firms find opportunities when

More information

Pega Knowledge. User Guide 7.4

Pega Knowledge. User Guide 7.4 Pega Knowledge User Guide 7.4 2018 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks or

More information

Pega Call CONFIGURATION AND OPERATIONS GUIDE. CTI Link Server with Genesys CTI 7.31

Pega Call CONFIGURATION AND OPERATIONS GUIDE. CTI Link Server with Genesys CTI 7.31 Pega Call CONFIGURATION AND OPERATIONS GUIDE CTI Link Server with Genesys CTI 7.31 Copyright 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered

More information

PegaRULES Process Commander. Certified Senior System Architect. Exam Blueprint

PegaRULES Process Commander. Certified Senior System Architect. Exam Blueprint PegaRULES Process Commander Certified Senior System Architect Exam Blueprint Copyright 2009 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems

More information

EXAM BLUEPRINT PRPC Certified Senior System Architect v 6.2

EXAM BLUEPRINT PRPC Certified Senior System Architect v 6.2 White Paper EXAM BLUEPRINT PRPC Certified Senior System Architect v 6.2 Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems

More information

Healthcare Common Codes Solution

Healthcare Common Codes Solution Healthcare Common Codes Solution Version 3.2 SP1 Business Use Case Guide Copyright 2013 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems

More information

Working with PDF Forms and Documents. PegaRULES Process Commander 5.1

Working with PDF Forms and Documents. PegaRULES Process Commander 5.1 Working with PDF Forms and Documents PegaRULES Process Commander 5.1 Copyright 2006 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc.

More information

Technical Note. PegaCHAT 6.2 SP3. Installing and Configuring OpenFire

Technical Note. PegaCHAT 6.2 SP3. Installing and Configuring OpenFire Technical Note PegaCHAT 6.2 SP3 Installing and Configuring OpenFire Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc.

More information

PRPC Personal Edition Installation Guide 6.3 SP1

PRPC Personal Edition Installation Guide 6.3 SP1 PRPC Personal Edition Installation Guide 6.3 SP1 Copyright 2012 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade

More information

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS RESOLV EDI CONTROL User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS Copyright 2011-2016 by Achieve IT Solutions These materials are subject to change without notice. These materials are

More information

PegaCALL. Overview. About this Release. Release Notes for Version 6.3 August 2012

PegaCALL. Overview. About this Release. Release Notes for Version 6.3 August 2012 PegaCALL Release Notes for Version 6.3 August 2012 Overview PegaCALL provides computer-telephony integration (CTI) capabilities for applications built on PRPC, including Pega Customer Process Manager (CPM).

More information

IBM Rational Synergy DCM-GUI

IBM Rational Synergy DCM-GUI IBM Rational Synergy DCM-GUI Release 7.2.1.1 IBM Rational Synergy - 1 - This edition applies to IBM Rational Synergy version 7.2.1.1, and to all subsequent releases and modifications until otherwise indicated

More information

Massive Scalability With InterSystems IRIS Data Platform

Massive Scalability With InterSystems IRIS Data Platform Massive Scalability With InterSystems IRIS Data Platform Introduction Faced with the enormous and ever-growing amounts of data being generated in the world today, software architects need to pay special

More information

Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data

Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data Oracle Warehouse Builder 10g Release 2 Integrating Packaged Applications Data June 2006 Note: This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality,

More information

DATA INTEGRATION PLATFORM CLOUD. Experience Powerful Data Integration in the Cloud

DATA INTEGRATION PLATFORM CLOUD. Experience Powerful Data Integration in the Cloud DATA INTEGRATION PLATFORM CLOUD Experience Powerful Integration in the Want a unified, powerful, data-driven solution for all your data integration needs? Oracle Integration simplifies your data integration

More information

Capturing Interaction History

Capturing Interaction History Capturing Interaction History Pega Marketing for Financial Services 7.4 April 2018 Introduction This document contains information about how Pega Marketing for Financial Services 7.4 captures Interaction

More information

CANADA DEPOSIT INSURANCE CORPORATION Data and System Requirements Test Criteria. DSR Version 2.0

CANADA DEPOSIT INSURANCE CORPORATION Data and System Requirements Test Criteria. DSR Version 2.0 CANADA DEPOSIT INSURANCE CORPORATION Data and System Requirements Test Criteria DSR Version.0 Table of Contents 1 Introduction... 4 Specific Criteria... 4.1 Data Validation... 4. Table Validation... 6.3

More information

IBM. IBM i2 Enterprise Insight Analysis User Guide. Version 2 Release 1

IBM. IBM i2 Enterprise Insight Analysis User Guide. Version 2 Release 1 IBM IBM i2 Enterprise Insight Analysis User Guide Version 2 Release 1 Note Before using this information and the product it supports, read the information in Notices on page 19. This edition applies to

More information

Working with the Java Pages Feature. PegaRULES ProcessCommander Versions 5.1 and 5.2

Working with the Java Pages Feature. PegaRULES ProcessCommander Versions 5.1 and 5.2 Working with the Java Pages Feature PegaRULES ProcessCommander Versions 5.1 and 5.2 Copyright 2006 Pegasystems Inc., Cambridge, MA All rights reserved. This document and the software describe products

More information

Pega Unified Marketing

Pega Unified Marketing Pega Unified Marketing User Guide Version 6.2 Copyright 2012 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade

More information

TIBCO Complex Event Processing Evaluation Guide

TIBCO Complex Event Processing Evaluation Guide TIBCO Complex Event Processing Evaluation Guide This document provides a guide to evaluating CEP technologies. http://www.tibco.com Global Headquarters 3303 Hillview Avenue Palo Alto, CA 94304 Tel: +1

More information

Business Intelligence Exchange (BIX)

Business Intelligence Exchange (BIX) Business Intelligence Exchange (BIX) Release Notes Version 2.3 And Version 2.3 SP1 February, 2012 Framework Overview The Business Intelligence Exchange (BIX) extracts information from a PRPC database into

More information

Spend Management Implementation Guide 7.11

Spend Management Implementation Guide 7.11 Spend Management Implementation Guide 7.11 Copyright 2014 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade secrets

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Checking Account Originations User Manual Release 17.2.0.0.0 Part No. E88573-01 July 2017 Checkings Account Originations User Manual July 2017 Oracle Financial Services

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Checking Account Originations User Manual Release 18.2.0.0.0 Part No. E97823-01 June 2018 Checkings Account Originations User Manual June 2018 Oracle Financial Services

More information

Lambda Architecture for Batch and Stream Processing. October 2018

Lambda Architecture for Batch and Stream Processing. October 2018 Lambda Architecture for Batch and Stream Processing October 2018 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Notices This document is provided for informational purposes only.

More information

EXAM BLUEPRINT PRPC Certified System Architect

EXAM BLUEPRINT PRPC Certified System Architect EXAM BLUEPRINT PRPC Certified System Architect White Paper Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain

More information

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters Microsoft Dynamics GP Release 10.0 Integration Guide For Microsoft Retail Management System Headquarters Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable

More information

Building a Data Strategy for a Digital World

Building a Data Strategy for a Digital World Building a Data Strategy for a Digital World Jason Hunter, CTO, APAC Data Challenge: Pushing the Limits of What's Possible The Art of the Possible Multiple Government Agencies Data Hub 100 s of Service

More information

Pega Call CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION

Pega Call CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION Pega Call CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION 7.1.3.4 Copyright 2016 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes

More information

THE JOURNEY OVERVIEW THREE PHASES TO A SUCCESSFUL MIGRATION ADOPTION ACCENTURE IS 80% IN THE CLOUD

THE JOURNEY OVERVIEW THREE PHASES TO A SUCCESSFUL MIGRATION ADOPTION ACCENTURE IS 80% IN THE CLOUD OVERVIEW Accenture is in the process of transforming itself into a digital-first enterprise. Today, Accenture is 80 percent in a public cloud. As the journey continues, Accenture shares its key learnings

More information

HA300 SAP HANA Modeling

HA300 SAP HANA Modeling HA300 SAP HANA Modeling. COURSE OUTLINE Course Version: 12 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

Contents. Raiser's Edge Integration. Overview of Raiser s Edge Integration 2

Contents. Raiser's Edge Integration. Overview of Raiser s Edge Integration 2 Raiser's Edge Integration Last Updated: 08/05/2016 for ResearchPoint 4.91 Contents Overview of Raiser s Edge Integration 2 Set Up Integration 2 ResearchPoint Search of Raiser's Edge Records 7 Raiser's

More information

Version 2 Release 1. IBM i2 Enterprise Insight Analysis Understanding the Deployment Patterns IBM BA

Version 2 Release 1. IBM i2 Enterprise Insight Analysis Understanding the Deployment Patterns IBM BA Version 2 Release 1 IBM i2 Enterprise Insight Analysis Understanding the Deployment Patterns IBM BA21-8475-00 Note Before using this information and the product it supports, read the information in Notices

More information

Determining dependencies in Cúram data

Determining dependencies in Cúram data IBM Cúram Social Program Management Determining dependencies in Cúram data In support of data archiving and purging requirements Document version 1.0 Paddy Fagan, Chief Architect, IBM Cúram Platform Group

More information

Supplier Portal. Supplier Profile Management Training Document V1.1

Supplier Portal. Supplier Profile Management Training Document V1.1 Supplier Portal Supplier Profile Management Training Document V1.1 Pre-requisite: When Supplier User account is successfully registered in Sherwin-Williams supplier portal, they will get below email notification

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience FCUBS Originations Auto Loan User Manual Release 18.1.0.0.0 Part No. E92727-01 January 2018 FCUBS Originations Auto Loan User Manual January 2018 Oracle Financial Services

More information

MDG100 Master Data Governance

MDG100 Master Data Governance MDG100 Master Data Governance. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Retail Accounts User Manual Release 17.2.0.0.0 Part No. E88573-01 July 2017 Retail Accounts User Manual July 2017 Oracle Financial Services Software Limited Oracle Park

More information

August Oracle - GoldenGate Statement of Direction

August Oracle - GoldenGate Statement of Direction August 2015 Oracle - GoldenGate Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle. Your

More information

EXERCISE SYSTEM GUIDE (v. 7.13)

EXERCISE SYSTEM GUIDE (v. 7.13) EXERCISE SYSTEM GUIDE (v. 7.13) Copyright 2016 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade secrets and proprietary

More information

AFN-ProjectsandGrantsGuide

AFN-ProjectsandGrantsGuide 011602 2002 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying, recording, storage

More information

EXAM BLUEPRINT PRPC Certified Methodology Black Belt

EXAM BLUEPRINT PRPC Certified Methodology Black Belt EXAM BLUEPRINT PRPC Certified Methodology Black Belt White Paper Copyright 2011 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It

More information

IBM Cloud Orchestrator. Content Pack for IBM Endpoint Manager for Software Distribution IBM

IBM Cloud Orchestrator. Content Pack for IBM Endpoint Manager for Software Distribution IBM IBM Cloud Orchestrator Content Pack for IBM Endpoint Manager for Software Distribution IBM IBM Cloud Orchestrator Content Pack for IBM Endpoint Manager for Software Distribution IBM Note Before using

More information

IBM Tivoli Monitoring for Databases. Release Notes. Version SC

IBM Tivoli Monitoring for Databases. Release Notes. Version SC IBM Tivoli Monitoring for Databases Release Notes Version 5.1.1 SC23-4851-00 IBM Tivoli Monitoring for Databases Release Notes Version 5.1.1 SC23-4851-00 Note Before using this information and the product

More information

PegaCALL CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION

PegaCALL CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION PegaCALL CONFIGURATION AND OPERATIONS GUIDE FOR CTI LINK WITH AVAYA AURA CONTACT CENTER (AACC) VERSION 7.1.3.3 Copyright 2015 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes

More information

Pega Knowledge PRODUCT OVERVIEW 7.31

Pega Knowledge PRODUCT OVERVIEW 7.31 Pega Knowledge PRODUCT OVERVIEW 7.31 2017 Pegasystems Inc., Cambridge, MA All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights reserved. All other trademarks

More information

Service Activation of AT&T NetBond

Service Activation of AT&T NetBond Service Activation of AT&T NetBond For SunGard Availability Services TM (AS) and AT&T Enterprise Recovery Services (ERS) Publication Date: 11/16/2015 Revision: 1.0 Legal Disclaimer Copyright AT&T Intellectual

More information

IBM WebSphere Sample Adapter for Enterprise Information System Simulator Deployment and Testing on WPS 7.0. Quick Start Scenarios

IBM WebSphere Sample Adapter for Enterprise Information System Simulator Deployment and Testing on WPS 7.0. Quick Start Scenarios IBM WebSphere Sample Adapter for Enterprise Information System Simulator 7.0.0.0 Deployment and Testing on WPS 7.0 Quick Start Scenarios Note: Before using this information and the product it supports,

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience FCUBS Originations Saving Account User Manual Release 18.3.0.0.0 Part No. F12056-01 December 2018 Preface FCUBS Originations Saving Account User Manual December 2018 Oracle

More information

CA Test Data Manager Key Scenarios

CA Test Data Manager Key Scenarios WHITE PAPER APRIL 2016 CA Test Data Manager Key Scenarios Generate and secure all the data needed for rigorous testing, and provision it to highly distributed teams on demand. Muhammad Arif Application

More information

Applying Analytics to IMS Data Helps Achieve Competitive Advantage

Applying Analytics to IMS Data Helps Achieve Competitive Advantage Front cover Applying Analytics to IMS Data Helps Achieve Competitive Advantage Kyle Charlet Deepak Kohli Point-of-View The challenge to performing analytics on enterprise data Highlights Business intelligence

More information

IBM BigInsights Security Implementation: Part 1 Introduction to Security Architecture

IBM BigInsights Security Implementation: Part 1 Introduction to Security Architecture IBM BigInsights Security Implementation: Part 1 Introduction to Security Architecture Big data analytics involves processing large amounts of data that cannot be handled by conventional systems. The IBM

More information