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: 

FBL3N function module

former_member187255
Active Contributor
0 Kudos

Need your help to find the function module of the tcode FBL3N, i found FI_ITEMS_DISPLAY fm but want to make sure, is this the right function module which returns the list of PO's as output.

Do we have any other FM or BAPI which i can use .... Thanks in advance.

10 REPLIES 10

faisal_altaf2
Active Contributor
0 Kudos

Hi,

Please Have a look at the following Threads Hope you will find the answer.

[FI_ITEMS_DISPLAY |]

[bapi fm for FBL3N|]

Kind Regards,

Faisal

0 Kudos

This is the excat function module related to the Tcode FBL3N FI_ITEMS_DISPLAY

Thanks

Bala

0 Kudos

When i debug FBL3N with a break point at the FI_ITEMS_DISPLAY fm, i saw that the data is filled up in the IT_ITEMS table before it reach the FI_ITEMS_DISPLAY fm.

Pls suggest

0 Kudos

Friends,

I need to display a report of Open PO's .. which is similar to FBL3N tcode. can you use the FI_ITEMS_DISPLAY FM.

Thks.

0 Kudos

Hi

FBL3N is for accounting G/L item, fm FI_ITEMS_DISPLAY is to display accountig item only: so it's not for PO items.

U need to create a report by yourself based on ALV output.

Max

0 Kudos

Thanks Max,

I tried to get the list by using SUBMIT RFITEMGL and using FM's LIST_FROM_MEMORY, WRITE_LIST... but the problem is i am not able to get the output into the internal table LISTOBJECT(it comes as RFCRECORD)...Is their anyway where i can read the ALV output ...... and add my custom code in the custom report.

0 Kudos

But

I don't understand what you need to print: FI items or PO (Purchase Order) item?

Max

0 Kudos

Max,

I want both the details.. if i get the list of FI and PO items then i can populate the rest of the required details to display.....

I am trying to get the list of tcode FBL3N into an internal table so that i can populate the other values based on PO and FI items.

Do we have any FM or BAPI .. to get the same output of FBL3N. I tried to write a custom program but its performance is very bad.....

pls suggest

Thks.

0 Kudos

Hi

U can copy the standard program RFITEMGL into ZRFITEMGL and then insert the modification u need to show the PO data.

Then u can call FI_ITEMS_DISPLAY to show the data: but the output table for this fm is based on structure RFPOSXEXT.

If the structure RFPOSXEXT hasn't all fields you need to display, u can replace the FI_ITEMS_DISPLAY with the fm ALV (grid or list).

Max

0 Kudos

Thanks Max... i will work on it....