‎2014 Oct 17 6:48 AM
Hi Experts,
I want to extract the table after execute the following screen in FBL3N.
I tired to use FM 'FI_ITEMS_DISPLAY'.
However, I am not sure how to pass the above parameters into the FM.
May I request some hints?
Best Regards,
King
‎2014 Oct 17 7:26 AM
Hi,
You can do one thing Copy the program RFITEMGL in to custom one and comment the code for displaying the alv and export the it_pos table to memory id .
After doing this call that report in your program by using SUBMIT Report like below
SUBMIT <Custom Copy of RFITEMGL >
WITH SD_SAKNR in < Fill the G/L Account From select option>
WITH kd_bukrs in <from Sel>
WITH SO_BUDAT IN <From The Selection Screen>
WITH X_AISEL = 'X'
WITH x_norm = 'X'
WITH x_shbv = 'X'
WITH p_call = 'X' AND RETURN.
after this call Import the table IT_POS from Memory ID and process based on your requirement
Hope this will help.
Regards,
Pavan
‎2014 Oct 17 7:26 AM
Hi,
You can do one thing Copy the program RFITEMGL in to custom one and comment the code for displaying the alv and export the it_pos table to memory id .
After doing this call that report in your program by using SUBMIT Report like below
SUBMIT <Custom Copy of RFITEMGL >
WITH SD_SAKNR in < Fill the G/L Account From select option>
WITH kd_bukrs in <from Sel>
WITH SO_BUDAT IN <From The Selection Screen>
WITH X_AISEL = 'X'
WITH x_norm = 'X'
WITH x_shbv = 'X'
WITH p_call = 'X' AND RETURN.
after this call Import the table IT_POS from Memory ID and process based on your requirement
Hope this will help.
Regards,
Pavan