Skip to main content

Payables Invoice Validation Status


In Oracle payables, for paying supplier payment we have created the invoices into this modules.
Whenever the invoices is created, how to find out the status of the invoice whether it is validated never validated or approved.

1.       A user is created the invoice manually, the data will be inserted into  different tables
AP_INVOICES_ALL
AP_INVOICE_LINES_ALL
AP_INVOICE_DISTRIBUTIONS_ALL
AP_PAYMENT_SCHEDULES_ALL

To find out the status of the invoices, we need to check the match_status_flag column of ap_invoice_distributions_all table.

1.Match_status_flag = Null
Invoice is Never Validated status
2.Match_status_flag=’A’
 Invoice is Validated Status
3.Match_status_flag=’N’
Invoice is Need Revalidation status
           Api is also available to find the status of the invoices which is given below
             AP_INVOICES_UTILITY_PKG.Get_approval_status(  l_invoice_id IN NUMBER,                              l_invoice_amount           IN NUMBER,  l_payment_status_flag      IN VARCHAR2,                 l_invoice_type_lookup_code IN VARCHAR2)
         How you know who has validated the invoice and who has made the payment for that particular invoices.
We can identified the user who has validated the invoices using ap_invoice_distributions_all table
In ap_invoice_distributions_all table  if the match_status_flag=’A’ then pickup the value of last_updated_by column and find out name in per_people_f table using person_id.
  Select * from per_people_f where person_id=last_updated_by;
  If we using the fnd_user table then the command is
 Select * from fnd_user where employee_id = last_updated_by
For payments we need to check ap_payment_schedules_all tables.
In ap_payment_schedules_all table if the payment_status_flag=’Y’ then pickup the value of last_updated_by column.
  Select * from per_people_f where person_id=last_updated_by;
  If we using the fnd_user table then the command is
 Select * from fnd_user where employee_id = last_updated_by

Comments

Popular posts from this blog

Oracle Subledger Accounting (SLA) Tables, Views

Oracle Subledger Accounting (SLA) Tables, Views Oracle Subledger Accounting Tables: TABLE NAME DESCRIPTION XLA_AAD_GROUPS The XLA_AAD_GROUPS table stores the merge dependencies analyzed during the merge analysis.  All application accounting definitions with the same GROUP_NUM must be merged together. XLA_AAD_HDR_ACCT_ATTRS The XLA_AAD_HDR_ACCT_ATTRS stores standard, system and custom sources assigned to an accounting attribute at the AAD level. XLA_AAD_HEADER_AC_ASSGNS Store the analytical criteria for the application accounting definitions. XLA_AAD_LINE_DEFN_ASSGNS This table stores the journal lines definitions for the application accounting definitions. XLA_AAD_LOADER_DEFNS_T The XLA_AAD_LOADER_DEFNS_T table is the interface table that facilitates the data transfer from data files and the database. XLA_AAD_LOADER_LOGS The XLA_AAD_LOADER_LOGS table stores the errors and logs generated by the application accounting definitions loader. XLA_AAD_SOURCES XLA_AAD_SOURCES table stores a...

O2C Cycle with Accounting Entries

  ORDER    TO  CASH  PARTICULARS  DR  CR SPL NOTES ACCOUNT IS PULLED FROM Sales order entry No Accounting Sales Order Pick From Sub Inventory A/c 100 At Standard Cost Sub-inventory Material A/c Setup To Sub Inventory A/c 100 At Standard Cost(Staging) Sub-inventory Material A/c Setup Sales Order Issue COGS 100 It can be fetched from five places Master Item/Org/Order Type/Line Type/Shipping Params To Sub Inventory A/c 100 At Standard Cost Sub-inventory Material A/c Setup Transaction level Receivable A/c 120 Auto Accounting Tax A/c 10 Auto Accounting Freight A/c 10 Auto Accounting Revenue A/c 100 Auto Accounting Receipts Receipts with no remittance method Cash 100 Before application of the receipt Receipt class Unapplied A/c 100 Receipt class Unapplied A/c 100 After application of the receipt to the transaction Receipt class Receivables A/c 100 Receipt class Cash A/c 100 Receipt class Unidentified A/c 100 In case of receipt without customer...

R12 Oracle E-Business Tax Configuration Guide

Applies to: Oracle E-Business Tax - Version: 12.0 to 12.2 Information in this document applies to any platform. Abstract R12 Oracle E-Business Tax Configuration Guide Document History R12 Oracle E-Business Tax Configuration 1. Tax Basic Tax Configuration Tax Definition: comprises the tax data that you set up for each tax regime and tax that your company or institution is subject to. The Tax Authority designates the regulations and rates that apply to the tax regime. Required Task List a) External Dependencies Create First Party: Legal Entity and Establishments Create Reporting and Collecting Tax Authorities b) Tax Configuration Create Tax Authorities Party Tax Profiles Create Tax Regimes Create First Party Legal Entity Party Tax Profile Create Tax Create Tax Status Create Tax Jurisdictions Tax Rate Responsibility: Tax Manager Path: Tax Managers -> Tax Managers -> Home Complete the following setup tasks: -Legal Entities and Establishments -Reporting and Collecting Tax Authorities ...