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
*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...
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_w...
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 line of seltab. ...
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 ...
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 ...
ABAPSUBMIT的使用方法 1、最普通的用法 *Codeusedtoexecuteareport SUBMITZreport. 2、带select-options程序的Submit的用法 *Codeusedtopopulate'select-options'&executereport DATA:seltabtypetableofrsparams, seltab_walikelineofseltab. seltab_wa-selname='PNPPERNR'. ...
SELECT-OPTIONS的用法 2010-01-15 10:56 − SELECT-OPTIONS - screen_options Syntax ... [OBLIGATORY|NO-DISPLAY] 必输|不显示用于SUBMIT [VISIBLE LENGTH vlen] &... 凡尘clsoho 0 10265 [SAP ABAP开发技术总结]选择屏幕——各种屏幕元素演示 2015-02-01 09:05 − 12.5. 各种屏幕元素演示 TABLE...
你这个是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,...