2007 Sep 17 9:17 PM
Hi,
What is exception class .
What is local exception class
what is global exception class.
Thanks,
Medha.
2007 Sep 17 10:17 PM
DATA : OREF TYPE REF TO CX_ROOT. " To Hold the Exception
try.
*-- Handle Other Exceptions
CATCH CX_ROOT INTO OREF.
LV_TEXT = OREF->GET_TEXT( ).
endtry.
2007 Sep 17 9:24 PM
2007 Sep 17 9:28 PM
Hi,
And also check this doc.
http://help.sap.com/saphelp_nw04/helpdata/en/fb/35c62bc12711d4b2e80050dadfb92b/content.htm
a®
2007 Sep 17 10:17 PM
DATA : OREF TYPE REF TO CX_ROOT. " To Hold the Exception
try.
*-- Handle Other Exceptions
CATCH CX_ROOT INTO OREF.
LV_TEXT = OREF->GET_TEXT( ).
endtry.