If you have a locked EBS user account or need to change the user passwords usingFND_USER_PKG.changePasswordAPI with PL / SQL then you can use the following script
declare begin if FND_USER_PKG.changePassword ('USERNAME','NEW_PASSWORD') then dbms_output.put_line(1); else dbms_output.put_line(2) ; end if; end;
0 comments:
Post a Comment