Common Pega methods used
Please register yourself in pega developer network to get detailed answers. This is only to give a quick view to help analysts know what technical people are talking about.
Obj-Open
method
Used to open an instance stored in
the PegaRULES DB and save it as a clipboard page.
Obj-Browse
method
Obj-Browse method is used to selects
list of records based on some condition. In other words,it is used to search instances of one class and copy the
entire instances to the clipboard as an array of embedded pages.
Only properties exposed as columns
can be used as selection criteria. However, values of properties that are not
exposed as columns, including embedded properties, can be returned.
Obj-Open-By-Handle
Method
Use the Obj-Open-By-Handle method
only if you can determine the unique handle that permanently identifies which
instance to open. We have have to pass the pzInskey as a instance handle, this method will open only
one record at time.
Obj-Save
Method
Use this method to request that the system save a clipboard page to the PegaRULES database or (if the page belongs to an external class) an external database.
Use this method to request that the system save a clipboard page to the PegaRULES database or (if the page belongs to an external class) an external database.
Use this method to delete a property or properties and its associated value from the step page or another specified page. This does not affect the property, its definition.
Property
Set method
The Property-Set method uses an array of parameters. Each row of the array contains a property name or reference (the destination), and a value (the source). Order is significant.
The Property-Set method uses an array of parameters. Each row of the array contains a property name or reference (the destination), and a value (the source). Order is significant.
Page-Remove method
Use this method to delete one or more pages from the clipboard. The contents of the database are not affected.
Use this method to delete one or more pages from the clipboard. The contents of the database are not affected.
Page-New method
Use the Page-New method to create a page on the clipboard. The new page may be a top-level page or an embedded page.
Use the Page-New method to create a page on the clipboard. The new page may be a top-level page or an embedded page.
RDB-Save
method
Use this method to save the contents of a clipboard page into a row of a relational database. The system saves the properties on the specified step page to the specified table in the database.
Use this method to save the contents of a clipboard page into a row of a relational database. The system saves the properties on the specified step page to the specified table in the database.
RDB-List
Use
this method to retrieve rows from an external relational database and place the
results as embedded pages in a specified step page of class Code-Pega-List.
Comments
Post a Comment