SUBMIT zreport with selection-table seltab via selection-screen. 带parameters程序的Submit的用法 *Code used to populate 'parameters' & execute report SUBMIT zreport with p_param1 = 'value' with p_param2 = 'value'. 其他情况 *Submit report and return to current program afterwards SUBMIT zreport...
SUBMIT{rep|(name)}[USING SELECTION-SCREENdynnr][VIA SELECTION-SCREEN][USING SELECTION-SETvariant][USING SELECTION-SETS OFPROGRAMprog][WITH SELECTION-TABLErspar]{[WITHsel1{{{EQ|NE|CP|NP|GE|LT|LE|GT}dobj[SIGNsign]}|{[NOT]BETWEEN dobj1 AND dobj2[SIGNsign]}|{IN rtab}}][WITHsel2{{{EQ...
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 scree...
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 scree...
SAP Managed Tags: ABAP Development I have declared select option as data : g_blart type mhnd-blart. types: t_blart like RANGE OF g_blart. SELECT-OPTIONS: s_blart for g_blart. in Zprog. and I want to call this using SUBMIT programname VIA SELECTION-SCREEN WITH SELECTION-TABLE...
SAP Managed Tags: ABAP Development Hi Experts, I want to call a report program z_progm2 in my current program z_progm1. While calling I have to pass the selection-screen values on z_progm1 to z_progm2. So I thought of using "WITH SELECTION-TABLE" option in SUBMIT as below ...
I have a SAP standard program SDRQCR21 which has select-option S_DOCUS. I have written a custom program ZABCD where in I am extracting the data from VBBE and VBUK tables for getting the sales orders and passing it to the selection screen of SAP standard program. Till here it is working...
SELECTION-SCREEN ENDOF BLOCK b1. 在提交时,我们可以使用“SUBMIT”语句来执行相应的ABAP程序。并使用“WITH SELECTION-TABLE”子句传递选择表,该表包含用户在自由选择范围内输入的参数值。 abap SUBMIT program_name WITH SELECTION-TABLE s_table. 在上述示例中,“program_name”是要执行的ABAP程序的名称,而“s_...
SAP Managed Tags: ABAP Development ABAP Development Programming Tool View products (1) Hi, From my program iam submitting to RSNAST. The sumbit statement is as follows. SUBMIT RSNAST00 VIA SELECTION-SCREEN WITH S_KAPPL IN S_KAPPL WITH S_OBJKY IN S_PONUM WITH S_KSCHL IN S_KSCHL...
SAP Managed Tags: ABAP Development Hello All, I have two ABAP reports : Report A & Report B. Report A has selection screen similar to Report B, where report A needs to send data to selection screen of Report B. Report B should be processed displaying its list display & should return ...