ABAP SUBMIT用法是一种在ABAP程序中直接提交一条程序的方法。SUBMIT指令的格式如下: SUBMIT program [VIA SELECTION-SCREEN] [STARTING AT selection-time-expression] [WITH selection-parameters] [AND RETURN]. 其中,program一般指令指代某个report,也可以用FORM程序名等其他方法来作为提交对象。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...
3、带parameters程序的Submit的用法 *Code used to populate 'parameters' & execute report SUBMIT zreport with p_param1 = 'value' with p_param2 = 'value'. 1. 2. 4、其他情况 *Submit report and return to current program afterwards SUBMIT zreport AND RETURN. *Submit report via its own select...
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...
3、带parameters程序的Submit的用法 *Codeusedtopopulate'parameters'&executereport SUBMITzreportwithp_param1='value' withp_param2='value'. 4、其他情况 *Submitreportandreturntocurrentprogramafterwards SUBMITzreportANDRETURN. *Submitreportviaitsownselectionscreen SUBMITzreportVIASELECTION-SCREEN. *Submit...
1、SUBMIT<program>AND RETURN:中断(不终止)当前运行的程序,启动新的被调用程序<program>,当<program>运行完后,控制权又返回到被中断的调用程序,继续执行 2、CALL TRANSACTION<TCode>:可以插入一个具有事务代码的ABAP程序,中断当前运行的程序,待被调程序执行完后,再继续执行主调程序 ...
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 SUBMIT zreport AND RETURN. *Submit report via its own selection screen SUBMIT z...
* SUBMIT program with parameters passed in table ISELTAB * Other parameters passed explicitly SUBMIT RIQMEL30 WITH SELECTION-TABLE ISELTAB WITH MNGRP = ‘ACTION’ WITH MNCOD = ‘CALL’ WITH DATUV = ‘00000000’ WITH DATUB = ‘99991231’ ...
PARAMETERS ... NO-DISPLAY... 创建参数,并通过DEFAULT选项在时间事件INITIALIZATION中内部赋值,或者,如果报表是用SUBMIT启动的,则由调用程序进行外部赋值。 如果想只在某种条件下才显示参数 ,例如,根据报表用户在选择屏幕的其它输入字段中输入的值决定是否显示参数 ,则请您不要使用 NO-DISPLAY 选项。如果使用了这个...
TRY. Submit <your Report Name> with < parameters> and return. CATCH <the exception name> INTO oref. text = oref->get_text( ). CATCH cx_root INTO oref. text = oref->get_text( ). ENDTRY. IF NOT text IS INITIAL. WRITE / text. ENDIF. ...