How to Get all Application List

Hi Is there any way to get all the application names

and Application related rules , AccesGroups and Operator ID’s which are existing in Dev Portal

@SwethaV83

You can create a report under the following classes

Rule-Application to get the application names

Data-Admin-Operator-ID to get the list of operators

Data-Admin-Operator-AccessGroup to get the list of Acces groups

Hi @SwethaV83,

To all application list we have ootb report definition

pxFetchListOfApplications in Rule-Application class

We have ootb data page D_OperatorAccessGroups to get all access group

Run a Report Definition on Data-Admin-Operator-ID to list operators assigned to applications.

If you want to get all the above information in a single Report Definition,

  • Create a new Report Definition on Data-Admin-Operator-ID

  • Join it with Data-Admin-Operator-AccessGroup and Rule-Application

  • Display Application Name, Access Group, and Operator ID.

Regards

Mohd Qizer Uddin

@SwethaV83 To get a list of all application names, related rules, Access Groups, and Operator IDs in the Pega Dev Portal, you can use several methods. First, you can query the Data-Admin-Application class for application names, and the Rule- classes (like Rule-Obj-Class) for related rules. For Access Groups, query the AccessGroup table, and for Operator IDs, query the Operator class. You can use Pega’s REST or SOAP APIs to pull this data programmatically, or you can create custom reports in the Report Definition tool by selecting the appropriate classes. If you have database access, direct SQL queries can also retrieve this information from the respective tables. Additionally, the App Studio tools in Pega provide visual ways to view application and user-related data.