endloop. SUBMIT zreport with selection-table seltab via selection-screen. 3、带parameters程序的Submit的用法 *Code used to populate 'parameters' & execute report SUBMIT zreport with p_param1 = 'value' with p_param2 = 'value'. 4、其他情况 *Submit report and return to current program afterwa...
G_SUBRC.IFNOTG_SUBRCISINITIAL.MESSAGEID'QA'TYPE'S'NUMBER'068'WITHPRUEFLOS.SUBMIT(SY-REPID) VIASELECTION-SCREEN.ENDIF.PERFORMREAD_MSEGUSINGG_MKPF_TAB G_MSEG_TAB G_SUBRC.IFNOTG_SUBRCISINITIAL.MESSAGEIDSY-MSGIDTYPE'S'NUMBERSY-MSGNOWITHSY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.SUBMIT(SY-REPID...
SUBMIT... [VIA SELECTION-SCREEN] [USING SELECTION-SET var] [WITH sel criterion] [WITH FREE SELECTIONS freesel] [WITH SELECTION-TABLE rspar].These additions have the following effects:· VIA SELECTION-SCREENThe selection screen of the called executable program appears. If you transfer values to...
not_found=1 no_report=2 OTHERS=3. IF sy-subrc <>0. MESSAGEID sy-msgidTYPE sy-msgtyNUMBER sy-msgno WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4. ENDIF. SUBMIT zjrfi018WITHSELECTION-TABLE l_seltab VIASELECTION-SCREEN. WHEN'&Z_F12'. LEAVEPROGRAM. when others. endcase....
SUBMITCalls an executable program. SyntaxSUBMIT <rep> [AND RETURN] [VIA SELECTION-SCREEN] [USING SELECTION-SET ] [WITH <sel> <criterion>] [WITH FREE SELECTIONS <freesel>] [WITH SELECTION-TABLE <rspar>] [LINE-SIZE <width>] [LINE-COUNT <length>]. Calls the program <rep>. If you omit...
VIA SELECTION-SCREEN USING SELECTION-SET 'VARIANT1' USING SELECTION-SETS OF PROGRAM 'REPORT00' AND RETURN. Effect Executes the program REPORT01 with the variant VARIANT1 of the program REPORT00 . Note Runtime errors LOAD_PROGRAM_NOT_FOUND : The specified program was not found. SUBMIT_WRON...
In the program report2, an internal table with row type RSPARAMS and a ranges table are filled for this selection screen. These are transferred at SUBMIT together with a single condition. Program accessed REPORT report1. DATA text TYPE c LENGTH 10. SELECTION-SCREEN BEGIN OF SCREEN 1100...
Hi, data :SELTAB TYPE TABLE OF RSPARAMS. Im using submit zprog using selection-table seltab. But My selection screen of zprog is still visible and im able to change the
CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN. WHEN 'BusTrEvent'. SUBMIT rfopfi00 WITH event = i_userexit-modname(8) AND RETURN. WHEN OTHERS. MESSAGE s030(cj)."Navigation not possible ENDCASE. WHEN 'I_USEREXIT-MODATTR-NAME'. IF NOT i_userexit-modattr-name IS INITIAL. SET PARAMETER...
Has anyone got lucky using SUBMIT <report> WITH FREE SELECTIONS <texpr>? Its not working for me. I followed SAP Help exactly on this. still no luck. I'm trying to submit FBL5N. I need this to run with dynamic selections. I had a look at the following thread: but it seems they ...