Application Development and Automation 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: 
Read only

Parameter in FI_ITEMS_DISPLAY

Former Member
0 Likes
1,485

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

1 ACCEPTED SOLUTION
Read only

pavanm592
Contributor
0 Likes
880

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

1 REPLY 1
Read only

pavanm592
Contributor
0 Likes
881

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