*Code used to execute a report SUBMIT Zreport. 2、带select-options程序的Submit的用法 *Code used to populate 'select-options' & execute report DATA: seltab type table of rsparams, seltab_wa like line of seltab. seltab_wa-selname = 'PNPPERNR'. seltab_wa-sign = 'I'. seltab_wa-opt...
1、最普通的用法 *Code used to execute a report SUBMIT Zreport. 2、带select-options程序的Submit的用法 *Code used to populate 'select-options' & execute report DATA: seltab type table of rsparams, seltab_wa like line of seltab. seltab_wa-selname = 'PNPPERNR'. seltab_wa-sign = 'I'...
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...
ABAP SUBMIT的使用方法 1、最普通的用法 *Codeusedtoexecuteareport SUBMITZreport. 2、带select-options程序的Submit的用法 *Codeusedtopopulate'select-options'&executereport DATA:seltabtypetableofrsparams, seltab_walikelineofseltab. seltab_wa-selname='PNPPERNR'. seltab_wa-sign='I'. seltab_wa-...
1、最普通的用法*Code used to execute a reportSUBMITZreport.2、带select-options程序的Submit的用法*Code used to populate 'select-options' & execute reportDATA: seltab type table of rsparams, seltab_wa like line of seltab. seltab_wa-selname ='PNPPERNR'. seltab_wa-sign ='I'. seltab_...
SELECT-OPTIONS: s_date FOR sy-datum, s_time FOR sy-uzeit. SELECTION-SCREEN ENDOF BLOCK b1. 在提交时,我们可以使用“SUBMIT”语句来执行相应的ABAP程序。并使用“WITH SELECTION-TABLE”子句传递选择表,该表包含用户在自由选择范围内输入的参数值。 abap SUBMIT program_name WITH SELECTION-TABLE s_table....
ABAPSUBMIT的使用方法 1、最普通的用法 *Codeusedtoexecuteareport SUBMITZreport. 2、带select-options程序的Submit的用法 *Codeusedtopopulate'select-options'&executereport DATA:seltabtypetableofrsparams, seltab_walikelineofseltab. seltab_wa-selname='PNPPERNR'. seltab_wa-sign='I'. seltab_wa-optio...
ABAP SUBMIT的使用方法.doc,ABAP SUBMIT的使用方法 1、最普通的用法 *Code used to execute a report SUBMIT Zreport. 2、带select-options程序的Submit的用法 *Code used to populate select-options execute report DATA: seltab type table of rsparams, seltab_wa like
1¡ ¢×îÆÕͨµÄÓ÷ ¨ *Code used to execute a report SUBMIT Zreport. 2¡ ¢´øselect-options³ÌÐòµÄSubmitµÄÓ÷ ¨ *Code used to populate ' select-options' & execute report DATA: seltab type table of rsparams, seltab_wa like ...
ABAP SUBMIT基本介绍 ABAP Submit是SAP系统中连接不同程序或ABAP语句的重要工具,它允许在一个程序中提交并执行另一个可执行程序,从而将不同的程序链接起来实现流程控制、数据传输等。 常见使用场景: 使用ABAP Submit可以方便地间接调用和控制其他程序的执行,同时可以在不改变原始程序的代码逻辑和性能的前提下,实现程序间...