Search Results limit_buyer




Overview

APPS.WIP_WIPDJORQ_XMLP_PKG is the server-side PL/SQL package body that backs the Oracle Work in Process concurrent program "Discrete Job Detail" (short name WIPDJORQ). Under Oracle EBS 12.1.1 and 12.2.2 the package follows the standard XML Publisher/BI Publisher report architecture used in the Oracle Applications technology stack: a report-specific package encapsulates the SQL parameter logic, lexical fragment builders, and group-level formula computations that the report definition references. This particular package is classified as OTHER in the ETRM repository, indicating it is not a public API but an internal report-support package, owned by APPS and not referenced by any other package.

The package serves the business requirement of producing a printable and exportable listing of discrete jobs for a given organization, together with their material requirements, component availability, and net requirements. It does so by translating the user's concurrent program parameters into SQL fragments that the underlying query substitutes lexically, and by computing derived quantities and break values through XML Publisher formula columns.

Key Procedures and Functions

The documented structure comprises thirty procedures and functions. The principal ones are:

Tables Accessed

No base tables are documented against this package in the ETRM repository; the data access is performed by the embedded report query in the corresponding XML report definition rather than by explicit SQL inside the package body. The lexical fragments emitted by the package reference the WIP entity and job tables through their APPS synonyms, notably the work in process entity view used for WIP_ENTITY_NAME and the material requirements table used for date_required. The flexfield user exit references the INV application for the MSTK (stock) key flexfield, supplying the assembly display value into parameter :P_ASSY.

Usage Notes

The package is invoked exclusively through the Discrete Job Detail concurrent program or its corresponding XML Publisher report run from the Requests form; because it is catalogued as OTHER and is referenced by zero other packages, Oracle does not support calling it from custom code. Its behavior is driven entirely by the concurrent program parameter set. The parameter p_sort_by, which the search string references, is not a documented member of this package — sort sequencing for the report is supplied by the C_COMPONENT_SORTFORMULA and C_BREAK_* formula functions instead, so administrators seeking to influence report ordering should review those formula columns and the report's own parameter definitions rather than package-level members.

Standard customization guidance applies: the shipped package is a locked Oracle object and should not be modified directly. Parameter-driven personalization, the XML report data template, and any downstream extensions should be implemented through supported XML Publisher layouts or a custom copy of the package under a customer schema prefix.