Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

To Retrieve Internal table data in Submit program

chamuk
Explorer
0 Kudos

Hello All,

Am running Standard program "RFSSLD00" as Submit program.

SUBMIT (rep_name)
EXPORTING LIST TO MEMORY
WITH sd_bukrs-low EQ '1000' AND RETURN.

This report will show the data using REUSE_ALV_LIST_DISPLAY Fm in different flavour.

Now i need to access the Internal table data of "gt_output_value" after completing of the submit statement.

I have already tried this way as below, but since LUW will complete after the Submit couldn't access the internal table.

ASSIGN '(RFSSLD00)GT_OUTPUT_VALUE[])' TO <fs1>.
ASSIGN <fs1> TO <fs2>.
IF sy-subrc EQ 0.
it_1 = <fs2>.
ENDIF.

Note: The whole requirement doesn't support of implicit enhancement, so is there any option to achive this.

1 ACCEPTED SOLUTION

raymond_giuseppi
Active Contributor
0 Kudos

(FAQ) perform some search on class CL_SALV_BS_RUNTIME_INFO and how-to prevent ALV display and get back data and layout.

1 REPLY 1

raymond_giuseppi
Active Contributor
0 Kudos

(FAQ) perform some search on class CL_SALV_BS_RUNTIME_INFO and how-to prevent ALV display and get back data and layout.