cancel
Showing results for 
Search instead for 
Did you mean: 

CX_WDR_RT_EXCEPTION' - How to catch it?

0 Kudos

Dear Experts,

I am using a pop up which is getting opened on the click of the button. At times it fails and throws the runtime exception 'CX_WDR_RT_EXCEPTION'. How to handle this exception to avoid runtime dump.

REgards,

Kanthimathi

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

hi krishnan,

put that code in try and endtry and inside it write catch also.

ex:

DATA: lo_exc TYPE REF TO cx_root.

try

write u r code here

CATCH cx_root INTO lo_exc.

endtry.

Regards,

janakiram.

Edited by: janakiram raju on Mar 18, 2008 6:01 AM