当submit语句执行时,VIA JOB也独立地在内部模式中加载被访问的程序,在被访问的程序中,系统会执行在START-OF-SELECTION事件之前指定的所有步骤。这意味着事件LOAD-OF-PROGRAM和INITIALIZATION会被触发,selection screen processing会执行。如果指定了附加项VIA SELECTION-SCREEN使得选择屏幕不在后台处理,调用程序的用户可以编辑...
via selection-screen.3、带parameters程序的Submit的用法*Code used to populate 'parameters' & execute reportSUBMITzreport with p_param1 ='value'with p_param2='value'.4、其他情况*Submit report and return to current program afterwardsSUBMITzreportANDRETURN.*Submit report via its own selection screen...
SUBMIT{rep|(name)}[USING SELECTION-SCREENdynnr][VIA SELECTION-SCREEN][USING SELECTION-SETvariant][USING SELECTION-SETS OFPROGRAMprog][WITH SELECTION-TABLErspar]{[WITHsel1{{{EQ|NE|CP|NP|GE|LT|LE|GT}dobj[SIGNsign]}|{[NOT]BETWEEN dobj1 AND dobj2[SIGNsign]}|{IN rtab}}][WITHsel2{{{EQ...
* load each personnel number accessed from the structure into * parameters to be used in the report loop at pnppernr. seltab_wa-low = pnppernr-low. append seltab_wa to seltab. endloop. SUBMIT zreport with selection-table seltab via selection-screen. 1. 2. 3. 4. 5. 6. 7. 8. ...
... VIA SELECTION-SCREEN Effect If this addition is specified, the selection screen is displayed on the screen. Otherwise, background selection screen processing takes place. In background selection screen processing, theselection screen eventsare raised without the selection screen being displayed. ...
SAP Managed Tags: ABAP Development use syntex: SUBMIT <report name> VIA SELECTION-SCREEN AMit. Reply Former Member In response to Former Member 2016 Jul 26 9:25 AM 0 Kudos 6,186 SAP Managed Tags: ABAP Development This message was moderated. Reply Chintu6august Contributor ...
If a variantvariantis specified withUSING SELECTION-SET, a search is made for this variant in the programprog. If the selection screen is displayed usingVIA SELECTION-SCREEN, all functions accessed using the menu pathGoto - Variantsare applied to the selection screen variants of the programprog....
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 afterwards ...
SAP Managed Tags: ABAP Development Hi, Please try this. Case sy-ucomm. when 'EXIT'. SUBMIT (sy-repid) via selection-screen and return. when 'PF03'. SUBMIT (sy-repid) via selection-screen and return. endcase. Regards, Ferry Lianto Reply Former Member In response to ferry_lianto ...
SAP Managed Tags: ABAP Development Hi ALL, I have 2 programs (Zpgm1 and Zpgm2) and i am calling this program from another a customer screen based on a push button. if pgm1 = 'X'. submit ZPGM1 via selection-screen with p_e = 'X' and return. ELSEIF PGM2 = 'X'. submit ZPG...