*当被调用的程序的屏幕有输入参数时:SUBMITzreport with p_param1 ='value1'with p_param2='value2'.*当要传递一个内表到被调用的程序时,需要用SAP MEMORY或者ABAP MEMORY:*在调用的程序中:EXPORTit_tabTOMEMORY'Z_MEMORY'.*在被调用的程序中:IMPORTT_ITABFROMMEMORY'Z_MEMORY'. (3) RANGE表: *Code ...
SUBMIT zreport with selection-table seltab 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. ...
range_line-low ='K'.APPENDrange_lineTOrange_tab.SUBMITreport1USINGSELECTION-SCREEN'1100'WITHSELECTION-TABLErspar_tabWITHselcrit2BETWEEN'H'AND'K'WITHselcrit2INrange_tabANDRETURN. 结果:在report1被report2访问之后,被访问程序中的条件值selcrit1和selcrit2的selection table中包含了以下记录: WITH FREE S...
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...
| [TO SAP-SPOOL SPOOL PARAMETERS pri_params [ARCHIVE PARAMETERS arc_params] WITHOUT SPOOL DYNPRO] } [[USER user] VIA JOB job NUMBER n] [AND RETURN]. 效果 调用一个可执行程序。 附加项 {rep|(name)} 使用rep静态地指定一个程序,或者使用name动态地指定 ...
TO SAP–SPOOL allow you to create a new Spool request with the results. In this method use Function Module ‘GET_PRINT_PARAMETERS’ to fetch the print parameters of the program. REPORT zcalling_program_spool. DATA: print_parameters TYPE pri_params, valid_flag TYPE c. *Get print parameters...
How to generate dynamic parameters for SUBMIT REPORT in ABAP ? agrawalaadhar8 Participant 2019 Jan 14 8:20 AM 0 Kudos 1,246 SAP Managed Tags: ABAP Development Hi All, I am trying to achieve the below functionality: Storing report program names in a table against some keys. ...
parameters: p_check type c. start-of-selection. flag = 'X'. " Report was executed export flag = flag to memory id 'TEST'. What do ya think? REgards, Rich Heilman Reply Former Member In response to RichHeilman 2006 Feb 02 1:00 AM 0 Kudos 500 SAP Managed Tags: ABAP...
report with the SUBMIT … VIA JOB job NUMBER n statement, you should always use the addition …TO SAP-SPOOL to pass print and/or archive parameters. Otherwise, default values are used to generate the list and this disturbs operations in a production environment. ...
SAP Managed Tags: ABAP Development Hi Guyz, I created a program using submit and return..since it there is an existing program named ZFF_STA_VESSEL which wil generate a per cost center report, i will call it to my program ZF_SummarySOA which will create a multiple cost center report.....