Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagesql
themeEclipse
title2. Insert a new grant prefix
insert into ps_grant_prefix values ('ABC', sysdate, 'admin', 1, sys_guid());


Add/Update PeopleSoft Accountant Code assignments

Code Block
languagesql
themeEclipse
title1. View current accountant code assignments
select accountant_code, user_id from ps_accountant_codes;


Code Block
languagesql
themeEclipse
title2a. Assign a new user to an existing accountant code
update ps_accountant_codes set user_id='efitzp01' where accountant_code='99';


Code Block
languagesql
themeEclipse
title2b. Create a new accountant code for the given user
insert into ps_accountant_codes values ('99', 'efitzp01', sysdate, 'admin', 1, sys_guid());


Code Block
languagesql
themeEclipse
title2c. Remove an existing accountant code
delete from ps_accountant_codes where accountant_code='99';


Grant Admin permissions to a user (full access)

...