GL account description table

Hi guys,
I need to extract the GL account description ( GL account long text ) for a large number of accounts.
Is there any table where i can input the GL accounts and get the GL descriptions for all the accounts.
Thanks,
Srikanth.

HI,
Tcode: SE16
table :  SKAT
G/L Account No. 
Short text 
Long text
Long text
TXT20
TXT50
MCOD1
Reg
Madhu M
Edited by: M Madhu on Mar 16, 2009 11:40 AM

Similar Messages

  • Report Painter - Account descriptions not showing

    Hi guys...I have created a balance sheet in report painter, using a library based on table FAGLFLEXT. this table does not have account descriptions in it, but only account number. The client wants to see the account description as well. Is there a way I include that in my report? Since we are using the new GL, i have used FAGLFLEXT. Please advise how I can accomplish this...can I use a view or a table join between FAGLFLEXT and SKA1?
    please help
    thanks
    Brian

    Dear Brain,
    In the report painter, GRR2, select your report and go to
    Formatting > Section layout
    Select the lead column tab
    Here in the Contents field, select "Key and description"
    That would resolve the issue.
    regards
    Venkatesh
    assign points if useful

  • Offsetting Account Description in FBL3N.

    Hi All
    I am trying to include Offsetting Account Description in FBL3N Report. BTE 00001650 for offset accout info is already activated and the values for the GKONT & GKART fields are available in the report.
    I have checked couple of SAP Notes (112312, 984305, 1034354), relating to this issue but nothings seems to work out.
    I tried few things like - Appending the RFPOS and RFPOSX structures, and then regenerating the RFPOSXEXTEND program.
    But while regenerating the RFPOSXEXTEND program I am getting error - END OF PHASE 002 with Message No D0 322.
    Also tried to add special fields in T.Code O7R3 but this doesnt allow me to add the GKONT_LTXT and I am getting error - Field name GKONT_LTXT is not allowed with Message no. FICORE405.
    Is there any way out to add the required GKONT_LTXT in table T012S through T.Code O7R3 (OBVU).
    Thanks in advance
    K I M Khan.

    Hi,
    I have also same issue with  Offset account Description in fbl3n Report. i have follwed the below link:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8011026d-eb5d-2e10-b9bb-d0601949b86a?QuickLink=index&overridelayout=true&50964082045396
    to bring Offset Account Description what are all the steps i need to do
    the highlighted fields... how i can create... plz let me know
    thanks

  • 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

  • Help needed in retrieving account description present in PO distributions

    Hi All,
    I have written a query to retrieve purchase orders and it's distributions. I need to retrieve account descrption related to distributions. I have got account number from gl_code_combinations table(segment1 to segment5). I am not able to proceed further in getting account description. Please suggest which are the tables and what is the link between them.
    Thanks and Regards,
    Mahesh

    Hi,
    Please find my comments below:
    Thanks for the reply
    Welcome
    If we link with fnd_flex_values_vl and gl_code_combinations, number of records is increasing i.e records are repeating.
    add condition flex_value_set_id
    Also account number will be like 01-0101-0101-1010, so this means that account number is flex field. Then i think we have to use flex field tables. But i am not able to find out which are the tables and what is the link between them
    Account number is a combination of Segments. You cannot find total combination anywhere. You have to take Code combination id, get the segments, link the segment with fnd_flex_values_vl with particular value_set_id and display the description against that segment.
    Finally you have to concatenate all the segment descriptions.
    Regards,
    Sridhar

  • Offsetting Account Description

    Dear All,
    In FBL*N, we get fields for Offsetting account. But it does not show the description of offsetting account. How can i add field for offsetting account description
    Regards,
    Shreya

    Hi
    If you wish to add description of offsetting account (GL account long text) against a vendor document (FBL1N) then go to table SKAT and search for field TXT50  ,
    If you wish to add offsetting account (vendor description) against a GL document (FBL3N) then go to Table LFA1 and search for field NAME1 and if you wish to add customer account description then go to KNA1 and search for the field NAME1.
    Please note field name will not be identical in all the table , field name for a same field may differ from table to table .
    Cheers
    Mukta

  • Gl account description??

    in ska1 table when we pass the gl account number we can see the gl account description...but its not possible to write a select statement as it is not one of the field in ska1 table.
    can anyone tell me where can i get this gl account description?

    Hi shahid,
        what are the other tables u r using to get the GL discription. this GL discription we can get from SKAT table.
    suppose if u take BSEG table, then we define like this,
    TYPES: BEGIN OF t_skat,
           mandt TYPE mandt,
           saknr TYPE saknr,
           txt50 TYPE txt50,
      END OF t_skat.
    DATA: it_skat TYPE STANDARD TABLE OF t_skat WITH HEADER LINE.
    SELECT  mandt
              saknr
              txt50
              FROM skat INTO TABLE it_skat
              FOR ALL ENTRIES IN it_bseg
              WHERE saknr EQ it_bseg-hkont.
    LOOP AT it_bseg.
    READ TABLE it_skat WITH KEY saknr = it_bseg-hkont.
        IF sy-subrc EQ 0.
          it_items-txt50 = it_skat-txt50.
        ENDIF.
        APPEND it_items.
    ENDLOOP.
    here it_items table is final out put table.
      by,
    sudharsan.

  • COA account description

    Please help required on the transac code to check for duplicate account description in chart of accounts

    Hi,
    If want to Chart of accounts Description then please Use Se16N - Give table name - T004 , T004T,
    give you chart of accounts and execute
    otherwise you want to check GL account Descriptions Use SE16N - Table name - SKAT -- G/L Account Master Record (Chart of Accounts: Description)
    please check both tables as per your requirement
    and reports
    S_ALR_87012326 - Chart of Accounts
    S_ALR_87012328 - G/L Account List
    S_ALR_87012333 - G/L Accounts List
    F.10 - Chart of Accounts
    Thanking you
    Regards
    Mahesh

  • GL Chart of Account Descriptions

    Hi Guys,
    Can anybody help me to find the Chart of Account Descriptions , as I need to find the descriptions of all the (Segments1 - 30) from GL_CODE_COMBINATIONS table .
    Regards
    null

    The segment values for the segment1 -30 in GL_CODE_COMBINATIONS are picked up from FND_FLEX_VALUES. there is one field 'DESCRIPTION' in this table which will give you the discription of the values.
    You may have to use joint condition of two tables FND_FLEX_VALUE_SETS and FND_FLEX_VALUES to get the DESCRIPTION of your segment value because each segment1-30 is associate with value set.

  • Error in account determination: table T030K key ABCD JN7

    Following is the error message description given by the system :
    Error in account determination: table T030K key ABCD JN7
    Message no. FF709
    T030K - Tax Accounts Determination Table
    JN7 - A/R CST Payable
    ABCD - Company Code
    Tax Code - A0 - 0% Output Tax
    Plz treat this urgent.
    Regards
    Subrat

    Hi subrat,
    Maintain the tax G/L accounts in TC-OB40.
    Hope this will solve your problem
    regards
    Naren

  • Error in account determination: table T030K key SPML J1R

    Hi,
    i need help in below error
    Error in account determination: table T030K key SPML J1R
        Message no. FF709
    Diagnosis
        In the chart of accounts to be posted to, no accounts are defined for
        the tax code you used.
    Procedure
        Contact your system administrator.
        Define the accounts to which a tax posting is to be made with the tax
        code entered in Customizing for taxes on sales/purchases.
        To do this, choose Maintain entries (F5).
    Thanks
    Deepa

    Please check the indicator 'Foreign curreny translation for tax items'
    should be set in in the customizing. This may be the cause or error.
    The menu path for ' Foreign curreny translation for tax items'.
    tax items' is as follows >
    IMG > Financial Accounting
    Financial Accounting Global setting
    Company code
    Enter Global parameter > field: Crcy transl. for tax
    As per your description, i think you have maintained transaction key
    in the transaction OBYY. If not then please maintain and check if
    you still get the error.
    Kindly check the following link for undestanding:
    Error in account determination table t030k key ws3
    Thanks & Regards
    JP

  • Accounts Descriptions in Report Painter

    If I have a set with a range of accounts and no description, for example:
    SET [345,899]
    I link this set to be output in a report using report painter...
    How do I do to see the accounts descriptions about this range in ReportPainter.
    I mean:
    Something like this......
    345 description 345
    346 description 346
    347 description 347
    368 description 368
    390 description 390
    etc etc

    Hi
    To create a Transaction Code for a Report Painter/report writer report
    Tcode for Report Painter
    To create a TCode, follow the steps below.
    1) Go to Transaction code SE93, Enter TCode Name and Press Create.
    2) Give short Description and select Parameter Transaction, Press Enter
    3) Select Transation Radio Button and write START_REPORT in the next text
    box Also Check the box Skip Initial Screen.
    4) On the bottom of Screen (default Values), Enter Parameters
    i) Name = D_SREPOVARI-REPORTTYPE. Value = RW
    ii) Name = D_SREPOVARI-REPORT Value = Your Report Group Name (Say 1SIP)
    5) Save and Execute.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • How to generate a report based on account description

    Hi Experts,
    How to generate the report based on account description, that means
    i want to generate a report on G/L account and which account numbers are having 'CASH' description.
    for Ex: G/L a/c no: 25010026-Cash and Bank balance(des)
    G/L a/c no: 101000-Cash-freight
    like this.
    please help to do this,
    good answer will be appreciated with points,
    Thanks in advance
    Venkat

    Hi shana,
    my requirement is
    I have G/L account numbers, that account numbers having some descriptions, in these some descriptions are belongs to cash transactions, i want to generate the report on these cash transactions, and the report is " G/L account, debit cash, credit cash, balance".
    is it possible or not,
    thanks in advance,
    Venkat

  • Translation of G/L account description

    HI all,
    can any one explain  the steps for doing translation of GL account description in t.code: OB_GLACC13?
    regards,
    ramesh b

    Hi Ramesh
    This transaction is to do a Mass change on with the same values for all the g/l accounts you selected.
    Like change all the fields status group for these account in ZZZZ
    The translation you have to do with the normal transaction for de master data G/L acounts.
    When you habe a lot of entries you can create an LSMW for it
    Paul

  • Maintain account determination (table T030B) for posting key IRX (M8395)

    Dear Guru,
    I am testing IS-OIL - Exchanges.
    Created Exchange Agreement and Purchase Contract and Sales Contract, Purchase Contract and Sales Contract are assigned to the Exchange Contract.
    A PO is created with reference to the Purchase Contract.
    Upon post goods receipt in MIGO, encountered error message "Maintain account determination (table T030B) for posting key IRX (Message no. M8395)" that does not allow PGR to get through.
    A call-off is created with reference to the Sales Contract.
    Similarly, when PGI is performed in VL01N, encountered error message "Maintain account determination (table T030B) for posting key IGX (Message no. M8395)" that does not allow PGI to get through.
    Checked in OBYC, there is no transaction key for IRX and IGX.
    Please advise. Thank you.
    Regards,
    WL

    Hi WL,
    In an Exchange scenario, the account determination entry would have to go added through tcode O54E for this purpose. You would see both the IRX and IGX entry in the above mentioned tcode.
    Menu path: IS-OIL Downstream --> EXG --> Account Assignment
    You would not be able to see the IRX or IGX transaction key in OBYC.
    Hope the above helps.
    Thanks.
    Edited by: Kok Wai Phang on Jul 10, 2011 7:58 AM

