Showing posts with label Roles. Show all posts
Showing posts with label Roles. Show all posts

Saturday, September 13, 2008

Checking a Peron's Roles within PeopleCode

For manually securing object or doing some kind of filtering, it is regularly useful to know what roles a person has in their user profile. Peoplesoft provides a global variable to give you access to the person’s roles.

Example:

Local array of string &Roles;

Local integer &I;

&Roles = %Roles;
&doTransfer = True;

For &I = &Roles.Len To 1 Step - 1
If &Roles [&I] = "My Special Role" Then
&doTransfer = False;
End-If;
End-For;

Add to Google