SAP Managed Tags: ABAP Development Hi All, I am facing a strange situation where in I have to exit a LOOP when I condition is met & have to do further processing as follows:- LOOP AT ITAB INTO WA. gv_index = sy-tabix. IF wa-rsnum NE space. CLEAR wa_out2. READ TABLE it_out...
SAP Managed Tags: ABAP Development loki_luo15, You have to use NOT IN key word, below code for Reference. SELECT * FROM vbak INTO TABLE @DATA(lt_vbak) WHERE vbeln NOT IN @s_vbeln. You can also ask the use to enter the values to be excluded in the Select-option directly as ...
LOOP AT SCREEN. CHECK screen-name = fname. IF screen-input = 0. xshow = 'X'. ELSE. xshow = space. ENDIF. EXIT. ENDLOOP. ENDFORM. 4 Coding in FI BTE (Bussiness Transaction Event) 1120. You have to use (SAMPLE_PROCESS_00001120). I will not be decribing how to activat...
I need to create a PO using the Bapi BAPI_PO_CREATE1 inside the exit USEREXIT_SAVE_DOCUMENT_PREPARE in the program SAPMV50A. I want to use the SUBMIT statement to call another z program which creates the PO using the BAPI. Now I want to pass an internal table to the other z progra...
. EXIT. ENDIF. ENDLOOP. ENDLOOP.ENDMETHOD. "run Method get_message_text is to generate explanation text in the check tree. METHOD get_message_text . DATA: l_code TYPE sci_errc. IF p_test <> myname. super->get_message_text( EXPORTING p_test = p_test p_code = p_code IMPORTING ...
SAP Managed Tags: ABAP Development Hi, Open Dataset. loop at table Transfer work area. endloop. Closedataset. If u open the same file then for every opening data in file will be cleared and new data wil transfered to file If u want to dine new path then, Goto Tcode -- > FILE,...
· ST12 trace captures the minute details of the flow such as the Loop statements performance, which can be used for a detailed analysis of the flow. · As the ABAP trace captures the complete flow, this can be used as an effective tool to identify the Customer Modifications or User Exit...
SAP Managed Tags: ABAP Development Hi Sudheer, I have used it in the POV event just like you did, but it didn't event fire PBO once I select an entry from the search help. A lot of people here claim that they are able to get PBo fired with this function module and I wonder ...
SELECT DISTINCT (list) INTO CORRESPONDING FIELDS OF TABLE itab FROM spfli.IF sy-subrc EQ 0. LOOP AT itab INTO wa. * WRITE: / wa-cityfrom, wa-cityto. WRITE :/ wa-airpto. ENDLOOP. ENDIF. Fast Links: Remove Unwanted String String Handling in ABAP - Removing Unwanted Char ...
SAP Managed Tags: ABAP Development Hiiii if you want a pop up window in a alv report ... then just use REUSE_ALV_POPUP_TO_SELECT to present the data in the pop up window ... else if u want to have a pop up window for any thing in the report just use se51 and creae a ...