Search results

  1. A

    Q) What is Agent Schedule ?

    Agent Schedule is auto generated by Pega for every Agent. We should not create. If we delete it, Pega will regenerate it. We have to wait until the agent schedule is created, then only agent will start running Agent Schedule will be generated for every single node
  2. A

    Q) What are the 5 logging levels in Pega ?

    Info – for informational purpose InfoForced Debug – for debugging purpose Warn - Warning Error – If something goes wrong, we also keep logs for exception handling. Say if obj-open fails, keep a log message stating that obj-open failed in so and so activity
  3. A

    What are the two types of inheritance in Pega

    Pattern inheritance is automatic. Pattern inheritance uses the class name structure to determine rules available to reuse. It searches for the rule of interest following the class hierarchy — in other words, pattern inheritance searches classes that share a class name prefix. Directed...
  4. A

    Q) What are the two types of flows ?

    process flow and screen flow Process flow is the main flow for which you can create a case route to respective operators WL or WB, this can be persisted to DB, anything can be performed here. For eg: use integrator shape to call Web services, call any smart shapes, or what all shapes available...
  5. A

    Q) My File Listener is not working/not picking the file, what could be the reason ?

    It could be case sensitive issue of name of the file OR extension of file may be wrong OR maybe it is not in the right location
  6. A

    Q) Difference between “Saved” and “Saved and …” in Declare Trigger ?

    Saved means if any column value is changed, Declare Trigger will be executed Whole table Saved and … means If value in a specific column is changed, Declare Trigger will be executed Specific columns
  7. A

    Q) As you have Database Triggers why do you need Pega Declare Trigger ?

    Database Triggers will only work on the exposed columns. Pega has BLOB columns, DB triggers doesn’t work on BLOB columns. If we want to track changes on data which is inside BLOB, then we have to go for Pega Declare Trigger. Eg: Whenever anybody tries to change anything in the OperatorID record...
  8. A

    Q) What is a parameterized data page and How to call a parameterized data page from an activity?

    In a parameterized data page, you are passing the parameters while calling a Data Page DataPageName[ParameterName:Value] D_CustomerAddressList[Country:”India”]
  9. A

    Q) How can you asynchronously call a data page?

    Suppose your data page has a lot of content, it will take a lot of time to load. Before I reach my next activity (child activity), I want my data page to get loaded. To make things easy, I want to pre-load my data page and keep it ready for the next steps in the activity. Use Load-DataPage...
  10. A

    Q) What are Data Pages ?

    Data Pages are reusable clipboard pages. They have prefix D_ in their names. They are used for caching data.
  11. A

    Q) What is the difference between obj-open and obj-open by handle ?

    obj-open works only with the primary key of the table obj-open by handle works with pzInsKey
  12. A

    Q) What all rules will be created in the backend on creating a data type from data explorer in Pega ?

    Data class, Data table, Database class mapping rule Data pages, properties, Report Definition
  13. A

    Q) What is the difference between Database and Database Table rule ?

    Class and table mapping is maintained in the database table instance. Pega and database mapping is maintained under Database instance
  14. A

    Q) What are the different pages available in Clipboard ?

    User Pages(Pages created by User), Data Pages, Linked Property Pages, Systrem Pages (created by system, Pega will maintain
  15. A

    Q) What is a class group?

    Rather than create a database table for each case type, you designate a class, usually the parent class (TGB-HR-Apps-Work), as a class group (also referred to as a work pool). Class groups cause the system to store instances of similar or related case types together in a single database table. A...
  16. A

    Q) What if I have a stage level, flow level, step level(screen level) SLA ? Which one takes precedence?

    If you are on a screen, obviously screen level SLA takes precedence, then flow SLA, then stage SLA, then case type SLA
  17. A

    Q) Where all u can configure SLA?

    On Assignment
  18. A

    Q) What is a Case type rule ?

    A) Case Type rule defines the end-to-end life cycle of the business process
Top