Posts

Showing posts from June, 2021

job scheduler in pega

Image
  What is Job Scheduler? As the name implies it is used to schedule jobs. Job scheduler got introduced on Pega infinity (Pega 8) release and set to replace the advanced agent rules. It belongs to SysAdmin category. Create a new Job Scheduler Records -> SysAdmin -> Job Scheduler -> Create new Note:   If you don’t see it in admin studio, make sure to update the System Runtime Context or AsyncProcessor requestor type context.   Trace the Job scheduler. Similar to agent tracing, you can trace your Job scheduler from the admin studio. 2. Disable the Job Scheduler from admin studio. You can use the Override link, to disable any running Job Scheduler. I just clicked the override link and you see it is disabled and next run is not applicable. There may be some scenarios where you need to disable the job schedulers.   How to start / stop jobs using Pega API? Step 1:   Switch to admin studio -> resources -> APIs You can find the APIs for job schedulers, que...

pega-8-activity-html-page

 pega-8-activity-html-page   Overview  Create new HTML Rule Create Pega 7 Activity to Show HTML Page Using Show-HTML Method Access Pega 7 Activity to Show HTML Page from a Web Browser   Create new HTML Rule In the Pega 7 Designer Studio, click on +Create > Technical > HTML to create a new HTML Rule . Enter a label for the new HTML Rule , select the context, apply to class and ruleset version. Here, the name of the new rule is HelloWorldHTML . Then click on Create and open . On the HTML tab of the HTML Rule, select "HTML" in the Generate for drop down. Here, Browser Support is set to "All Supported Browsers" and Accessibility remains "No" . <html> <body> <span> Hello World! </span> </body> </html> Enter HTML code into the source text box, e.g. the above code shows a Hello World! message. Click on Save to save the changes to the HTML Rule. 2  Create a Pega 7 Activity to Show HTML ...