*当被调用的程序的屏幕有输入参数时:SUBMITzreport with p_param1 ='value1'with p_param2='value2'.*当要传递一个内表到被调用的程序时,需要用SAP MEMORY或者ABAP MEMORY:*在调用的程序中:EXPORTit_tabTOMEMORY'Z_MEMORY'.*在被调用的程序中:IMPORTT_ITABFROMMEMORY'Z_
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...
REPORT ztestACCESSED1.DATA val TYPE i.CONSTANTS:g_memory1(30)VALUE 'JACKYTESTA'.SELECTION-SCREEN BEGIN OF BLOCK blk1.PARAMETERS:p_value TYPE i.SELECTION-SCREEN END OF BLOCK blk1.INITIALIZATION.START-OF-SELECTION.val=p_value+1.IF sy-calld='X'.EXPORT val FROM val TO MEMORY ID g_memory1...
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...
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...
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。
If a basic list is created in the program accessed, aspool requestshould be created with explicit spool parameters by specifyingTO SAP-SPOOL. If this is not done, the additionVIA JOBcreates a spool request implicitly that derives its spool parameters from standard values, some of which are tak...
Report Inappropriate Content 2006 Jul 12 3:47 PM 0 Kudos 449 SAP Managed Tags ABAP Development the selection-table is not the output of the pr2 program but an internal table which has all the selection criteria(all parameters,select-option values) in PR2 program. Itab must be fill...
* parameters to be used in the report loop at pnppernr. seltab_wa-low = pnppernr-low. append seltab_wa to seltab. endloop. SUBMIT zreport with selection-table seltab via selection-screen. 3、带parameters程序的Submit的用法 *Code used to populate 'parameters' & execute report ...