Commands to Update/Change SYSADM password in PeopleSoft:
If PeopleTools version is 8.54 or lower:
CHANGE_ACCESS_PASSWORD SYSADM1 <new password>;
ENCRYPT_PASSWORD *;
If PeopleTools version is 8.55 or above:
UPDATE PSACCESSPROFILE SET STM_ACCESS_ID=’SYSADM’,SYMBOLICID=’SYSADM1′,STM_ACCESS_PSWD='<new password>’,VERSION=1,ENCRYPTED=0;
ENCRYPT_PASSWORD *;
How to Change PS password in PeopleSoft from Data Mover
PS or User Password is saved in PSOPRDEFN table. We will update this table in PeopleSoft Database using below Script.
update PSOPRDEFN set OPERPSWD = ‘new_password’, ENCRYPTED = 0 where OPRID = ‘YOUR_USER_OPRID’;
encrypt_password YOUR_USER_OPRID;