Sunday 25 November 2018

How to Use Navigation in PEGA


How to Use Navigation in PEGA

Lets assume we have a portal in which there is a Navigation on the Left side and header on the top and Main Working area is in Right Side like this



Now On Clicking Home, Corresponding Home content should visible in Main Content area,
On Clicking About Us, Corresponding About Us Content should visible in Main Content area,
On Clicking Services, Corresponding Services Content should visible in Main Content area

How to achieve this in Pega?

There is a rule called Navigation rule , by using this we can achieve this concept. Lets see how to use this practically.
Every portal has a portal rule, Manager portal has a portal rule, Case Worker portal has a portal rule.
Lets Create One Portal Named "Lets Shop".

In the access group we can see the available portals in the application. Click Add Portal and add our portal by creating New one.


I created a portal, Here we have to map a Harness that will visible when we launch the portal.




I created a New Harness Name "LetsShopMainHarn" and mapped to our portal rule and save.


I mapped our portal in list of portals in Access Group Rule. Now we can launch our portal, Lets see how it looks .


Now I launched the portal, there is nothing in this portal, because we not configured anything in the harness.

So lets design our portal.


Choose Header Left screen layout.




Now lets Create One section for Header Area.




I added my Header Section contain one label.

Lets Create Navigation Section and add Navigation rule in that section.




I drag and drop the menu control from Advance Category and added a navigation rule.

Now we have to add Menus to our Navigation rule.


I added the first menu of our portal named 'Home', We have to add action for this menu, then only corresponding harness will load on the right content area of the portal.


I select Harness from action and select Target as "Replace Current".We have to provide here the Harness which we are going to create for Home Page.

Lets Create and Map HomePage harness.


I created one Harness with some content for Home page and added to the Home Page Menu.


Next to the Harness I added another one action "Run Script". We have to add this function for indexing purpose. Here I mapped Home page index as 0, Then it automatically take about as index as 1, our service index as 2 respectively.


Similarly I added menu for about us , and added Harness for About us and after the Harness we have to add one Script "RemoveScreenLayoutMask". If we not used this function then a empty screen will display if we cut the harness, So added this script.


Similarly I added menu for Our Services and added harness for this menu.


Now we finished Navigation rule part. Lets Design content part of our Harness. 



Lets Drag and Drop One section, I provide Name for this section like "LetsShopMainArea"

In this section, Our First Layout should be "Dynamic Container", Why we should use Dynamic Container??.

If we are not use dynamic container, Then on clicking menu your harness will not load on Main Content area.
If you use Dynamic Container, then the harness in your menu will replace the harness that we provide in the Dynamic Container.


Lets implement Dynamic Container in our Section.




We have to load the harness dynamically in this section so we have to choose Harness as Default View in this option and we have to provide a Default harness which is visible on portal launch. I add HomePage harness in this option.





Delete the Dynamic layout which is there as default.


Lets Launch the portal and see the result.


This is the screen which is visible on launching portal, Now Click About Us and check AboutUsHarness is loading or not.





On Clicking About Us "AboutUs" Harness is loading.

Lets click Our Service and test that menu also.


Now all the menus working properly. If u have any doubt ask in comment :)

How to Insert Records into Table in Pega

How to Insert Records into Table in Pega


I was created an Local Data Type with Zero Records, Lets see how to insert data in to Table.

I have created a flow , in the first assignment I get Employee Information .In  the flow action post action I mapped an activity to enter the information what we get in the first assignment into the table.


Now add activity to flow action post action.

Activity Methods used to insert data to table.

Pages and Class Tab:

In this activity we are inserting the data in to the table, We have all the data except EmployeeID, We have to get incremented  EmployeeID for each employee.

EmpCaseInfo page to store Case Details what user provide in the form.
MaxRecords page to store existing records in table.

Obj-Browse to retrieve all the data which is already present in the table. We are using this step to get the count of the table, Now we can add 1 to get next employee id for current Case.
In the property-set , I copied the data in Primary Page(pyWorkPage-TGB-HRApps-Work) to EmpCaseInfo(TGB-HRApps-Data-EmployeeInfo) Page.


EmployeeID is calculated by record count of the table +1, if 10 records are already present then pxResultCount will be 10, for our next record we are providing EmployeeID 11.


Obj-Save to save the data into Table.

Lets test the activity by run the flow and enter test data.

I am providing this data and click submit.

Now you can see first record is inserted.

Lets provide another one data.
After processed this case, you can see a new record is added in table.

That's all insertion of data into table. If you have any doubt ask in comment.