*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...
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...
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_w...
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'...
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-...
然后,我们可以使用SUBMIT WITH SELECTION-TABLE语句来执行程序: SUBMIT z_program_name WITH SELECTION-TABLE lt_selection_table. 点击“确定”按钮后,ABAP系统会将选择表中的字段值传递给程序。在被提交的ABAP程序中,我们可以使用以下语法来检索选择表的值: SELECT-OPTIONS: s_num1 FOR lt_selection_table-num1,...
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 ...
ABAPSUBMIT的使用方法 1、最普通的用法 *Codeusedtoexecuteareport SUBMITZreport. 2、带select-options程序的Submit的用法 *Codeusedtopopulate'select-options'&executereport DATA:seltabtypetableofrsparams, seltab_walikelineofseltab. seltab_wa-selname='PNPPERNR'. ...
If a selection criterion is supplied with data when calling up an executable program using SUBMIT, a conversion routine may be performed for the first row only, while the value of the columns low and high will be truncated at position 255 for the first row only. If the selection criterion ...
你这个是SUBMIT的用法错了 SUBMIT zreport with p_param1 = 'value1' with p_param2 = 'value2'.上面这句的用法是针对parameter的,可以这样传单值 但是你写的是select-options,应该用这个 SUBMIT zreport with selection-table seltab 下面写个简单例子:DATA: GT_A TYPE TABLE OF RSPARAMS,...