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: 

Submit program not return data

sri6666
Active Participant
0 Kudos
881

HI Abap Experts,

I have written one submit program from FBL1N transaction and when i run in debugging mode submite program working. but when i run with out debugging my logic is not working i mean its not returning data. looks when i run in debugging there is no memmory issue and same session. but when i run normal mode may be submit program not able return the data from different memory. can you please help me.

my code is like

cl_salv_bs_runtime_info=>set( EXPORTING display = abap_false
metadata = abap_false
data = abap_true ).
"Call FBL1N to get Net due date of documents
SUBMIT rfitemap WITH SELECTION-TABLE lt_selscreen
WITH kd_lifnr-low = r_lifnr-low
WITH kd_bukrs-low = f110v-bukls
WITH x_opsel = 'X'
WITH pa_stida = f110v-laufd
WITH x_norm = 'X'
AND RETURN.
TRY.
cl_salv_bs_runtime_info=>get_data_ref( IMPORTING r_data = lr_pay_data ).
ASSIGN lr_pay_data->* TO <lt_pay_data>.
CATCH cx_salv_bs_sc_runtime_info.
MESSAGE `Unable to retrieve ALV data` TYPE 'E'.
ENDTRY.

1 ACCEPTED SOLUTION

sri6666
Active Participant
0 Kudos
713

AND RETURN EXPORTING LIST TO MEMORY WAIT FOR 1 second

1 REPLY 1

sri6666
Active Participant
0 Kudos
714

AND RETURN EXPORTING LIST TO MEMORY WAIT FOR 1 second