Do.

SUBMIT Standard 프로그램 수정 안하고 호출 본문

SAP/ABAP

SUBMIT Standard 프로그램 수정 안하고 호출

성공보다는 가치를.. 2022. 7. 20. 09:21
728x90
  cl_salv_bs_runtime_info=>set(
    EXPORTING display = abap_false
              metadata = abap_true
              data = abap_true ).

  SUBMIT rm06el00 WITH listu = listu
                  WITH selpa IN selpa
                  WITH el_ekorg IN el_ekorg
                  WITH s_werks IN s_werks
                  WITH s_ekgrp IN s_ekgrp
                  WITH s_eindt IN s_eindt
*                 WITH SELECTION-TABLE it_selection
                  AND RETURN.

  TRY.
      cl_salv_bs_runtime_info=>get_data_ref(
        IMPORTING r_data = lr_result ).

    CATCH cx_salv_bs_sc_runtime_info.
  ENDTRY.
  cl_salv_bs_runtime_info=>clear_all( ).

출처 : https://answers.sap.com/questions/144440/can-i-submit-the-report-with-selection-table-and-v.html

 

Can i Submit the report with SELECTION-TABLE and Variant. | SAP Community

hi, I have a Small Requirement, IE. I am executing the report me2L from me28. In Every line of me28 one material Code is there i am passing this to me2L report. By using the code.SUBMIT RM06EL00 WITH SELECTION-TABLE it_selection AND RETURN. My question is

answers.sap.com

댓글확인 해보면 나옵니다. 

728x90

'SAP > ABAP' 카테고리의 다른 글

ABAP 동적 구조생성  (0) 2022.07.26
ABAP Debugging에 대한 설명  (0) 2022.07.22
ABAP 7.4 New Future PDF 버전  (0) 2022.07.18
[ABAP] 750 Built-in Functions  (0) 2016.10.26
[ABAP] 740이상에서 지원하는 새로운 문법  (0) 2016.10.26