2023 Mar 28 6:36 PM
HI Abap Experts,
I am writing submit program for get Net due date from FBL1N . i am passing Vendors and Company code for open items. like below . but i want to pass Document number which is in dynamic selection. i tried to pass screen field name = document number. but it returns all documents. dynamic selection not working. can some one give the code for pass the dynamic section in submit program ?
SUBMIT rfitemap WITH SELECTION-TABLE lt_selscreen
WITH kd_lifnr-low = i_bsik-lifnr
WITH kd_bukrs-low = i_bsik-bukrs
WITH x_opsel = abap_true
WITH pa_stida = sy-datum "f110v-laufd
WITH x_norm = abap_true AND RETURN EXPORTING LIST TO MEMORY.
2023 Mar 29 8:45 AM
Use the WITH FREE SELECTIONS texpr option of SUBMIT statement.
(Read documentation to use FM FREE_SELECTIONS_RANGE_2_EX to fill this parameter)
2023 Mar 29 8:45 AM
Use the WITH FREE SELECTIONS texpr option of SUBMIT statement.
(Read documentation to use FM FREE_SELECTIONS_RANGE_2_EX to fill this parameter)
2023 Mar 29 7:30 PM
2023 Oct 10 10:41 PM
Hi Sri,
I have a similar issue. Can you please provide sample code. I want to call this report in other report without selection screen and get the data
I tried but it is not working for me. Please suggest
Thanks,
Suman.
2023 Oct 10 10:43 PM
Hi,
I have similar issue.
can you please provide the code
2023 Oct 11 11:17 AM
Try below code.
DATA: trange TYPE rsds_trange,ENDTRY.
2023 Oct 11 12:41 PM