Liability account in release r12

hi,
Can some one tell me where is the liability account defined at supplier main level?
i can find the liability account in supplier site level but not in supplier main level
Regards
sudharshan

Hi Sudharshan,
Im not sure what you are exactly trying to point out, but in Payables Options / Accounting Financial Options you can find the default liability account which is defaulted to all suppliers..
This is from AP-Implementation GUide:
Accounting Financials Options
Liability. Payables assigns this account as the default Liability Account for all new
suppliers you enter. You can override this value during supplier entry. If you use
Accrual Basis accounting, then the Liability Account for an invoice determines the
liability account(s) charged when you create accounting entries for invoices.
Alexey

Similar Messages

  • Where to get Liability-Account for AP_INVOICE_DISTRIBUTIONS in R12

    I am working on a "AP Report" and I have to display the Expense and Liaiblity accounts for each Invoice_Distribution.
    In R11i, this was available from ACCTS_PAY_CODE_COMBINATION_ID from ap_invoice_distributions_all table. However, in R12.1.3 this column is Null and oracle TRM states that this column is "not in use".
    Where can i get the Liability-Account in R12 ... If someone has a Query to extract the Liability-account for each Distribution, it would make my life much easier.

    Please see:
    Identifying Data Model Changes Between EBS 12.1.3 and Prior EBS Releases
    https://blogs.oracle.com/stevenChan/entry/ebs_data_model_1213
    EBS Data Model Comparison Report Overview [ID 1290886.1]
    EBS Seed Data Comparison Reports Now Available
    https://blogs.oracle.com/stevenChan/entry/ebs_seed_data_comparison_reports
    Thanks,
    Hussein

  • AP   Liability Account   in R12

    Hi,
    I'm customizing AP Trial Balance report, i need to add a field (Liability Account). Could you tell from which table has this information.
    Thanks
    pravin

    Hi,
    Use the below Query to get the
    Liability_Account
    select concatenated_segments Liability_Account
    from gl_code_combinations_kfv
    where gl_account_type = 'L'
    and enabled_flag = 'Y'
    and code_combination_id = your code combination id or you need to derive it from suppliers or supplier sites, in that this column corresponds to ACCTS_PAY_CODE_COMBINATION_ID
    When you are deriving from supplier sites use org_id, Since sites are org specific.
    This may solve your requirement
    Regards,
    Giri

  • Generating Supplier Liability Account based on the Supplier Classification

    Hi ,
    In R12 I have a custom requirement like follows. Need to generate the Supplier Liability Account based on the Supplier Classification. When we select supplier type then by default liabilty account value will be the value from supplier--> setup --> options --> fianancial otpions --> accounting tab (GL -accounts liability value).
    so when we change the supplier type the liability account should changed based on that classification value.
    I have code in 11i where custom.pll was modified to acheive this, but how to implement this in R12 as supplier form is OAF based.
    the code from custom.pll for this is
    procedure event(event_name varchar2)
    is
    lCurrBlock varchar2(30);
    lVendorType varchar2(30);
    lDefaultCCID number(15);
    lCustomCCID number(15);
    cursor customCC(x_vendor_type varchar2,x_default_cc_id number) is
                   select
                   cst.code_combination_id
                   from
                   fnd_lookup_values vty,
                   gl_code_combinations dfl,
                   gl_code_combinations cst
                   where 1=1
                   and vty.view_application_id = 201
                   and vty.lookup_type = 'VENDOR TYPE'
                   and vty.language = 'US'
                   and vty.lookup_code = x_vendor_type
                   and dfl.code_combination_id = x_default_cc_id
                   and dfl.segment1 = cst.segment1
                   and vty.tag = cst.segment2 --account no
                   and dfl.segment3 = cst.segment3
                   and dfl.segment4 = cst.segment4
                   and dfl.segment5 = cst.segment5
                   and (dfl.segment6 = cst.segment6 or (dfl.segment6 is null and cst.segment6 is null))
                   and (dfl.segment7 = cst.segment7 or (dfl.segment7 is null and cst.segment7 is null))
                   and (dfl.segment8 = cst.segment8 or (dfl.segment8 is null and cst.segment8 is null))
                   and (dfl.segment9 = cst.segment9 or (dfl.segment9 is null and cst.segment9 is null))
                   and (dfl.segment10 = cst.segment10 or (dfl.segment10 is null and cst.segment10 is null))
                   and (dfl.segment11 = cst.segment11 or (dfl.segment11 is null and cst.segment11 is null))
                   and (dfl.segment12 = cst.segment12 or (dfl.segment12 is null and cst.segment12 is null))
                   and (dfl.segment13 = cst.segment13 or (dfl.segment13 is null and cst.segment13 is null))
                   and (dfl.segment14 = cst.segment14 or (dfl.segment14 is null and cst.segment14 is null))
                   and (dfl.segment15 = cst.segment15 or (dfl.segment15 is null and cst.segment15 is null))
                   and (dfl.segment16 = cst.segment16 or (dfl.segment16 is null and cst.segment16 is null))
                   and (dfl.segment17 = cst.segment17 or (dfl.segment17 is null and cst.segment17 is null))
                   and (dfl.segment18 = cst.segment18 or (dfl.segment18 is null and cst.segment18 is null))
                   and (dfl.segment19 = cst.segment19 or (dfl.segment19 is null and cst.segment19 is null))
                   and (dfl.segment20 = cst.segment20 or (dfl.segment20 is null and cst.segment20 is null))
                   and (dfl.segment21 = cst.segment21 or (dfl.segment21 is null and cst.segment21 is null))
                   and (dfl.segment22 = cst.segment22 or (dfl.segment22 is null and cst.segment22 is null))
                   and (dfl.segment23 = cst.segment23 or (dfl.segment23 is null and cst.segment23 is null))
                   and (dfl.segment24 = cst.segment24 or (dfl.segment24 is null and cst.segment24 is null))
                   and (dfl.segment25 = cst.segment25 or (dfl.segment25 is null and cst.segment25 is null))
                   and (dfl.segment26 = cst.segment26 or (dfl.segment26 is null and cst.segment26 is null))
                   and (dfl.segment27 = cst.segment27 or (dfl.segment27 is null and cst.segment27 is null))
                   and (dfl.segment28 = cst.segment28 or (dfl.segment28 is null and cst.segment28 is null))
                   and (dfl.segment29 = cst.segment29 or (dfl.segment29 is null and cst.segment29 is null))
                   and (dfl.segment30 = cst.segment30 or (dfl.segment30 is null and cst.segment30 is null));
    begin
         if name_in('SYSTEM.CURRENT_FORM') != 'APXVDMVD' then
              return;
         end if;
         lCurrBlock := name_in('SYSTEM.CURSOR_BLOCK');
         if event_name = 'WHEN-NEW-FORM-INSTANCE' then
         --     app_item_property.set_property('VNDR.VENDOR_TYPE_DISP_MIR',required,property_true);
              copy(name_in('WORLD.ACCTS_PAY_CODE_COMBINATION_ID'),'GLOBAL.XX_APXVDMVD_ACCTS_PAY_CC_ID');
         elsif lCurrBlock = 'VNDR' and event_name in ('WHEN-VALIDATE-RECORD','WHEN-NEW-RECORD-INSTANCE') then
         open customCC(name_in('VNDR.VENDOR_TYPE_LOOKUP_CODE'),name_in('GLOBAL.XX_APXVDMVD_ACCTS_PAY_CC_ID'));
         fetch customCC into lCustomCCID;
         close customCC;
         if lCustomCCID is null then
              copy(name_in('GLOBAL.XX_APXVDMVD_ACCTS_PAY_CC_ID'),'WORLD.ACCTS_PAY_CODE_COMBINATION_ID');
         else
         copy(lCustomCCID,'WORLD.ACCTS_PAY_CODE_COMBINATION_ID');
         end if;
         end if;
    end;
    end;
    please help

    Hi,
    While you can refer to the SLA guide, for quick pointers what you need to do is:
    1. Identify the transaction types and associated events for that transaction.
    2. Build an accounting rule for the above.
    An example would be AP invoice validation or application of prepayments.
    The SLA guide provides step by step details on the above.
    Good Luck !!!
    Regards,
    Udit

  • Liability account column/table

    Hello all,
    We are running Oracle EBS R12. I am trying to determine, when a supplier is created and a liability account is assigned, where in the DB is it stored? I know it is probably linked to the GL_CODE_COMBINATIONS table, but can run a query, by say, vendor_id and get the liability account that's assigned to that vendor?
    Thanks in advance,
    Astrid

    Morning 178Ponies,
    Thank you for your reply. For some reason, that column (ACCTS_PAY_CODE_COMBINATION_ID) is empty for all of the AP_SUPPLIERS records in our DB :(
    Anyhow, I found a workaround to make my query work.
    Thank you anyway!
    Astrid

  • Where the supplier liability account is fetched after expense report?

    Hello,
    can anyone help me with this issue:
    1. create a new employee
    2. import resource in CRM
    3. assign to a UserName
    4. login with the UserName
    5. create an expense report
    6. Launch program in Account Payables
    7. The issue = it fetches the account 40110000 instead of 42140000 for the supplier.
    Can anyone tell me why it is not fetching the liability account 42140000 please ??
    Note that: If we create a supplier site manually, it fetches the liability account from the financials options in AP.

    Please see:
    Identifying Data Model Changes Between EBS 12.1.3 and Prior EBS Releases
    https://blogs.oracle.com/stevenChan/entry/ebs_data_model_1213
    EBS Data Model Comparison Report Overview [ID 1290886.1]
    EBS Seed Data Comparison Reports Now Available
    https://blogs.oracle.com/stevenChan/entry/ebs_seed_data_comparison_reports
    Thanks,
    Hussein

  • Manually clearing for consignment liability account

    Hi all,
    we have to manually do a FI posting to clear the consignment liability account, but there are 2000 line items, so I'm wondering if there is any automatic clearing process like GR/IR clearing ( MR11) for consignment liability account? Or can we run a program to clear this account?
    please advise.

    Hi Anand,
    I havn't got any solution on that, based on SAP notes 487162, the solution is:
    In this case, you either must not use such taxes or you must carry out a manual clearing between the consignment liabilities account and a suitable account in FI using Transaction FB01 or FB60.
    so I think this is our solution for now,I'll keep u update if we found a better solution.

  • Automatic clearing process for consignment liability account?

    Hi all,
    we have to manually do a FI posting to clear the consignment liability account, but there are 2000 line items, so I'm wondering if there is any automatic clearing process like GR/IR clearing ( MR11) for consignment liability account? Or can we run a program to clear this account?
    please advise.

    uncheck docs which can be cleared and try , make sure test run is on.
    try with other gr/ir as well just too see if this tcode serves  the purpose.

  • HT204411 i want a itunes account to Release my songs plz help me how ?

    i want a itunes account to Release my songs plz help me how

    A possible cause on this is that you have an outstanding balance. Might be an unpaid purchase, Credit Card issue or what not. Contact them via expresslane.apple.com

  • Supplier balances belonging to the respective liability account.

    Hi All,
    Can any one help us to know ,from which tables we can extract data for "supplier balances belonging to the respective liability account on an "as of date"". Standard reports are based on system date will provide the date. For example: If my sysdate is 18th Aug 2009 and I would like to extract supplier balances as on 11th May 2009. How I will get ? Do we have any query for the same.
    Thanks in advance,
    Ram.

    Hello.
    Please check if this query solves your issue:
    SELECT v.vendor_name, cc.segment1||'.'||cc.segment2||'.'||cc.segment3||'.'||cc.segment4 "Liability Account", SUM (alb.accounted_cr) - SUM (alb.accounted_dr) "Balance Due"
    FROM ap_liability_balance alb, po_vendors v, gl_code_combinations cc
    WHERE trunc(accounting_date) <= 'desired as_of_date'
    AND alb.ORG_ID = <your org_id>
    AND v.vendor_id = alb.vendor_id
    AND cc.code_combination_id = alb.code_combination_id
    AND alb.code_combination_id = <ccid of the desired liability account>
    GROUP BY v.vendor_name, cc.segment1||'.'||cc.segment2||'.'||cc.segment3||'.'||cc.segment4
    HAVING SUM (accounted_cr) != SUM (accounted_dr)
    Hope this helps.
    Octavio
    Edited by: OctopusRex on Aug 18, 2009 2:06 AM
    Edited by: OctopusRex on Aug 18, 2009 2:07 AM

  • How to sum period on a liability account

    I have a requirement to show aggregated amounts of a liability account, for a given FY.
    LIABILITY1  for AUG should show the sum of first 8 months liability, i know it is a behavior of expense account on a liability account. For clarity sake,
    LIABILITY1 will be a stat account created using actual LIABILITY account using MDX formula.
    1) Tried defining LIABILITY1 as EXP account where in the MDX has it as "= LIABILITY"   It didn't do the trick to mimic exp aggregation behavior for year total.
    2) Custom measure is an option but i would like to look other options as custom measures are performance hogs.
    Please note , excel formulas as workbook solution are not accepted here.

    Thank you all for looking into my query and sharing your thoughts. Let me clarify the requirement further.
    -  Liability (LEQ)  accounts are YTD accounts
    -  My application storage type is Periodic.
    -  When you report on this Liability account we always get the "point of time" value i.e. when you report for AUG  , it will always display the balance as of AUG,  irrespective of the application storage type. No issues here.
    Requirement
    -  I need to report accumulated balance of this account i.e. sum of all prior month end balances. When reporting for Aug i have to show the sum of YTD balances from Jan to Aug
    - We can create a new account to achieve this and have an MDX to calculate the sum
    - We can create a custom measure to mimic INC account behavior on LEQ account
    - We can use script logic to calc and store into new account
    - We can use write back to store this calc into new account
    - Not sure what other options I can explore
    - Workbook based excel formula is not an option
    I am trying to find the efficient approach to achieve, if possible, to learn from others experience on similar requirements. We have huge data volume hence efficiency is paramount.

  • AP Invoice Creation -  Liability Account to be shown in Header

    Hi All ,
    While creating AP Invoice , I want "Liability Account" to be displayed in the Header which is not shown now . Please give me ur ideas on it .
    Thanks,
    Thavam
    Edited by: Thavam on May 6, 2013 6:12 AM

    Use the following query - It will solve your problem
    select distinct ael.reference10, ael.ae_header_id,aia.invoice_id, aida.distribution_line_number, aia.invoice_num , aia.invoice_amount, aida.amount, gcc.segment3, gcc.segment5
    from ap_ae_lines_all ael
    ,ap_invoices_all aia
    ,ap_invoice_distributions_all aida
    ,gl_code_combinations gcc
    where ael.source_table = 'AP_INVOICES'
    AND ael.source_id = aia.invoice_id
    AND aia.invoice_id = aida.invoice_id
    and ael.code_combination_id = gcc.code_combination_id
    and ael.reference10 = 'LIABILITY'
    and aia.invoice_num = :p_inv_num
    and and gcc.segment3 = :p_account
    Thanks
    Girish

  • 11i AP Different Liability Accounts at invoice header and supplier pay site

    Hi
    Noticed that Liab Acct at Invoice header and supplier pay site is different and not the same.
    How this is possible?
    need help
    SS

    Hi,
    While entering the invoice you can change the liability account on invoice header, if the filed is not displayed check in folder options (folder->show Field->Liability Account)
    Thanks,
    Vijay

  • How to Manage AP Invoice amount with 'Interim Liability account' using SLA..

    Hi,
    Standard:
    In AP invoice accounting generated after done validation and 'create accounting process' then its creating Dr:Item account and Cr:Liability account---->This is Standard SLA functionality.
    My Requirement:
    Accounting should create Dr:Item account and Cr:Interim Liability account while validate the invoice, then after validate the invoice should create standard accounting (create accounting) this will be Dr:Item account and Cr:Liability account . To do this exercise i will have two liability balances Interim Liability account and Liability account.
    How to setup this functionality using Subledger accounting method? or This is possible to do?
    Please suggest me..
    Thanks and Rgds
    Suresh

    Hi Suresh,
    With encumbrance accounting, you can track the amount to be spent in Payables that was encumbered in Purchasing. This might help get you the results you need.
    Unfortunately, I cannot think of an option for you that would work in standard accrual accounting. In the current model, an accounting event is created only during validation, and accounting is driven off of the events that are created.
    Cheryl

  • Supplier Invoice Adjustments hitting AP Liability Account

    Hi,
    Can someone please help me to understand why some of project supplier inv cost adjustments hitting the AP liability account. The cost distribution line accounts look good. But the Create Accounting process debits the AP liability account. We haven't customnized any SLA accounting rules.
    As per our Auto-accounting rules, it is not supposed to touch the Liability account. And it doesn't happen to all cost lines or all projects.
    Appreciate any help to understand the flow of accouting for Supplier Invoice Adjustments
    Thanks.

    Hi Suresh,
    With encumbrance accounting, you can track the amount to be spent in Payables that was encumbered in Purchasing. This might help get you the results you need.
    Unfortunately, I cannot think of an option for you that would work in standard accrual accounting. In the current model, an accounting event is created only during validation, and accounting is driven off of the events that are created.
    Cheryl

Maybe you are looking for