Search Results acc_no




Overview

JE_ZZ_AUDIT_AP_PKG is a custom Oracle Application Object Library PL/SQL package owned by APPS that supports the tax auditing and VAT reporting requirements of Oracle Payables. The header comment (jezzauditapb.pls 120.13, dated 2007/12/31) identifies the package as part of the JE_ZZ custom module, the standard naming prefix used for Oracle E-Business Tax and country-specific localizations related to VAT reporting entities and reporting status. The package is registered as an API classification of OTHER, indicating it is not a public, callable business API but rather a report-support and utility package.

The primary business function is to prepare and populate temporary staging tables used by an Oracle Reports-based audit report, and to expose a set of formula columns and helper functions that the report layout references at runtime. The BeforeReport function is the documented entry point, called by the Reports engine before the data template is processed; it initialises report variables and populates the required temporary data. A notable declaration in this function is l_acc_no VARCHAR2(25), which corresponds to the "acc_no" search term and is one of the variable identifiers used during report initialisation, most likely to carry an account or accounting-flexfield reference used to join or filter transaction data.

Key Procedures and Functions

The package exposes 23 documented procedures and functions, which fall into four functional groups.

Tables Accessed

The package reads and writes both Oracle Payables base tables and Oracle Subledger Accounting tables through APPS synonyms.

Usage Notes

JE_ZZ_AUDIT_AP_PKG is invoked indirectly. Its BeforeReport function is the documented report trigger, meaning the package is called by the Oracle Reports runtime whenever the associated audit report is executed, whether submitted as a concurrent program or through a form-embedded report call. The formula functions are referenced from report formula columns and group filters rather than called directly by application code. The package is referenced by zero other PL/SQL packages, confirming it is a leaf-level report support package. The l_acc_no variable in BeforeReport indicates that account numbers are resolved and cached during report initialisation for use in the data model. The presence of both SET_DISPLAY_FOR_CORE and SET_DISPLAY_FOR_GOV indicates the same report supports commercial and government layouts. Purchasing authorities typically deploy it against Oracle EBS 12.1.1 and 12.2.2 through the APPS schema, with execution privileges granted via standard custom-report setup. Not used for any standard product integration.