Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

how to catch uncatchable exception

Former Member
0 Likes
569

I am using call transaction.

In the called dynpro program,I have to use commit and perform subr on submit.The problem here is to avoid getting back to the called program,I called the same dynpro program in perform on commit.It leads to uncatchable runtime exception.How can I get rid of this ?

I am using call transaction.

In the called dynpro program,I have to use commit and perform subr on submit.The problem here is to avoid getting back to the called program,I called the same dynpro program in perform on commit.It leads to uncatchable runtime exception.How can I get rid of this ?

1 REPLY 1
Read only

Former Member
0 Likes
462

Hi,

Try this out..


   DATA : oref   TYPE REF TO cx_root.

   TRY.

*****CODE goes here
   CATCH cx_root INTO oref.
   ENDTRY.

Regds,

R