两个Function module 可以将submit 产生的list 读取并展示。这个例子可以运用到BDC,batch job等批量作业上面。 REPORTytest_0102. DATAlist_tabTYPETABLEOFabaplist. SUBMITytest0101EXPORTINGLISTTOMEMORY ANDRETURN. CALLFUNCTION'LIST_FROM_MEMORY
selscreen_options:主要是标准程序选择界面Field,通过F1去查看具体Field name 方式一:获取ALV报表结果数据(不局限于严格意义上的ALV Grid、LIST报表也能获取到值),关键代码: SUBMIT TRY. cl_salv_bs_runtime_info=>get_data_ref( IMPORTING r_data = lr_alv_data ). ASSIGN lr_alv_data->* TO <lt_alv_da...
SUBMIT zreport EXPORTING LIST TO 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 ...
Submit 'xxx' Exporting List to Memory returns no records for Extractor Go to solution Former Member 2016 Feb 12 5:35 PM 0 Kudos 436 SAP Managed Tags: ABAP Development Hi Gurus, I have created an extractor that remotely calls a report and retrieves data into SAP BW When I...
如果用SUBMIT z_simple_program EXPORTING LIST TO MEMORY AND RETURN.程序会输出calling中的语句,simple程序中的值不会输出,保存在内存中。如果你希望先输出calling中的语句,可以考虑使用GUI status START-OF-SELECTION.WRITE '222'.SET PF-STATUS 'STATUS_1000'.AT USER-COMMAND.CASE sy-ucomm.W...
So every time we use "exporting list to memory" sap fills %_LIST variable in memory for us. But what happen if there is no output from our report? Well it is possible that there will be there some output anyway from previous call to submit! Not possible? Let's give it a try: 1....
I need to submit some report from function module and recieve from that report some table. So I think that I have to submit this way: SUBMIT rep EXPORTING LIST TO MEMORY. now i am not sure how to handle that table which i would like to return from report. I read that i should use...
LIST_FROM_MEMORY – Retrieves the output of a report from memory when the report was executed using SUBMIT。。。EXPORTING LIST TO MEMORY。 See also WRITE_LIST。 MONTH_NAMES_GET – 获得所有的月和名字 *** MS_EXCEL_OLE_STANDARD_OLE – 创建一个文件并自动启动Excel 。 CONVERT...
LIST_FROM_MEMORY – Retrieves the output of a report from memory when the report was executed using SUBMIT。。。EXPORTING LIST TO MEMORY。 See also WRITE_LIST。 MONTH_NAMES_GET – 获得所有的月和名字 *** MS_EXCEL_OLE_STANDARD_OLE – 创建一个文件并自动启动Excel 。 CONVERT...
EXPORTING LIST TO MEMORY AND RETURN. Still its displaying the Alv Report. And program 'ppio_entry', has several INCLUDES, it doesn't have its own code.I am not sure if this make any difference in Submit and Return Clause. I even created ZBDC program and called then using Submit and ...