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: 

function for result of FBL1N

Former Member
0 Kudos
1,392

Hi,

I need to know the executed result of the Tcode FBL1N, can anybody tell me?

Thks.

Best Regards

Dana

1 ACCEPTED SOLUTION

former_member598013
Active Contributor
0 Kudos
405

Hi Dan,

This program lists vendor line items

Selection button Status:

Open items:

Items that were posted by the key date, and then cleared, or which have not yet been cleared. The current date is proposed as the key date. If the field is empty, the system still defaults the current date. If you enter an earlier date as the key date, you can also select items that have been cleared since that date.

Cleared items:

Items that have been cleared by the current date. You can make a further restriction by entering a clearing date and a key date.

All items:

Open and cleared items.

5 REPLIES 5

former_member598013
Active Contributor
0 Kudos
406

Hi Dan,

This program lists vendor line items

Selection button Status:

Open items:

Items that were posted by the key date, and then cleared, or which have not yet been cleared. The current date is proposed as the key date. If the field is empty, the system still defaults the current date. If you enter an earlier date as the key date, you can also select items that have been cleared since that date.

Cleared items:

Items that have been cleared by the current date. You can make a further restriction by entering a clearing date and a key date.

All items:

Open and cleared items.

raymond_giuseppi
Active Contributor
0 Kudos
405

What do you mean with "I need to know the executed result" ?

You may call the report via [export to memory|https://forums.sdn.sap.com/search.jspa?objID=c42&q=exporttomemorsubmit], or access the logical database behond via FM [LDB_PROCESS KDF|https://forums.sdn.sap.com/search.jspa?threadID=&q=LDB_PROCESSKDF&objID=c42&dateRange=last90days&numResults=15&rankBy=10001] or access the secondary indexes [BSIK, BSAK|https://forums.sdn.sap.com/search.jspa?threadID=&q=BSIK+BSAK&objID=c42&dateRange=last90days&numResults=15&rankBy=10001]

Regards,

Raymond

0 Kudos
405

Hi,

First thanks for your replys.

I mean that I need to deal with the result of FBL1N, if I get data from the database, I worry about the completeness of data, so I want know if there is any function for the the result of FBL1N.

Hope for your replys. Thks.

Best regards

Dana

0 Kudos
405

This report use the FI_ITEMS_DISPLAY fm with data in a RFPOSXEXT structure. So you may fill the structure from database (or LDB) and complete it via the FM ITEM_DERIVE_FIELDS. (look for a sample in report RFAPRE_ITEMS or RFITEMAP)

The easiest way is to duplicate RFITEMAP to a Z-report. (don't copy include but keep the standard ones, and change the code from the call of FI_ITEMS_DISPLAY)

Regards,

Raymond

0 Kudos
405

It worked fine for me, thanks!