BKPF fields in Line item report

Hello,
Is it possible to populate BKPF fields like USER NAME, ENTRY DATE & REVERSAL DOC #, in the line item report displayed by using FS10N or FAGLB03?
If it is not possible to display it in line item report, is creating a query the only option?
Any help would be appreciated.
Regards,
-Morgan.

Dear Morgan,
You could not find BKPF fields in standard SAP reports. Query is the best option or going for a Z report.
Regards,
Ajay Gupte

Similar Messages

  • Balance Carry Forward field in Line Item Reports

    Hi Gurus
    The requirement from the client side in my case is to have opening balance in Tr code ZFBL1N, ZFBL3N and ZFBL5N.
    I got the Tables where i could find the Vendor and Customer Opening Balance but i also want Opening 
    Balance for GL.
    and my 2nd query is how to get these opening balance in Z report, at Header Level.
    Thanks and Regards
    Dnyanesh

    Hi there,
    As far as I know, for this type of requirement, custom development may be required?
    Regards

  • See that there is an attachment on a line item report

    Hi
    I wondered if it was possible to include a field on line item reports to show that a there is an attachment to be viewed.  This would be very helpful to users who would then immediately know that a particular posting has an attachment without having to drill into every line to look.
    Thanks in advance.

    If it is just 'knowing' about the attachment, you can use any of the text fields to mention the same.  But if you are tagging the attachment from another process after you process this transaction, then you have to make changes in that upload program to update some field to indicate there is an attachment.  You can use Text ID or XTEXT fields for this purpose, if you are using them anywhere.
    Ravi.

  • AP Line-Item Report for State Auditors

    Dear Members,
    I am preparing one Report named AP Line-Item Report for State Auditors and i need the following fields in my report.
    Check Number                PAYR-CHECT
    Voucher Number             BSEG-BELNR
    Check Date                     PAYR-ZALDT
    Voucher Date                     BKPF-BUDAT
    Vendor Number             LFA1-LIFNR
    Vendor Name                     ADRC-NAME1
    Vendor Street Address     ADRC-STREET
    Vendor City                     ADRC-CITY1
    Vendor State                     ADRC-REGIO
    Vendor Zip Code             ADRC-POST_CODE1
    General Ledger Acct No     BSEG-HKONT
    Purchase Order Number     BSEG-EBELN
    Tax Status Code             BSEG-MWSKZ
    Taxable Amount             BSEG-HWBAS
    Exempt Amount             BSEG-MWSTS
    Tax                                     BSEG-MWSTS
    Tax Accrued                     BSEG-MWSTS
    Total Invoice                      BSEG-DMBTR
    I am new to FI.So I request some one please let me know which datasources contain the above fields and which CUBE is best suited for this.
    Thanks in Advance for help and quick reply is much much appreciated.
    Best Regards
    RC

    0VENDOR_ATTR - Vendor Master Data Attributes
    0FI_AP_51 - Check Register Line Items
    0FI_AP_4 - Accounts Payable Line Items
    It should be noted, however, that this won't get you everything that you need, so you may have to create enhance one or more of these DataSources and create User Exit ABAP code to get the required data. Also, the 0FI_AP_51 DataSource isn't available if your source system isn't ECC6 EHP3 or higher. If your source system is less than that, you're going to have to create a generic DataSource for the data from the PAYR table.

  • How to add the line item text in the Ledger line item report

    Hi SAP Gurus,
    I having one requirement from the user. He wants the line item text which we will enter in FB60/FB70/FB50 has to be shown in the Ledger line item report. Right now this field is not available. Is there any possible we can make this line item text in the ledger line item report i.e. FBL1N/FBL3N/FBL5N?
    advance thanks for the help.
    Regards,
    Deva.

    Hi,
    You can do the below to get this. (You can change the names of the function modules as per your wish/ organization naming convention):-
    Step 1:-
    Create function module Z_GET_SGTXT as below:-
    Import:-
    BELNR LIKE BKPF-BELNR
    BUKRS LIKE BKPF-BUKRS
    BUZEI LIKE BSEG-BUZEI
    GJAHR LIKE BKPF-GJAHR
    Export:-
    PRCTR LIKE BSEG-SGTXT
    FUNCTION Z_GET_SGTXT.
    ""Local Interface:
    *" IMPORTING
    *" VALUE(BELNR) LIKE BKPF-BELNR
    *" VALUE(BUKRS) LIKE BKPF-BUKRS
    *" VALUE(BUZEI) LIKE BSEG-BUZEI
    *" VALUE(GJAHR) LIKE BKPF-GJAHR
    *" EXPORTING
    *" VALUE(SGTXT) LIKE BSEG-SGTXT
    SELECT SINGLE SGTXT FROM BSEG INTO SGTXT WHERE GJAHR = GJAHR
    AND BELNR = BELNR
    AND BUKRS = BUKRS
    AND BUZEI = BUZEI.
    ENDFUNCTION.
    Step 2:-
    Then create the Function Modules as below:-
    Z_LINE_ITEMS_GET_SGTXT (Copy of SAMPLE_INTERFACE_00001650)
    FUNCTION Module Z_LINE_ITEMS_GET_SGTXT.
    ""Local Interface:
    *" IMPORTING
    *" VALUE(I_POSTAB) LIKE RFPOS STRUCTURE RFPOS
    *" EXPORTING
    *" VALUE(E_POSTAB) LIKE RFPOS STRUCTURE RFPOS
    Initialize Output by using the following line
    E_POSTAB = I_POSTAB.
    E_POSTAB = I_POSTAB. "<-- important
    CALL FUNCTION 'Z_GET_SGTXT'
    EXPORTING
    BELNR = I_POSTAB-BELNR
    BUKRS = I_POSTAB-BUKRS
    BUZEI = I_POSTAB-BUZEI
    GJAHR = I_POSTAB-GJAHR
    IMPORTING
    SGTXT = E_POSTAB-SGTXT
    EXCEPTIONS
    OTHERS = 1.
    ENDFUNCTION.
    Step3:-
    Transaction FIBF:-
    Settings -> Products -> of a Customer
    SGTXT Text in Line Item Display Active
    Settings -> P/S Module -> of a Customer
    00001650 SGTXT Z_LINE_ITEMS_GET_SGTXT
    Step 4:-
    Create the layout for FBL*N with display of the TEXT.
    Regards,
    Gaurav

  • Define Additional Fields for Line Item Display

    Dear gurus,
    I'd like to ask for your help again, please. I've just added the field BKPF-USNAM to the list of fields of FBL1N using IMG:" Financial Accounting-> Accounts Receivable and Accounts Payable->Vendor Accounts->Line Items-> Display Line Items->Define Additional Fields for Line Item Display". When I run the report the field is correctly displayed but if I save the current layout and set it into the selection screen, the column appears is blank. And if I open the change layout window and click OK the column gets filled.
    Is there another transaction that I must set new columns to FBL1N.
    Thank you very much.
    Paresh Jivani
    Edited by: Jivani Paresh on Jul 31, 2009 9:16 AM

    Hii,
    When you will execute FBL1N, it will come up in standard format. if you want to see any specific fields,then you have to go to Change Layout button and choose from available fields as per your requirement and then execute.
    For future reference, you can save this layout as a Variant and then you can directly execute that report using that variant.
    Dhara D.

  • WBS Element on AR/AP Line Item Report

    Hi All
    When I run the FBL1n report for a vendor who has a PO which has a WBS element - I dont see the WBS element coming up on the line item report(s).
    Although the field is there on the layout - it is not picking the WBS Element into the report - can anyone please tell me why this is and how I can get this field to fill with values...
    Thank you
    Rukshana

    hi,
    If you had activated Project Cash Management, you can try report CJIA which can substitute the report line item wise list for a particular project or for a Particular Vendor.
    Why the standard system is not showing WBS because, a single Vendor line can be posted against multiple expense so system cannot determine which WBS to be shown in the report so it is left blank in reports, this will be applicable for Purchase order no, Cost Centers, WBS etc.
    As suggested by Suresh you can use the BTE 1650, but it will keep one WBS in the line even you have multiple WBS elements used for the document posting.
    For Ex
    Expense 1 Dr  1000- WBS 1
    Expense 2 Dr  1000- WBS 2
    Expense 3 Dr  1000- WBS 3
    Vendor A Cr    3000
    Against Vendor line item A - it will show WBS 1 alone.As there is no standard solution you can use BTE if your are satisfied with the above example or you have to activate Project Cash management to find the exact reporting but in different reporting structure.
    Thanks and regards
    Praveen.J

  • Line item report with Customer number

    Hi all,
    I am facing the following issue:
    I need a line item report to analyze an accrual account by customer.
    Since the customer is not captured on the accrual account itself, but on the recon. account (which is not defined as line item display), I did not find a way to present the customer and the accrual  on the same line.
    I can always go to BSEG and vlookup and match by document number the accrual account and the customers from the customer recon. account, but I thought maybe someone has a better idea.
    Thanks,
    Yoel.

    If the recon account line items have al lthe info needed I'd suggest using a query (SQ01).
    1. Create an Infoset in SQ02 with logical database "BRM". Choose the fields from BSEG that you need
    2. Create the Query in SQ01 using that Infoset.
    If you want to see individual line items, include the fields you want in the "basic list" of the query. If you want totals by customer, don't include anything in the basic list, but make a "statistics" with customer and amount.
    Selections would habe to be made for account no and period.

  • Vendor line item report in New GL

    Hi
    We have activated New GL. We need vendor line item report based on GL view. FBL1n provides report based on entry view. But we need simillar to FBL1n based on GL view. There is a standard report S_AC0_52000888 which provides vendor line item doucment wise with New GL characteristics such as profit center. However, this report does not provide additional information such as posting date, due date et.c which is available in FBL1n. Hence, we are unable to monitor vendor accounts at profit center level.
    Can anyone suggest how to add additional fields in the above report or any other report available for the same.
    Thanks
    S.Radhakrishnan

    hI
    Thanks for the reply.
    As per your suggestion, we need to bring GL view parameters from FAGL* tables. I need clarification here:
    1. In our case, single line item in BSIK may correspond to multiple profit centers and hence multiple line items in FAGL* tables.
    2. Users run the report for multiple vendors ( beig range) with their profit centers as selection criteria.
    3. In the above case, we need to select all the line items for that vendor and go to FAGLFLEXA and select all line items and delete all line items not pertaining to the profit center entered as selection.
    4. The above process would be time consuming since all the open items will be selected and then delete all those items which are not required.
    5. Else, can we select the items from FAGLFLEXA directly for the profit centers entered and bring additional information from BSIK table. Since vendor accounts are not there in FAGLFLEXA, it would be cumbersome and time consuming.
    6. Which of the above approach would you recommend.
    7. Is it possible to modify the ACO report so that we can add additional information such as posting date, due date etc.
    Regards
    S.Radhakrishnan

  • Vendor line item reports

    In vendor line item reports I want plant field.
    How can I add this field to my report screen. In my dynamic selections it is not available.
    thanks and regards

    Hi,
    If a field in FBL1N is not filled it might be because the field has to be created as a special field.
    In the Line item Display list in FBL1N follow this menu path: Settings -> Special fields, and add the fields you want from relevant table.
    The fields are later available for display,and you can choose them from the Line item Display list following this menu: Settings -> Display variant -> Current. From the hidden list you can now choose the fields you want to have shown. If the technical name is shown for the fields, the special fields are all starting with '1-U_'. It's important, that you add the Special field, if the field also exist as Standard field.
    The Special fields are shown in the buttom of the Hiddden list.
    Please also read the solution part of note 215798 for some very import- ant steps to be aware of.
    But, for having a field shown in the vendor Line Item Display (FBL1N) the field has to exist in the vendor Line Item. If this is not the case, you will evt. be able to see the field in FBL1N by using Offsetting account info.
    Check if field WERKS is in the structures RFPOS and RFPOSX. If not, then you need to add the field to the structures RFPOS and RFPOSX. When the structures have been extended with the field then you need to run the reports  RFPOSXEXTEND and BALVBUFDEL (in the same way as seen in the solution part in note 215798).
    Please assign points if it useful
    Regards
    Ravinagh Boni

  • Offsetting account in Vendor, Customer and GL line item report

    Hi All,
    There is one requirement from our client. They want offsetting account in Vendor, Customer and GL line item report.(FBL1n, FBL3n and FBL5n).
    As this field is there in selection screen in lay out setting but field coming as blank no off setting account is coming. It was coming in old SAP 4.7 system but same is not coming in ECC6.0.
    Kindly let me know if any development is requirement, if yes than which tables we have refer for the same.
    Thanks and Regards,
    Abhinav Sharma

    Hi Abhinav,
    There is a SAP not and you can refer to that - SAP OSS note 112312
    T.Code: FIBF
    After entering in above T.code
    Follow Path
    Settings  Products of a customer
    Product   : XXXX
    Text        :  XXXX
    Active     :  Tick it
    Click on Back i.e. F3
    Follow Path
    Settings >P/S Function Modules > of a customer
    Event: 00001650
    Product: XXXX
    Function Module: LINE_ITEMS_GET_GKONT
    Now Go to FBL3N display of any account
    After opening the account display click on Change Layout i.e. CTRL+ F8
    And Select
    Offsetting A/C Type & Offsetting A/C no.
    Regards,
    SAPFICO
    Edited by: SAPFICO on Dec 1, 2010 8:26 AM

  • Customer and vendor line item report FBL5N/FBL1N

    Dear all,
    Could you please let me know, whether there is any way that we can get cost center ans wbs element in customer and vendor line item report FBL1N/FBL5N.
    REgards,
    Suresh Patipati.

    Hi Suresh
    Through BTE1650 you can fetch it . for this you have to  do some development.
    You can add additonal field to FBL*N reports with using BTE exit.
    Regards
    SAP student

  • "Always Use Selected Format" check box in line items report

    Hi Experts,
    I have an issue in ECC 6.0.
    From the transaction code FBL1N (Vendor Line Items) I am trying to export the report to spreadsheet by selecting the option  List> Export>Spreadsheet  then I have selected "Always Use Selected Format" check box.  But if I execute the same report again I am not getting this option "Always Use Selected Format". Please let me how can we retrieve that option. Is there any possibility to get that option again either functionally or technically. I would like to know all the possible ways to get this option again.
    Please do the needful.

    Hello,
    In one my thread Mr. Frank has replied as follows. I believe he has solved this.
    Hope this may be really helpful.
    The problem with the spreadsheet download is at one point, users have selected their default file type.
    That said, SAPGUI is working as it should. (gui710)
    Question though is how do we reset the values so they get the ?Select Spreadsheet Format? popup again.
    The following steps should be performed :
    - Call transaction SE38, enter program SALV_BS_ADMIN_MAINTAIN, and press F8.
    - Follow the parameters below :
    - Select ?DELETE? on the Actions Group
    - Select ?DETAILED SELECTION? on the General Data :
    - On Client - your number
    - User : <user name>
    -Hit EXECUTE.
    -Press ENTER on the POPUP
    - If there is an entry in the report that will need to be deleted. Also, make sure that the entry you will delete (for the user) has a value of GUI_ALV_XML_VER on field ?Parameter? .
    - Select the line and hit the DELETE icon .
    - Press ?Y? to continue delete. Press ENTER on the popup.
    - Then EXIT all the way out of the program.
    NOTE : When you run program SALV_BS_ADMIN_MAINTAIN, make sure they are out of any program that they are using for download.
    Re: "Always Use Selected Format" check box in line items report
    Regards,
    Ravi
    Edited by: Ravi Sankar Venna on May 15, 2009 2:31 PM

  • BP number in GL Line Item Report

    Hello Gurus,
    Is there a way to view BP number in GL Line Item Report FBL3N ? I went through the dynamic selection, but didn't see any option for BP. My client wants to see BP info in certain GL accounts without referring back to treasury transactions.
    Thanks in advance,
    Pal

    Hi,
    Unfortunately, there is no standard linkage to BP in FI document postings.  You can see the customer number if there is one and then link it to the BP.  But in case you want to see it at the G/L item level, then 1 thing you can do is have a custom code through BADI_TRM_ACC and fill the BP number to assignment or reference field.  This way you can check it in the accounting document item.
    Regards,
    Ravi

  • Profit center - actual line items report

    < MODERATOR:  Message locked.  Please post this message in the [Controlling forum|SAP ERP Financials - Controlling;. >
    hi,
    i am trying to excute ke5z, profit center actual line item report. it does not show any values even if i am running it wide open, I am testing this in our quality client, we have data all of 2008 posting to profit centers. i
    is there some kind of config involved in this.
    please let me know if anyone has an idea.
    thanks.

    Are you absolutely sure there are no values in any of the fields in selection screen?  Recheck if any of the multiple selections (arrow at the end of each field) is active?  Are you running it for record type 0 (actual) - you did say you are running it wide open, but I am just trying to reconfirm.
    Just another think that you could check - when you are in the initial screen of KE5Z, go to Extras -> Data source (F5) from the top menu and make sure Database checkbox is checked.
    Edited by: Srikanth Tamma on Sep 22, 2008 6:46 PM

Maybe you are looking for