‎2008 Jul 25 10:02 AM
As there is a message type associated with an error i.e. 'E','S','I' etc. , Is there such exception type??
for eg. if i call function UPLOAD and catch the exception 'INAVALID_TABLE_TYPE'. Is there any exception type associated with the exception??
‎2008 Jul 25 10:05 AM
Hi,
There is no such clarification in sap.
But based on the way of handling and the class it belogs to there is categorisation. Find detail in
http://help.sap.com/saphelp_nw04/helpdata/EN/fb/35c62bc12711d4b2e80050dadfb92b/content.htm
Regards,
anirban
‎2008 Jul 25 10:05 AM
Hi,
There is no such clarification in sap.
But based on the way of handling and the class it belogs to there is categorisation. Find detail in
http://help.sap.com/saphelp_nw04/helpdata/EN/fb/35c62bc12711d4b2e80050dadfb92b/content.htm
Regards,
anirban
‎2008 Jul 25 10:09 AM
Hi,
There are two types of EXCEPTION
1.CATCHABLE EXCEPTION
2.NON-CATCHABLE EXCEPTION.
Follow this link-
http://help.sap.com/saphelp_nw70/helpdata/en/cf/f2bbce142c11d3b93a0000e8353423/content.htm
http://www.sapnet.ru/abap_docu/ABAPCALL_METHOD_ABAP_OBJECTS.htm(Scroll down)
http://sapabap.iespana.es/manuales/abap46/abapcall_method_abap_objects.htm
Regards,
Sujit
‎2008 Jul 25 1:21 PM
Hi rohit,
Three different types of exception classes :-
1.Exceptions requiring a declaration that either have to be handled or propagated. This is the standard case described previously.
2.Exceptions that can be declared in the interface if desired.
3.Exceptions that must not be declared in the interface.
Also check this link for more info;-
http://help.sap.com/saphelp_nw04/helpdata/EN/83/636d1712fc11d5991e00508b5d5211/content.htm
Best of luck,
Bhumika
‎2008 Jul 26 12:16 PM