cancel
Showing results for 
Search instead for 
Did you mean: 

Return code

Former Member
0 Kudos

Hi

I woukd like to know about the returncode and its uses, its fuction ,how this works

thanks in advance

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

There are several 'returncode', you to transfer/update routine.

in transfer/update routine, it can be used to skip record. if the returncode is not equal zero, the result will not be updated

other return code can be found in transport process e.g, returncode 0 means successful, 4 means warning, 8 or 12 means error.

basically it's can be code returned by process in abap e.g (normally get with system parameter sy-subrc).

hope this helps.

take a look these links

http://help.sap.com/saphelp_nw04s/helpdata/en/0d/54a2a4705c3c4d9a3726773d741392/frameset.htm

http://help.sap.com/saphelp_nw04s/helpdata/en/36/57f941e6cbf941b69a2ab8dcf2f85e/frameset.htm

Hope it helps

Regards

gaurav

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

The SAP system logs a code for all error situations called return codes. The following are the return codes:

0 : No errors or problems have occurred.

4 : Warnings have occurred but they can be ignored.

8 : Transport could not be finished completely. Problems occurred with certain objects.

12 : Fatal errors have occurred, such as errors while reading or writing a file or unexpected errors within the database interface, in particular database problems.

16 : Situations have occurred that should not have.

Bye

Dinesh