Question
1
Replies
70
Views
Posted: January 15, 2020
Last activity: January 15, 2020
Closed
Difference of three Data Pages when creating local storage
Hi, all
I am a pega beginner.
I would like to know the difference of three Data pages.. When I create local storage from "Data type" by adding data type, three data pages will appear. One is "List xxx", another is "Savable xxx" and the other is "xxx". Please see attachment for your reference.
Could you explain about the difference and the feature of three pages..?
It would be quite helpful if you post your comment and answer!!
Below are 3 types of DataPages created on Data Explorer
1. DataPage of structure Page - To retrieve a single page instance of type (class) defined on it.
Eg:- D_pxOperatorDetails-- returns the single operator instance based on the parameter passed.
2. DataPage of Structue List - To retrieve a list of instance of the class defined on it.
Eg: D_pzListOperators -- returns the list of operator instances.
The above 2 types of data pages help to retrieve the data from the system of record, but doesn't allow to save the data.
3. Savable DataPages (newly introduced in 7.4) -- This page provides a save plan through a database source or an activity so that users can update data and write to a system of record.
Go through this post for more details on Savable DataPages.
Hope this helps!