Maybe you are looking for

  • Apple TV on CRT TV (component to s-video)

    Hi all newb here, so here's the story. Apple iTunes film rentals have hit the UK, wohoo! The 160GB Apple TV is literally US$220 more in the UK. I'm off to NYC in 3 weeks so I'm going to get one there but I've we problem. My CRT Sony 32" TV (which I'm

  • How do you know bonjour is on your Mac?, How do you know bonjour is on your Mac?

    I did a quick search of my Mac and used keyword Bonjour, nothing came up? Is it there? I am trying to connect a Brother MFC 8480DN to my network and it does not see any printers

  • Task notification script & smart folks

    Has anybody smarter than me done anything cool with the Task Notification Script at /Library/Application Support/Apple/Remote Desktop/Notify I have it sending me notification of success and failure. It would be nice if it included info on: • reasons

  • Read a xml to table

    Hi Someone may indicate a book or tutorial on xml oracle I have an xml file and I import to a table, but do not even know how to begin Using 9.2.02 version Tia Edited by: muttleychess on Aug 22, 2012 9:00 AM

  • JComboBox focus problem

    Hi all, I'm using a JComboBox, a JButton and a JTextArea added to a JPanel. What I doing is using the TextArea as a console, the JComboBox to enter commands in (and retrieve old ones) and the JButton to execute entered commands. This works fine excep