if sy-subrc ne 0. message 'Invalid material ' Type 'E'. Endif. Reward points if useful... Suresh... Reply Former Member 2007 Apr 16 7:17 AM 0 Kudos 2,778 SAP Managed Tags: ABAP Development Hi Kota, As a rule, if SY-SUBRC = 0, the statement was executed successfull...
IF sy-subrc NE 0. STOP. ENDIF. Now, after the function module 'HR_WFM_OPEN' is called, sy-subrc is 0 (zero). This should mean that the IF condition at the end should not get executed. However, after function module is called 'HR_WFM_OPEN' is called, even though sy-subrc is ze...
但是ISU_DB_EANL_UPDATE总是将sy-subrc返回为0。如果表没有更新,那么ISU_DB_EANL_UPDATE也会将sy-...
采购申请pr新增行 | pritemx = lt_pritemx extensionin = lt_exts . loop at lt_return into ls_return where type = 'E' or type = 'A'. exit. endloop. if sy-subrc ne 0. call function 'BAPI_TRANSACTION_COMMIT' exporting wait = 'X'. " 回写内表 if sy-subrc eq 0 . loop at gt_...
I'm trying to debug a function that generates an error msg. I tried to debug a bit and located the point in which the error message is generated. I've seen that the error message is caused by a sy-subrc value NE 0 after a function call. Well, then the problem is that something ...
use sy-subrc = 0 ,or sy-subrc ne 0.. Thanks SeshuReply Former Member In response to Former Member 2007 Aug 23 7:49 PM 0 Kudos 7,355 SAP Managed Tags: ABAP Development Thank You very much for all your inputs. I have understund the concept. Alloting points !! Closing...
0 Kudos 1,601 SAP Managed Tags: ABAP Development hiiii if your sy-subrc NE 0 that means defenetly its not getting values as per your condition.if its so then it will not move values also.check for that. <REMOVED BY MODERATOR> thx twinkal Edited by: Alvaro Tejada Galindo on Jun...
" Instead 'NE' use 'EQ' r_lkenz-low = 'X'. APPEND r_lkenz. clear r_lkenz. Regards Pinaki Reply Former Member 2010 Jan 27 9:20 AM 0 Kudos 3,204 SAP Managed Tags: ABAP Development Hi, it is because a result set is empty (no data was found in the database). You...
if sy-subrc NE 0. MESSAGE endif. Thanks, Mahesh Reply Former Member In response to Former Member 2007 Jul 30 4:41 PM 0 Kudos 212 SAP Managed Tags: ABAP Development No frnd, still its saying that no data found. can u help me. thanks, sanjay Reply RichHeilman Developer ...
<> or NE represents NOT EQUAL TO LT represents LESS THAN GT represents GREATER THAN. sy-subrc is a system variable, which is usually '0', when the statement it just executed was successfull. If it wasnt successful it ll have a value other than 0. eg: READ TABLE or DELETE entries....