Display GL Account Short Text in FBL3N report line

Dear all,
I have one issue here. I would like to display the GL Account Short Text while executing report FBL3N.By default system will display each GL account and it's short text at the header before the list of all entries for the specific GL account. But user would like to have it at every line item (in the table line) in the report. This is because they need it during excel extraction.
May i know how do i go about this?
Many thanks.

Hello,
Please check the following.
You cannot assign vendor or customer number to sales/purchase GL account with standard settings.
You must do some development for it.
You can add additional field to FBL*N reports with using BTE exit.
First of all, if you don't use BTE before, you must create a product on FIBF.
Call FIBF transaction -> Settings -> Products -> ...of a customer
Create a new line,
Product: ZFI
Text: BTE Products for FI Exit
Product active: tick checks from activation.
Then you must call SE11 for structure RFPOS.
You must use append structure function for this structure and you can define ZFI_RFPOS append structure
Define 4 fields.
Component: KUNNR - Component type: KUNNR
Component: NAMED - Component type: NAME1
Component: LIFNR - Component type: LINFR
Component: NAMEK - Component type: NAME1
Then save and active your RFPOS structure.
After that, you must do same step for structure RFPOSX.
Then go to SE37 and copy from SAMPLE_INTERFACE_00001650 to ZFI_INTERFACE_00001650 FM.
After copy action, you must uncomment this line on ZFI_INTERFACE_00001650 FM's source code. It's very important;
E_POSTAB = I_POSTAB.
Then you should add some ABAP code for getting customer & vendor details.
I give you some examples, you can use it. (Next message on this thread, please check)
Then save and active FM.
Call FIBF transaction again.
FIBF -> Settings -> Process Modules -> ...of a customer
Define a new line.
Process: 00001650
Function Module: ZFI_INTERFACE_00001650
Product: ZFI
and this customizing.
Then you go to SE38 transaction.
start report RFPOSXEXTEND. After starting, a pop-up appears, you must click YES.
After those operations, you can see customer/vendor code and their names on FBL3N.
ABAP source example,
TABLES : bseg, kna1, lfa1.
IF sy-tcode = 'FBL3N'.
  CLEAR: bseg.
  SELECT SINGLE *
  FROM bseg
  WHERE bukrs = i_postab-bukrs
       AND belnr = i_postab-belnr
       AND gjahr = i_postab-gjahr
       AND koart = 'K'.
  IF sy-subrc EQ 0.
    e_postab-lifnr = bseg-lifnr.
    CLEAR: lfa1.
    SELECT SINGLE *
    FROM lfa1
    WHERE lifnr = bseg-lifnr.
    IF sy-subrc EQ 0.
      e_postab-namek = lfa1-name1.
    ENDIF.
  ENDIF.
  CLEAR : bseg.
  SELECT SINGLE *
  FROM bseg
  WHERE bukrs = i_postab-bukrs
       AND belnr = i_postab-belnr
       AND gjahr = i_postab-gjahr
       AND koart = 'D'.
  IF sy-subrc EQ 0.
    e_postab-kunnr = bseg-kunnr.
    CLEAR: kna1.
    SELECT SINGLE *
    FROM kna1
    WHERE kunnr = bseg-kunnr.
    IF sy-subrc EQ 0.
      e_postab-named = kna1-name1.
    ENDIF.
  ENDIF.
ENDIF.
Rgds
Murali. N

