3 Data Pages created automatically after a local storage creation
Hi, all
I am required to create an application in Pega.
When I create local storage, three data pages are created automatically....
This time, I created a local storage called "Office", then "D_OfficeList", "D_Office", "D_OfficeSavable" were created automatically... The difference of them seems to be only editable mode..
Do you know why the three data pages are created automatically at the same time? and the difference of them is only editable mode? and in what situation I can use the three data page?
I would be quite helpful if you post your comment ...
Best regards,
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.
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 Structure List - To retrieve a list of the 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 don't allow to save the data.
3. Savable DataPages (newly introduced in 7.4) -- This page provides a saving 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.