For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
We are currently on HCM 9.2 Image 16, PeopleTools 8.55.04. Our upgrade was delayed this year and I was wondering how long SES will be supported? Also, if we need to upgrade is it just a Tools upgrade or do we also need to go to a higher HCM Image?
SQL> set serverout on SQL> ed Wrote file afiedt.buf 1 <<outer_block>> 2 declare 3 exc exception; 4 pragma exception_init(exc,-20001); 5 begin 6 <<inner_block>> 7 declare 8 exc exception; 9 pragma exception_init(exc,-20002); 10 begin 11 raise_application_error(-20002,'Error raised'); 12 exception 13 when outer_block.exc then 14 dbms_output.put_line('outer Exception caught ' ); 15 when inner_block.exc then 16 dbms_output.put_line('Inner Exception caught ' ); 17 end; 18* end; SQL> / Inner Exception caught PL/SQL procedure successfully completed. SQL> ed Wrote file afiedt.buf 1 <<outer_block>> 2 declare 3 exc exception; 4 pragma exception_init(exc,-20001); 5 begin 6 <<inner_block>> 7 declare 8 exc exception; 9 pragma exception_init(exc,-20002); 10 begin 11 raise_application_error(-20001,'Error raised'); 12 exception 13 when outer_block.exc then 14 dbms_output.put_line('outer Exception caught ' ); 15 when inner_block.exc then 16 dbms_output.put_line('Inner Exception caught ' ); 17 end; 18* end; SQL> / outer Exception caught PL/SQL procedure successfully completed.