Similar Messages

  • FB03 - Increase length of the field "Account Short Text" in FB03

    Dear Expert!
    I understand that Tcode: FB03 is SAP standard tcode. However, i just want to ask, is it possible to increase length of the field "Account Short Text" to 42 characters in FB03? Because my vendor/customer name is quite long, and when i view via FB03, the field "Account Short Text" only displays 20 characters, not full vendor/customer name. Unless, i double click on the line item, then i can see full vendor/customer name. But i want the "Account Short Text" field can display full vendor/customer name.
    Is that possible?
    Thank you very much.
    LeLinh

    Hi,
    there's a matadata table behind it RFPSD and for Account short text field KTEXT is used, which in fact has a length of 35 chars.
    But on the other hand there's also a filed KTEXT_GL (G/L Account Short text) which is maybe applied here. It has a length of 20.
    You can do some more checks on program to clear it finally
    Regards

  • Adding work order short text to KSBB report

    Presently, our budget administrator runs various KSBB reports for showing budget/actuals. For instance, you run the report <i>Plan/Actual Comparisons -> Additional Ratios -> Cost Centers: Act./Plan/Commitments</i>.  Then you drill down into the actual line items for the one of the material settlement cost centers. One of the fields in the resulting report is called "Partner Order" and it shows the work order associated with the line item.  Of course, the work order can be displayed in IW33.
    What I would like to do is show the work order number short text [description] either along with the work order number or instead of it.  I know the work order number ties back to the AUFNR field in the view CAUFV, and the short text goes back to the field CAUFV-KTEXT.  What I don't know is how to get KTEXT onto the KSBB report.  I'm sure I will have to customize the report, but I don't know where to start.
    Anybody have any ideas?  Thanks in advance.
    We are running 4.7 Enterprise (Basis 620) with FI, CO, MM, PM, PS, and HR/PY.

    Hi!
    After you have chosen the report and you are on the selection screen, you have to determine its technikal name. For this, choose environment - techikal information menu.
    Report group is what you need.
    Then go to GR55 transaction to modify the report group.
    Because these are not exact ABAP program, I don't know how can you read (select) data from caufv, but you might try it.
    OR! You can copy the program. The program name is also in the technikal data panel, its like this: GPC3IL91J3FDQJFRDFHTFNJSIKF040
    Give more human name to it and you can write your ABAP code into it.
    Regards
    Tamá

  • CL_SALV_TREE not displaying medium and short text

    Hi All,
            Is it possible to get the medium and long text to be displayed using SALV TREE(CL_SALV_TREE)? I have searched the forums and got the below information. Is there any other way?
    [CL_SALV_TREE;
    [http://www.sapfans.com/forums/viewtopic.php?f=13&t=351428]
    Regards,
    Srikanth.

    It looks like a Bug. This method COMPLETE_METADATA_TREE of the class CL_SALV_CONTROLLER_METADATA is responsible for setting up the column headings. The code lines in the methods are:
      field-symbols: <fcat> type LVC_s_FCAT.
      loop at t_fieldcatalog assigning <fcat>.
        if not <fcat>-scrtext_s is initial.
          <fcat>-coltext = <fcat>-scrtext_s.
        elseif not <fcat>-scrtext_m is initial.
          <fcat>-coltext = <fcat>-scrtext_m.
        elseif not <fcat>-scrtext_l is initial.
          <fcat>-coltext = <fcat>-scrtext_l.
        endif.
        <fcat>-seltext = <fcat>-coltext.
      endloop.
    So the work around would be, you set all of the other heading text to blank. Like if you want the Medium text, set Short text as blank. If you want the long text, set both Short and Medium text to blank.
    * Will generate column heading from Long Text.
      lr_column = ir_columns->get_column( 'CONNID' ).   
      lr_column->set_short_text( '' ).
      lr_column->set_medium_text( '' ).
    Regards,
    Naimesh Patel

  • To Display the whole long text on a report display

    Hi All,
    Pls let me know how can i display the full long text in a column of a report display. I am getting the long text from the function module READ_TEXT.
    This is very urgent
    Thanx in advance
    Suresh

    Do you have a fixed column width.  If so, do you want to break the text up into lengths of that fixed length.
    Example...
    <b>Sales Order  Item  Material  Long Text</b>
    123456       10    6000000   This is the long
                                 text of the material
                                 6000000 for the
                                 sales order 123456.
    Regards,
    Rich Heilman

  • No line item display in FAGLL03 & FBL3N GL line Item reports

    Dear All,
    I have parked the customer invoices with normal customer recon account and with special GL indicators. The system do not display parked lines for Special GL indicators. How can i display the line item display information in FAGLL03 and in FBL3n report.
    Following settings have already been made are;
    1. Fs00 = line item display check is on.
    2. In initial screen for FAGLL03 & FBL3N Selection: Parked Items Parked items are displayed and checked.
    The  only information for parked special gl line items is get through FBL5N report only.
    Kindly suggest in there any way that we can get report from GL line Item reports???
    Regards

    Some how client do not want the functionality

  • WebDynpro ABAP - Display Short Text instead of values in table column.

    Hi WebDynPro Experts,
        i have Column in a table which displays subject. This column has domain associated ZDE_SUBJECT with fixed values & short text
    Fix.Val    Short Text
    01             Level 1
    02             Level 2
    03             Level 3
    04             Level 4
    05             Level 5
    when i bind this cloumn to a table UI element. And have records for this table. At runtime inside the table column. i see values returned as 01, 02 , 03 ( basically fix val) my requirement is to display the corresponding short text. Is there any easy approach to do this???

    Hi Prash
    I think you need to bind the short text values  to the table UI.
    I am not sure if there is any other easy approach for this.
    Regards
    Naresh

  • Display Sales Quotation Row Text in SAP Standard Report

    Dear Experts,
    I need to display sales quotation row text in crystal report.
    S.no    Item Code  Item Des   Qty    Price
    1        AAA           AAAAAA     1      100
    2        BBB           BBBBBB     5      200
    3          CCCCCCC---->Row Text    800
             qqqq           qqqqqqqq    1       100
             www           wwwww     5       500
             eeee            eeeeee      2       200
    4      DDD           DDDDD      1      100
    I need to display in crystal report above format
    Please help me how to do this...Very Urgent...  

    Well - it's a report so there won't be a user exit. I think your options are what the others (and you) have suggested - change the standard program or make a copy.
    There are different opinions on the forum about which to do.
    Rob
    PS - you're not bothering anyone. We like problems.
    Message was edited by: Rob Burbank

  • Offset account Description in fbl3n report

    Hi,
    I have used the BTE 1650 (Standard Functionality) and brought the values of Offset Accountnumber (GKONT) & Offset Account Type (GKART)  in fbl3n report... now the user want to add additional field " offset account description" in the same fbl3n report.. I have gone through the below link
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30b96fed-eb5d-2e10-1792-f3ff9f65df8a?QuickLink=index&…
    but am not getting the logic of adding additional filed "offset account description".. Plz suggest how to create the component, and component type..
    Plz let me know the the highlighted " ZOFFSET DES" how to create
    Thanks

    First read documents like Note 984305 - Line item: Definition of special fields (T021S) and Note 1323512 - Line items: BADI FI_ITEMS_CH_DATA, add missing standard fields via Customizing in T021S or use an append for other fields as described in the note and Customizing documentation. (NB: The BAdI is better for performance, as it manages the full internal table, when BTE is called for each item)
    Then append your zz fields to RFPOS AND RFPOSX  and execute report RFPOSXEXTEND.
    Regards,
    Raymond

  • To download the GL 140881 with the colums VENDOR CODE & TEXT in FBL3N

    Hello Exports
    My user trying to download the GL 140881 with the colums VENDOR CODE & TEXT in FBL3N
    In the columm of Vendor code and Text he wants to Display in the respective filed
    before that he has done transaction IN MIRO
    The Entry is
    PK Account    Account short text         Tx Cost Ctr   Order                  Amount
    31 35774      FRICTION ENGINEERS   4I                                        30.375,00
    86 310891     GR-IR clear-RM/Comp    4I                                       13.500,00
    86 310891     GR-IR clear-RM/Comp    4I                                       13.500,00
    40 140881     VAT RECOVERABLE    4I                                       1.687,50
    40 140881     VAT RECOVERABLE    4I                                        1.687,50
    in this he wants disply VENDOR CODE & TEXT in FBL3N for 140881 G/L A/C (VAT RECOVERABLE    )
    But i tryed it by table wise like BSEG and LIFNR but its displys only filed name but it not displaying the VENDOR CODE & TEXT in the respective filed
    Can you please give suggesstion on the same
    Thanks and Regards
    vamsi

    Dear,
    Check the following ink -
    Re: Vendor & Customers in FBL3N
    regards,
    Gov

  • To download the GL 140881 with the colums VENDOR CODE & TEXT in FBL3N   Pos

    Hello Exports
    My user trying to download the GL 140881 with the colums VENDOR CODE & TEXT in FBL3N
    In the columm of Vendor code and Text he wants to Display in the respective filed
    before that he has done transaction IN MIRO
    The Entry is
    PK Account Account short text Tx Cost Ctr Order Amount
    31 35774 FRICTION ENGINEERS 4I 30.375,0086
    310891 GR-IR clear-RM/Comp 4I 13.500,0086
    310891 GR-IR clear-RM/Comp 4I 13.500,0040
    140881 VAT RECOVERABLE 4I 1.687,5040
    140881 VAT RECOVERABLE 4I 1.687,50
    In this he wants disply VENDOR CODE & TEXT in FBL3N for 140881 G/L A/C (VAT RECOVERABLE )
    But i tryed it by table wise like BSEG and LIFNR but its displys only filed name but it not displaying the VENDOR CODE & TEXT in the respective filed
    Can you please give suggesstion on the same
    Thanks and Regards
    vamsi

    yes i got a solution
    Thanks for all
    vamsi

  • How to get the short text in tcode "msc3n" -- Basic data 2 -- short text.

    I have to display the short text in my report output.
    How to get the short text in tcode "msc3n" ( msc3n --> Basic data 2 --> short text.)?
    Is there any function module availble to get this short text or is this stored in any data base table ?
    Please help me. Your help will be highly appreaciated.
    THANKS.

    Hi,
    Use FM 'READ_TEXT' to get this values.
    Say for exampele my material is  1900001 and batch is 0000000517.
    Then my parameters to the FM will be as follows:-
    Text Name       000000000001900001    0000000517
    Language        EN
    Text ID          VERM
    Text Object     CHARGE
    This information you can get as follows.
    Open the short text window in the text editor.
    Here you can enter the long text.
    In the editor Go to Header and you will find the details.
    Please note that the text name will comprise of
    Material
    Batch
    Plant
    Stor. Location
    if all the details are given.
    I hope this helps you.
    Regards,
    Ankur Parab

  • GL short text/ long text

    Hi guys,
    Is it possible to display both GL short text and GL long text while performing transactions.
    Normally the long text is only displayed.
    Is it also possible to display the short text.
    Thanks,
    Srikanth.

    hi
    standard SAP does not have this functionality

  • Domain bindings doesn't show short text of domains

    Hello forum,
    I am facing a problem in a bsp view. I want to create a dropdownListBox where the values displayed are the short text values in the domain.
    I found a SDN guide (https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/72d7ac11-0501-0010-63a2-cc6960569926) where they are demonstrating this feature.
    In my views only the Fix. Val. gets displayed, not the Short Text.
    Here is the coding... any ideas what I am doing wrong?
    <htmlb:dropdownListBox id         = "user_type"
                                 selection  = "//model/user.user_type"
                                 helpValues = "//model/user.user_type" />
    Thanks,
    Chris

    I have only used Acrobat Pro, not Standard. Does Standard have a Content Pane? If so, I would try selecting each content element on the page till I found the image, and drag it above the text elements in the content order.
    Hope this helps.
    a 'C' student

  • To display line item text in FBL3N as it is displayed in FBL1N

    Hi Experts,
    Though the subject line presumes it to be a redundantly asked question but I could not comprehend the exact solution of this. So posting my entire scenario in a hope to get an effective response.
    Scenario: -
    We are not able to see the text when we run GL account balances. The text is maintained in the field text (in Basic data) and PO text (in fields PO Reference) . Now when you use transaction FBL1N to see vendor Open items, you can see the text (line item text) but the same is not seen when we run FBL3N (GL Account Line Items).
    In Technical (simpler) terms: -
    When we display an invoice using MIR4 say invoice number is 123456 (Vendor - 4567, GL account - 78946) , we can see line item text maintained there in field "Text" in Basic data tab. Now run transaction FBL1N for vendor 4567, text (BSEG-SGTXT)  is displayed in line item text. But when we run FBL3N text (BSEG-SGTXT) is not seen.
    How to display the line item text in FBL3N as well ?? In my initial manouver of SDN forum, i found solutions like BTE and pointers to substitutions. Kindly let me know a probable solution.
    Thanks a lot in advance.
    ~
    Shreya

    Hi,
    program RFITEMGL calls fm FI_ITEMS_DISPLAY thus:
      call function 'FI_ITEMS_DISPLAY'
        exporting
          caller_repid  = c_repid_gl
          acctype       = c_koart_gl
          x_opvw        = x_gl_opvw
          x_change      = x_change
          i_u_save      = gd_alvsave
          is_u_variant  = gs_variant
          it_u_fieldcat = gt_fieldcat[]
          it_kontab     = it_accts[]
          it_slbtab     = it_comps[]
          it_t001       = it_h_t001[]
          it_skat       = it_h_skat[]
          it_skb1       = it_h_skb1[]
          x_grid        = x_grid
          x_inet        = pa_inet
        tables
          it_items      = it_pos.
    where c_koart_gl     like bseg-koart  value 'S'.
    BSEG-SGTXT has value when BSEG-KOART = 'K' and this might be the reason why it is not displayed.
    It seems the report only displays records with BSEG-KOART = 'S'.
    Best regards.

Maybe you are looking for

  • How to share audio with other members of a meeting?

    Hi, I want to share a video with my class but my student cannot hear the video since they only receive audio from my mic. I was wondering if there is a way I can share what I am hearing. If someone can provide me with instruction on how to do this I

  • How to use RIPEMD-160 with CL_ABAP_MESSAGE_DIGEST

    Hi *, I want to generate a RIPEMD-160 hash value with CL_ABAP_MESSAGE_DIGEST . I wrote a short test report ( see below ) and with e.g. SHA512'. or MD5 the logic works fine. But it dosn't work with RIPEMD-160 . In the system there is loaded / integrat

  • WARNING: Toshiba Maintenance Utility

    Be careful of the Toshiba Maintenance Utility. Its sole purpose is to delete all the partitions on your hard drive! You'll find it on the Troubleshoot screen in the Windows Recovery Environment. -Jerry

  • Looking for a way to get bass line tracks...

    I am trying to become a more serious drummer. I haven't sat down at a set since I joined the Army four years ago. I want to get back into it. I had a good friend that played bass and I feel most comfortable playing when all I hear is the bass. What I

  • This Is the Best Adsl Router

    The billion 7800n is an awsome Router for all,it`s a little technical but once understood this will help your connection to BT broadband, see some info in setting up SNR http://www.spaldwick.com/broadband/billion-7800n