PL-SQL code to add responsibility to application user

PL-SQL code to add responsibility to application user
Oracle apps EBS add responsibility to user from backend
Script to add responsibility to user

--
--
BEGIN
   fnd_user_pkg.AddResp ('<User Name>',
                         '<Resp Appl Short Name>',
                         '<Responsibility Key>',
                         '<Security Group>',
                         NULL,
                         NULL,
                         NULL);

   COMMIT;
END;


--Example:

BEGIN
fnd_user_pkg.AddResp ('AMOL',
                      'SYSADMIN',
                      'SYSTEM_ADMINISTRATOR',
                      'STANDARD',
                      NULL,
                      NULL,
                      NULL);

COMMIT;
END;
/
Related posts: Upload your own post and refer it anywhere anytime:

Leave a Reply