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

Similar Messages

  • 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

  • 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

  • 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.

  • Change the Vendor Reconcillation Account

    Hi,
    I want to change the reconcillation accounts of few vendors and regroup them. However i have some balances left in the existing reconcillation accounts.
    What is the standard prcoess to change the vendor reconcillation accounts.
    Please advise.
    Thanks in Advance,
    Safi

    Hi,
    If that is the case,
    1. you need to nullify the amt which is exists in the
        Old Reconciliation account to the new Rec Account.
    2. Once the balance is nill for the old reco account, block the GL for the postings
    3. Finally you can assign the New Reco accounts to the
    Vendor Master data.
    I tnk this is helps you.....
    Regards
    AA

  • 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

  • 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

  • Intercompany Matching Report Balance is not the same as Plug account

    Hi - we are running an ICP Matching report (standard setup without any custom consolidation logic).  The balance in the report does not tie to the balance for the Plug account that we ran the report for - Intercompany report uses plug account as the parameter to generate the report.
    For this grouping of accounts, we have both P/L and Balance sheet accounts plugging to the same Interco plug account.  While we understand this is not standard practice, mixing the different account types in the same Plug account, could this be causing our issue?
    Does the IC Plug accounts generate Periodic values for Income Statement accounts?
    Any guidance is much appreciated.

    We separated the expense account from the liability accounts - we also created a rule to capture the prior year YTD plug account balance in the current month.  This solved our issue.

  • 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

  • Balance Amount in GR/IR clearing account in the partial GRed

    Dear All,
    I have 21 Ea in the PO and I set Delivery completed indicator after doing GR for 10 Quantity.
    How do I remove the balance amount for balance 10 qty sitting in GR/IR Clearing account. Shall I do it from MM Side or need to be cleared from FI side.
    Please suggest me a solution.
    Thanks and Regards,
    Muthuraman.K

    HI,
    Balance qty in GR/IR clering account sits after doing GR and the same will be nullified in Invoice verification.
    do the MIRO for 10 recieved qty.
    ticking for delvery completed iss onlyfor tatastical purpose.if u want to short close the PO then reduce the qty to recieved qty.
    regards,
    sujit

  • What is the query for Accounts Payable Trial Balance (APXTRBAL) in 11.5.10?

    Hi Guys,
    What is the query for Accounts Payable Trial Balance (APXTRBAL) in 11.5.10?
    I have to write an AP Invoice Aging Report in Discoverer to show all unpaid invoices that have been transferred into GL... Business wants it to match one-to-one with the AP Trial Balance standard report...
    Business wants to run the report for any date in a past...
    The report has two parameters:
    As Of Date - the same as As of Date for the AP Trial Report
    Trial Balance Run Date - the date when Trial Balance was run...
    Conditions are:
    TRUNC(Invoice Date) <=TRUNC(NVL(TO_DATE(:As Of Date),SYSDATE))
    TRUNC(NVL(Payment Date,'01-JAN-5000')) > TRUNC(NVL(TO_DATE(:As Of Date),SYSDATE))
    TRUNC(Invoice Creation Date) <= TRUNC(NVL(TO_DATE(:Trial Balance Run Date),SYSDATE))
    Distr Accounting Date <= TRUNC(NVL(TO_DATE(:As Of Date),SYSDATE))
    NVL(Distr Creation Date,Invoice Creation Date) <= TRUNC(NVL(TO_DATE(:Trial Balance Run Date),SYSDATE))
    Show_Flag = 'YES', where:
    Show_Flag = CASE WHEN ( NVL(Cancelled Date,'01-JAN-1901') > NVL(:As Of Date,SYSDATE) AND NVL(Inv Amount Aud,0) = 0 ) THEN 'YES' ELSE ( CASE WHEN NVL(Inv Amount Aud,0) = 0 THEN 'NO' ELSE 'YES' END ) END
    There is a difference between the logic of my report, and the logic of AP Trial Balance...
    Could you please advise what I'm missing?
    Thanks,
    Iana

    What is the query for Accounts Payable Trial Balance (APXTRBAL) in 11.5.10? You can get the code by opening the report in Reports Builder and get the query.
    Or, enable trace/debug as per (FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12 [ID 296559.1]).
    Thanks,
    Hussein

  • Project server 2010 don't respect the 'Choose an account' option

    We have in our company Project Server 2010.
    We use to create the 2 URLs accounts for all users through the Create Accounts and choose the 'Choose an account' option so the users can select weather to work offline ("Computer") or from one of the URLs.
    We encountered two cases already, that the Project Pro don't respect the
    'Choose an account' option -
    Every time we select the 'Choose an account' radio botton and close the Project Pro it automatically open the default account without showing the accounts window  and switches back to 'Use my default account'.
    If these 2 users interested in working offline they have to swich it manually only after the default account opens but they cannot open the second URL.
    Does anyone know of such a case and is there a workaround to solve it?

    Hi Maya,<o:p></o:p>
    Do you see this behavior on multiple machines or single machine?<o:p></o:p>
    Try removing the accounts and recreating it again with "Choose an account" option and check if that helps<o:p></o:p>
    Also let us know what value you see for the "Autoconnect" registry key at below location?<o:p></o:p>
    Hkey_current_user\Software\Microsoft\Office\14.0\MS Project\Settings\<o:p></o:p>
    Thanks,<o:p></o:p>
    Kiran K.<o:p></o:p>

  • I have an iPad. Why is it not easy to find "log in" and also to be able to see the balance remaining in the account , once a gift card has been redeemed ? It is very clumsy, not clear which site to be in even!

    I have an iPad, iPhone and MacBook.
    Can someone please explain where to first of all go (which website) to find "Log In". I seem to do this only by accidentally finding it - going from site to site or page to page. Not sure which. Today, all I wanted to do was look at my account to see how much was left in my account of a gift card I redeemed. I think I am still unsure of the relationship "iTunes" has to products I buy for any device. I thought that I just needed to go to www.iTunes.ca and look for a sign in link. I thought that this account is my sole apple account for any product for any device. Obviously I am not as intuitive as Apple. Help.

    You can't log into any site and see your account's balance. You can log into your account on your iPad via Settings > iTunes & App Store - on my iOS devices my balance shows at the bottom of, for example, the Featured tab in the App Store app under my account id (or you can view your account via Settings > iTunes & App Stores and it should show on the screen that you are taken to). You may not see anything if your account's balance is zero.
    Not sure what you mean by relationship iTunes has to products. You can buy music, films, TV shows, audiobooks via the iTunes app on your iPad, and apps via the App Store app - what you buy will be tied to your iTunes account.

  • How to make cash account balance Zero at the end of the year

    Hi,
    We have one account 200180 with 1000 Company code( Germany), and document currency is HKD(Hong kong Dollor), but LC is Euro and it is a cash account. At the end of the year, this account shows 0 balance in HKD, and 10,000 in Euro. I understand that it is because of difference in exchange rates every month. Shall I include this account in foreign currency valuation ? Any other way to make the balance is 0 in Euro?
    RK

    Hi men,
    I think tcode F-05 can solve your problem. You should make some adjustment by using this tcode.
    Good luck.

Maybe you are looking for