tesing responsibility coding
tesing responsibility coding
dbms_output.put_line ('2');
/* for c_get_resp in cur_get_responsibilities
loop */
fnd_user_pkg.addresp (
username => upper(v_user_name)
,resp_app => 'FND'
,resp_key => 'APPLICATION_DEVELOPER'
,security_group => 'STANDARD'
,description => null
,start_date => sysdate
,end_date => null);
dbms_output.put_line ('3');
-- end loop;
commit;
exception
when others then
dbms_output.put_line ('4');
dbms_output.put_line ('Exception : '||SUBSTR(SQLERRM, 1, 500));
rollback;
end;