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

SY-SUBRC values.

0 Likes
576

Can any one tell me what does sy-subrc = 8 means?

Can any one tell me what does sy-subrc = 8 means?

3 REPLIES 3
Read only

Former Member
0 Likes
536

hi,

Sy-subrc = 0 -


Success

Sy-subrc = 4 -


Failure(known reason)

Sy-subrc = 8 -


Internal error(Unknown reason).

Read only

Former Member
0 Likes
536

Hi Subu,

SY is a structure with the ABAP Dictionary data type SYST. The components of SY are known as system fields. System fields contain values that provide information about the current state of the system. They are automatically filled and updated by the ABAP runtime environment.

Sy-subrc = 0 -


Success

Sy-subrc = 4 -


Failure(known reason)

Sy-subrc = 8 -


Internal error(Unknown reason).

Regards

Avi...

Read only

0 Likes
536

Thanks for your kind replies.