via selection-screen. 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 i...
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.....
SUBMIT {rep|(name)} [selscreen_options] [list_options] [job_options] [AND RETURN]. selscreen_options:主要是标准程序选择界面Field,通过F1去查看具体Field name 方式一:获取ALV报表结果数据(不局限于严格意义上的ALV Grid、LIST报表也能获取到值),关键代码: SUBMIT TRY. cl_salv_bs_runtime_info=>get_d...
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...
在ABAP中可以用SUBMIT 关键字来实现程序之间的调用,是很好用的一个关键字 (1)调用另一个程序 比如: SUBMIT ZHR_UPDATE_IT0008. "调用更新信息类型0008的程序 (2)一个程序在调用另一个程序的时候,需要进行数据的传递。 一种是被调用的程序的屏幕有输入参数。可以用以下方法来传递数据: ...
SAP ABAP 程序之间的调用 一,同步调用从一个程序同步调用其他的ABAP程序,有2种方式: 1,调用程序被打断,当被调用程序执行完毕之后,调用程序继续执行。如:CALL FUNCTION <function>SUBMIT <program> AND RETURNCALL TRANSACTION <tcode> 使用CALL FUNCTION 'AAA'调用FM的时候,相应的FUNCTION GROUP被加载到调用程序所在...
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, ...
abap submit 的使用方法_SAP刘梦_新浪博客 最近一个需求是从ECC调用BW的报表,使用ecc的搜索帮助和权限检查。使用bw的处理结果。 就在bw写了报表程序,然后在ecc写了一个跳转用的空壳程序,其实就是一个和bw一样的选择屏幕。 然后用rfc函数跳转到bw,执行bw的报表,展示结果。
SUBMIT zreport with selection-table seltab via selection-screen. 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语句 with free selections发现不能传值过去,而使用同样的方式调用FBL5N却能成功,代码如下: submit FAGL_ACCOUNT_BALANCE with free selections LS_TEXPR with selection-table LT_SELTAB and return. 后来通过分析发现FAGLB03除了标准的1000选择屏幕,还有一个未显示的2000屏幕,如下图所示: ...