Thread: ABAP: sy-subrc
View Single Post
  #3 (permalink)  
Old 09-07-2006, 04:02 PM
smith smith is offline
Programmer
 
Join Date: Jun 2006
Posts: 108
Credits: 0
Rep Power: 10
smith is on a distinguished road
Default

sy-subrc is a system field which is the return code. ABAP programs will set this to 0 if execution is successfull or != (<>, not equal) 0 if otherwise.
__________________
Code:
for (int i;;) {
   cout << "Smith";
}
Reply With Quote