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
ABAP:SUBMIT执行其他报表并返回的数据 有些情况我们需要取一些标准报表的数据,如果自己重写比较复杂,用SUBMIT … AND RETURN可以调用标准报表并获取获取返回值。 参考:ZEROTEST69 语法:SUBMIT [程序名] WITH [调用程序屏幕的参数名]IN/= 值 AND RETURN 加上EXPORTING LIST TO MEMORY 将程序返回的alv输出到MEMORY可以...
* Once report has finished and control has returned to calling * program, use function modules LIST_FROM_MEMORY, WRITE_LIST and * DISPLAY_LIST to retrieve and display report. *Example Code (Retrieving list from memory) DATA BEGIN OF itab_list OCCURS 0. INCLUDE STRUCTURE abaplist. DATA END ...
cl_salv_bs_runtime_info=>set( EXPORTING display = abap_false metadata = abap_false data = abap_true ). CLEAR lr_alv_data. UNASSIGN <lt_alv_data>. SUBMIT rm07mlbd "MB5B特殊库存及搜索条件 WITH matnr IN so_matnr WITH werks IN so_werks WITH lgort EQ so_lgort-low "循环获取每个库存...
AND RETURN关键字在一个新的内部会话中运行程序。调用程序和当前的SAP LUW会保持存在,被调用程序运行它自己的SAP LUW,一旦程序访问结束,程序将继续执行SUBMIT语句之后的内容。 在SUBMIT后如何获取数据 对于获取某些既有ALV报表数据的需求,可以使用submit来满足,并且不需要修改既有报表程序的代码。
*Trigger the IDOCSUBMITzpcppmd001_idocANDRETURN. (2) 调用其他程序参数传递参数: *当被调用的程序的屏幕有输入参数时:SUBMITzreport with p_param1 ='value1'with p_param2='value2'.*当要传递一个内表到被调用的程序时,需要用SAP MEMORY或者ABAP MEMORY:*在调用的程序中:EXPORTit_tabTOMEMORY'Z_MEMORY...
sign]}|{[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][ANDRETURN]....
SAP Managed Tags: ABAP Development I want to create a report and need to call the report program AUT_REP10 in this program using submit and return. Transaction is AUT10. When I tried to call using submit with parameters exporting list to memory and return, it is showing the below dump...
SAP Managed Tags ABAP Development HI, I have to submit to two reports from my ABAP report, one after the other. Now, after submitting to the first ABAP report, suppose there is some problem with the selection paramters and user plans to exit out, so he presses on the back button, this...
executed. SUBMIT … AND RETURN creates a new internal mode . ———- Addition 6 …EXPORTING LIST TO MEMORY Effect Does not display the output list of the called report, but saves it in SAP memory and leaves the called report immediately...