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. Ob...