*当被调用的程序的屏幕有输入参数时:SUBMITzreport with p_param1 ='value1'with p_param2='value2'.*当要传递一个内表到被调用的程序时,需要用SAP MEMORY或者ABAP MEMORY:*在调用的程序中:EXPORTit_tabTOMEMORY'Z_MEMORY'.*在被调用的程序中:IMPORTT_ITABFROMMEMORY'Z_MEMORY'. ...
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...
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 在一个report里submit自身,会怎么样?(可以通过编译) 我在Windows laptop里启动了一个Ubuntu虚拟机,然后试图在该系统里再次启动另一个Linux虚拟机。 这次遇到error message:This computer doesn't have VT-X/AMD-v enabled. Enabling it in the BIOS is mandatory。 尽管我在VirtualBox里已经将该虚拟机的VT-...
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. ...
[SIGNsign]}|{[NOT]BETWEEN dobj1 AND dobj2[SIGNsign]}|{IN rtab}}]...}[WITH FREESELECTIONStexpr][LINE-SIZEwidth][LINE-COUNTpage_lines]{[EXPORTING LISTTOMEMORY]|[TO SAP-SPOOL SPOOL PARAMETERS pri_params[ARCHIVEPARAMETERSarc_params]WITHOUTSPOOLDYNPRO]}[[USERuser]VIA JOB jobNUMBERn][AND...
SUBMIT with dynamically created parameters and selectoptions Go to solution h_senden2 Active Contributor 2007 Feb 06 2:55 PM 0 Kudos 129 SAP Managed Tags: ABAP Development Hi, it's possible to dynamically fill the report name for the SUBMIT statement by using something like ...
这样需要用SAP MEMORY或者ABAP MEMORY。在调用程序中EXPORT T_ITAB TO MEMORY 'ZHR_IT0008'.在被调用程序中IMPORT T_ITAB FROM MEMORY 'ZHR_IT0008'.(3)如果数据更多更复杂一些,可以用文件来临时存储数据。 带select-options程序的Submit的用法*Code used to populate 'select-options' & execute reportDATA: ...
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.....
SAP Managed Tags: ABAP Development Advait, Can i do this in ABAP webdynpro method? This doesn't allow parameters internally right? if not what is the optimal way to run my t-code in background? Rgds Vara Reply Former Member In response to Former Member 2009 Jan 29 6:29 PM ...