Need table available in General Ledger

Dear All,
Can any one explain me the list of tables availble in General Ledger Module in oracle-applications, including join-conditions....
Regards
Subash
Edited by: user12070109 on Oct 19, 2009 5:03 AM

Hi Subbu,
It's indeed difficult to identify tables which are important in GL. You must be aware the basic object of GL is track all financial transactions (journals), for this you need an A/C, a calendar and a currency... Any tables associated with these activities are important for GL (Technically :) )... Some tables which hold key info on GL are as below...
GL_SETS_OF_BOOKS                 : This is the main table of GL which capture info about SOB of a business
GL_JE_BATCHES          : This table will provide info about Journal batches
GL_JE_HEADERS          : Provides info about Journal header
GL_JE_LINES          : Provides info about Journal lines
GL_BALANCES          : This will give you the current blance of an a/c
GL_CODE_COMBINATIONS     : This is used to capture all the GL code combination.. accounting segments
GL_DAILY_RATES                       : This table is useful when you use any currency other than your functional currency in trx.. this captures info abount conversion of rates betwqeen 2 currencies
GL_PERIODS : This provides status about a GL Period.. whether it is open or closes etc...
GL_JE_SOURCES & GL_JE_CATEGORIES : these tables used to capture journal sources info  (Payables, inventory, receivable etc..)  and journal category info...
You can use below query to get all tables of GL..
Select * from all_objects where object_name like 'GL%' and owner='GL' and object_type='TABLE'
and (object_name not like 'GL%ALLOC%')
and (object_name not like 'GL%CONS%')
and (object_name not like 'GL%MC%')
Hope this will help..
Regards,
S.P DASH

