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

Runtime error

Former Member
0 Likes
498

Hi,

In which situation runtime errors will occur and how many types of runtime errors will be their in the SAP please can anyone explain me about this.

Thanks in Advance,

Medha.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
461

Hi,

This is tricky one, to get the exceptions list for run time errors from SAP system…

When you divide a value by 0 what you want the Kernel/System to do.....

•CONFLICT_LENG

•SAPSQL_ERROR

•OBJECTS NOTFOUND

•IN_SCREEN_ NOT_FOUND

•CONVT_NO

•OBJECTS_NOT_CHAR

2 REPLIES 2
Read only

Former Member
0 Likes
462

Hi,

This is tricky one, to get the exceptions list for run time errors from SAP system…

When you divide a value by 0 what you want the Kernel/System to do.....

•CONFLICT_LENG

•SAPSQL_ERROR

•OBJECTS NOTFOUND

•IN_SCREEN_ NOT_FOUND

•CONVT_NO

•OBJECTS_NOT_CHAR

Read only

Former Member
0 Likes
461

There's quite a number that you can handle with the "catch system-exceptions" as explained in these links:

http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/f2bbce142c11d3b93a0000e8353423/content.htm

http://help.sap.com/saphelp_nw04/helpdata/en/a9/b8eef8fe9411d4b2ee0050dadfb92b/content.htm

and a list at

http://www.s001.org/ABAP-Hlp/abensysexc-errkl.htm

... and then there are ones that you can't catch, such as passing bad parameters out to a function module, given the ALV a bad field name to work with, database running out of space etc etc.

Jonathan