Similar Messages

  • Deffered tax node not available in General Ledger Accounting

    Hello,
    I want to custumize deffered tax programme but the node
    :General Ledger Accounting  Business Transactions  Report  Sales/Purchases Tax Returns  Deferred Taxes
    is not availabe.
    Please suggest what steps are needed to make it available.
    ours is ECC 6.0.
    Regards
    Tushar

    Hello,
    You might check following path:
    Financial Accounting  (NOT NEW)
    General Ledger Accounting
      Business Transactions
        Closing
         Report
          Sales/Purchases Tax Returns
            Deferred taxes  
    Best regards

  • Vendor number in General ledger

    Hello team,
    we are in ECC 6.0
    we need vendor number in general ledger report fagll03
    in the layout of FAGLL03 it is available. but it is not updating the field with vendor number.
    how can i get.
    regards
    Sri

    Dear,
    It will not be displayed in the general ledger, you go the reconciliation account of the vendor and execute for the period required. Now you can see the vendor in the field of assignment, if the field is not available then add the field from change layout button in fbl3n.
    In FAGLL03 and double click it will take you to line item display, where you can see the vendor code in assignment field.

  • General Ledger Planning

    Dear All,
    I need to do the General Ledger Planning in ecc6.0 , can anyone able to Give me the config material or user manual to do the GL planning.
    Thanks & Regards

    Hi
    Go through the below link:
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/FIGLMD/FIGLMD.pdf
    VVR

  • Please Help....Need base tables link from Trade management to General Ledge

    HI,
    As per our current requirement we need to pull data from Trademanagement Module to General Ledger.
    we are able get exact data which is posted in GL.
    since we need to display only finished Items in product column. we are getting some unfinished Products also.
    is there any table which has correct link trademanagement to GL. Version R12:
    we have used the below query:
    ------------------------------------Start TM-GL Item Level-------------------------------------------
    SELECT 'FY'||substr(batch_period_name,5,2) Year
    , substr(batch_period_name,0,3) Period
    , 'Final' version
    , 'Actual' Scenario
    , ('C'||substr(account,0,3)) Company
    , ('A'||substr(account,5,5)) GL_Account
    , substr(account,11,2) BU
    , ('PC'||substr(account,14,3)) Profit_Center
    , Plan_Dist
    , decode(Product,'','No_Product',Product) Product
    , Site_No
    , currency_code
    , substr(account,18,2) Country
    , sum(nvl(accounted_dr,0)-nvl(accounted_cr,0)) Amount
    , batch_period_name
    FROM (SELECT
    gjh.currency_code
    , gjh.je_category
    , gjh.je_source
    , gjh.period_name je_period_name
    , gjh.name journal_name
    , gjb.name batch_name
    , gjh.status journal_status
    , gjh.creation_date je_created_date
    , gjL.period_name batch_period_name
    , gjl.je_line_num line_number
    , gjl.ledger_id
    , gjl.entered_dr
    , gjl.entered_cr
    , gjl.accounted_dr
    , gjl.accounted_cr
    , gjl.description
    , gjh.running_total_accounted_dr je_total_dr
    , gjh.running_total_accounted_cr je_total_cr
    , gcc.concatenated_segments Account
    , xdl.source_distribution_type
    , xdl.source_distribution_id_num_1
    , xlate.source_id_int_1
    , (select distinct segment1
    from mtl_system_items_b@ebs_link
    where inventory_item_id= ofuab.product_id ) Product
    , (select distinct HCSusesal.attribute4
    from HZ_CUST_ACCT_SITES_ALL@ebs_link hcasiteall
    ,HZ_CUST_SITE_USES_ALL@ebs_link HCSusesal
    ,HZ_CUST_ACCOUNTS@ebs_link hca
    where HCSusesal.cust_acct_site_id= hcasiteall.cust_acct_site_id
    AND ofuab.ship_to_site_use_id=HCSusesal.site_use_id
    AND hcasiteall.cust_account_id=hca.cust_account_id) Site_No
    ,(select distinct hpsites.party_site_number
    from HZ_PARTIES@ebs_link hpart
    ,HZ_LOCATIONS@ebs_link hloc
    ,HZ_CUST_ACCOUNTS@ebs_link z
    ,HZ_PARTY_SITES@ebs_link hpsites
    ,HZ_CUST_ACCT_SITES_ALL@ebs_link hcasiteall
    ,HZ_CUST_SITE_USES_ALL@ebs_link HCSusesal
    ,HZ_CUST_ACCOUNTS@ebs_link hca
    -- ,HZ_CUST_SITE_USES_ALL_MNC mnc
    where hpsites.location_id= hloc.location_id
    and hpart.party_id= hpsites.party_id
    and hpsites.party_site_id= hcasiteall.party_site_id
    and HCSusesal.cust_acct_site_id= hcasiteall.cust_acct_site_id
    and hpart.party_id= hca.party_id
    -- and mnc.cust_acct_site_id= hcasiteall.cust_acct_site_id
    and z.party_id= hpart.party_id
    and ofuab.ship_to_site_use_id=HCSusesal.site_use_id) Plan_Dist
    FROM gl_je_headers@ebs_link gjh,
    gl_je_lines@ebs_link gjl,
    gl_import_references@ebs_link gir,
    gl_code_combinations_kfv@ebs_link gcc,
    gl_je_batches@ebs_link gjb,
    xla_ae_lines@ebs_link xal,
    xla_ae_headers@ebs_link xah,
    xla_events@ebs_link xe,
    xla_event_types_tl@ebs_link xet,
    xla_event_classes_tl@ebs_link xect,
    xla_distribution_links@ebs_link xdl,
    xla.xla_transaction_entities@ebs_link xlate,
    ozf_funds_utilized_all_b@ebs_link ofuab
    WHERE gjh.je_header_id = gjl.je_header_id
    --AND gjh.reversed_je_header_id = gjl.je_header_id
    --AND gjh.je_header_id = gir.je_header_id
    AND (gjh.reversed_je_header_id = gir.je_header_id OR gjh.je_header_id = gir.je_header_id)
    --AND gjl.je_header_id = gir.je_header_id
    AND gir.je_line_num = gjl.je_line_num
    AND gcc.code_combination_id = gjl.code_combination_id
    AND gjb.je_batch_id = gjh.je_batch_id
    AND gir.gl_sl_link_id = xal.gl_sl_link_id
    AND xal.ae_header_id = xah.ae_header_id
    AND xah.event_id = xe.event_id
    AND xe.event_type_code = xet.event_type_code
    AND xe.application_id = xet.application_id
    AND xet.LANGUAGE = USERENV ('LANG')
    AND xect.event_class_code = xet.event_class_code
    AND xect.application_id = xe.application_id
    AND xect.LANGUAGE = USERENV ('LANG')
    AND xah.ae_header_id = xdl.ae_header_id
    AND xal.ae_line_num = xdl.ae_line_num
    AND xe.entity_id = xlate.entity_id
    AND xe.application_id = xlate.application_id
    AND xlate.source_id_int_1=ofuab.utilization_id
    AND gjh.je_source = 'Marketing'
    AND gjl.status='P'
    AND gcc.segment3 in ('10')
    AND gcc.segment1 <> 'C01'
    AND substr(gcc.concatenated_segments,5,1) in (4,5)
    AND gcc.segment6 not like ('SPO%')
    AND ofuab.utilization_type <> 'ADJUSTMENT'
    -- AND gcc.concatenated_segments = '101.41220.10.999.US.BAZ2503.000.0000'
    -- AND gjl.je_line_num in( 5674,5675,5676,5677)
    -- AND gjl.period_name = 'AUG-12'
    -- AND gjh.je_header_id IN (7236,7235)
    -- AND gjl.je_line_num = 3830
    AND substr(gcc.concatenated_segments,5,2) not in('40'))
    AND gjl.je_line_num in( 5674,5675,5676,5677)) PG -- 11/23/12
    GROUP BY 'FY'||substr(batch_period_name,5,2)
    , substr(batch_period_name,0,3)
    , 'Actual'
    , substr(account,0,3)
    , substr(account,5,5)
    , substr(account,11,2)
    , substr(account,14,3)
    , substr(account,21,7)
    , currency_code
    , Product
    , substr(account,18,2)
    , Site_No
    , Plan_dist
    , batch_period_name
    , 'Final'
    ------------------------------------End TM-GL Item Level-------------------------------------------
    Please help me if any body worked on this issue.
    Thanks,
    Ram

    I have find the answer for my Question...
    We can have 2 columns in ozf_funds_utilized_all_b. product_type and Product_id.
    If product_type is Family then Product_id would be the Item Category ID.
    If Product_type is Product then Product_id would be the Inventory_item_id.
    Thanks,
    Ram

  • Quantity Material , FI Document NO, General Ledger Account No in SAP Table

    Hi,
    I want to extract the details Quantity, Material , FI Document No, General Ledger Account No from SAP Table.To extract the data from GL is verfy difficult and time consuming.
    please help
    Regards
    Nikunj
    Edited by: NIKUNJPATEL on Mar 28, 2010 11:31 AM

    Dear Christian,
    Thanks a lot for help.
    The required infor is available in BSEG Table itself. No need to go other table.
    Regards
    Nikunj

  • Reg: how to see the vendor details and general ledger details in tables

    HI all
    how to see the vendor details and general ledger details in tables.
    regards
    JK Rao

    General ledger transactions are available in following table;
    1. BKPF & BSEG
    2. BSIS - Open Items
    3. BSAS - Cleared Itesm
    For vendor
    1. BSIK - Open Items
    2. BSAK - Cleared Items
    For Customers
    1 BSID - Open Items
    2. BSAD - Cleared Items
    Regards
    Rakesh Pawaskar

  • SEM-BCS data extractor from ECC general ledger table(s)

    We are a utility company working on an SEM-BCS implementation and use the FERC solution.  We do not use the new GL.  We are trying to extract the transaction data from ECC to a BI virtual remote cube.  We cannot use the profit center extractor (0EC_PCA_3) as the profit center tables do not contain any ferc data.  We need to be able to extract the transaction data from a general ledger table.  We have run into several issues with various extractors we have tried because they donu2019t allow direct access (0FI_GL_4) or are at a summary level and we canu2019t extract group account, trading partner, and transaction type detail (0FI_GL_1).  Would you have any suggestions on how to extract general ledger data with the detail information required from ECC to be able to load to a BI virtual remote cube?

    We are going forward with getting the natural account detail data using the profit center extractor 0EC_PCA_3, and getting the ferc summary data using the general ledger extractor 0FI_GL_1.  With our testing so far, this combination will provide us the data we need in BCS.

  • New General ledger accounting in ECC 6.0 : Profit centre not in BSID table

    hi,
    I already create new transaction code and report from standard transaction code
    *s_alr_87012168 : Customer Aging Report (Due Date Analysis for Open Items)* and i
    also add Profit center fields into Dynamic selection.
    My problem is, if i run the report using customer account the output is displayed but
    if i run the report with customer & profit centre the output is not displayed. currently i'm using
    new General ledger accounting in ECC 6.0 and when i look into bsid table the value
    is empty for profit centre and the value for profit centre are stored in new table
    FAGLFLEXT.
    do i miss something?
    thanks.

    s_alr_87012168 : Customer Aging Report (Due Date Analysis for Open Items) this is a report generated.

  • Enhancing the FAGLFLEXA(General Ledger: Actual Line Items) table

    Hi All,
    I am trying to add Material Number (MATNR) to the table FAGLFLEXA(General Ledger: Actual Line Items)
    For this i have added Material number in the include CI_FAGLFLEX04 of the table  FAGLFLEXA.
    But still material numbers are not appeared in the table FAGLFLEXA.Material number exist in the structure COBL - Coding Block,i believe SAP standard programs has to pick up material number from coding block to FAGLFLEXA table.
    Please advise me if anyone enhanced this table .
    Regards
    L Appana

    Hi Appana,
    I also want to add MATNR to FAGLFLEXA. Can i know how did you go about creating new segment to flow MATNR in FAGLFLEXA?
    Somar
    Edited by: Somar on Mar 6, 2009 10:37 PM

  • General Ledger tables

    Hi,
    Journal Entry data is stored in tables OJDT and JDT1.
    I want to know in which table SBO stores the General Ledger data.
    Thanks in advance.
    Satish Dwevedi

    Satish,
    The OJDT and JDT1 ARE the General Ledger Entries that are entered into SAP Business One and then posted.  Business One does not have a batch processing function where you enter a bunch of entries, GL in this case and then post.  Actually that is not 100% correct as the only batch entry processing is in the Finance section of Business One and that is Journal Vouchers, BUT for what I believe that you are asking for, when you choose Financials > Journal Entry and then click Add, these are the "posted" Journal Entries.
    Hope that Helps,
    Eddy

  • Need standard Bapi or FM for creating General Ledger (FS00 transaction)

    Hi,
    I need to upload (create) Master General Ledger data.
    My requirement is to use standard Bapi or FM for this purpose.
    Please tell me which Bapi or FM i can use for this purpose.
    Thanks in advance.

    Hi Suresh,
    The Function module you specified is not released. So, I cant use it. Thanks for your suggestion.
    Hi friends,
    My requirement is to create General Ledger Account (FS00 or FS01) using a standard Bapi or FM. Please tell me which Bapi or FM I can use for this purpose.
    I identified one related Bapi for this purpose (BAPI_ACC_GL_POSTING_POST). But my functional consultant says it is for posting General Ledger and cannot be used for ceating General Ledger account.
    Please clarify me.

  • Link MSEG table to general ledger

    Hi,
    I would like to reconcile the data in MSEG with the inventory accounts in the general ledger.
    Is there a way to do this, i know that not all inventory movements have financial impact so this is no straightforward exercise.
    Thanks.
    Kr.

    Hi,
    In table MSEG you will get material document pass this  material document number+ year in table BKPF,firld AWKEY then you will get  FI document for same
    now for FI document details check table  BSEG here pass FI document from table BKPF and fiscal year also
    check following link also
    [http://help.sap.com/saphelp_bw33/helpdata/en/af/16533bbb15b762e10000000a114084/content.htm]
    [BSEG to VBAK;
    [Standard data source linked to BSEG and BSAK table.;
    Regards
    kailas Ugale

  • Migrating to SAP General Ledger (NewGL)  on a different box

    We are looking at migrating to SAP General Ledger on a production system with over 150 company codes and 10 years of unarchived data. Since this results in pretty large database tables we are looking at several options to minimize business impact.
    Among the available options, I have been told that it is possible to perform a migration from one box to another rather than in-place. I'm having trouble visualizing how transactional data from other modules (CO, SD, MM, PP etc) would be preserved in this case.
    Can anyone tell me if migrating from classic GL on one box to new GL on another is possible? Does it really reduce downtime? If so, how does it achieve this time savings? What are the pitfalls of taking this approach? Can a box-to-box approach be taken without loss of non-GL transactional data?
    Thanks in advance,
    Paul

    Hi,
    we migrated on 31st of march 2008 3 different 46c systems (AT, IN, CN) with 3 huge and a few small company codes into one ECC 60 system (using HR, SD, MM, PM, PP, QM, FI, CO). In ECC 60 we are using NewGL, document split, functional area reporting, PRCTR-wise balance sheets, segment reporting, FI/CO online integration, leding ledger IFRS, 2 non leading ledgers for every comp. code,...
    The migration project was started a year before go-live the system downtime was only the 31st of march (one day) for each company code.
    The main thing was, that we decided not to migrate any old transactional data to the new system but only the data (master data, open items, open PO's,...) thats needed.
    So the old stuff remains still in the old system (FY-end closing was done there) and all comp.codes started the new fiscal year in the new system.
    Due to the fact that many reporting issues where covered by business warehouse this ensured a continously reporting across the old and new system landscape and there was never a need to have "old" data visible in the new system.
    BR Christian

  • OBIA Financials - General ledger

    Hi
    We had a new Obia installed in our environment, I am unable to see the reports when I open the General ledger Dashboard, It is giving the below error.
         No Results
         The specified criteria didn't result in any data. This is often caused by applying filters and/or selections that are too restrictive or that contain incorrect values. Please check your Analysis Filters and try again. The filters currently being applied are shown below.
    But when I remove a filter named Trailing Four Fiscal Quarters it is showing some data.
    So Please help me what is this Trailing Four Fiscal Quarters filter and what should I do to get some data displayed on to the dashboard.

    You need to build the EP in DAC for Financials Modules by modifying the data in csv files under srcfiles with respect to source data/instance which you want to use. Make sure that the Fact tables are loaded inorder to see the data in reports for the Fiscal years which you want to see the data.You need to do a Full Load inorder to have complete data available in reports.
    You can follow the guide http://docs.oracle.com/cd/E20490_01/bia.7963/e19039.pdf from section "5.2 Configuration Required Before a Full Load for Financial Analytics" for running teh full load.
    Mark as helpful or correct, if it helps
    Thanks,
    RM

Maybe you are looking for

  • Smartview 9.3.3 issue with Options Display tab Replacement NoData

    I am testing an upgrade from 9.3.1 to 9.3.3. I have Office 2010 on a new WindowsXP laptop and using IE8. What I have found with the Options menu on the Display tab that it will NOT let me put the value zero in the fields for Replacement #NoData or #N

  • Adobe reader will not open documents in the browser. What do I do?

    I do not know anything about technical jargon or anything about add-ons or plug-ins, I just know that typically if I open a PDF file from a website it opens just fine in the browser. However, I am unable to open PDFs inside of Adobe Reader. When I do

  • Binary to XML format

    Hi all, To post a document to bank i have used digital signature using SSF functions. It is working fine. And my recipient received the data with digital signature. Now I have a problem, when i use SSF function my input data is converted into binary

  • Removing advanced ntfs permissions in powershell

    Hi, I am trying to remove special permissions of a folder I found a technet article that helps me understand the concept but couldn't get it to work for special permissions.  I am trying to remove create files special permissions for c:\temp $colRigh

  • Error when launching transaction code CRMBS02

    Hello all...whenever we attempt to launch the t-code CRMBS02 or BS02, we get a popup that says: Error in object editing: This syntax cannot be used for an object name Selecting the documentation drop down provides: Message no. TK103 Diagnosis The syn