Search Results cf_sumurwmenformula




Overview

APPS.PQH_PQIPED11_XMLP_PKG is a PL/SQL package that implements the server-side logic for the Oracle E-Business Suite concurrent program report PQIPED11, an Oracle Public Sector / Human Resources part-time employment reporting report. The package follows the standard Oracle Reports XML Publisher (XMLP) packaging convention: the report layout is generated by Oracle Reports, while the calculation and formula logic is encapsulated in PL/SQL so that report triggers and formula columns can call into it. The report focuses on part-time employee headcount broken down by race, ethnicity, gender, and instructional versus non-instructional status, which is characteristic of an IPEDS (Integrated Postsecondary Education Data System) regulatory submission used by higher education and public sector institutions.

The package version reflected in the source header is 120.1, dated 2007/12/21, which places it within the 12.1.1 code line and carried forward essentially unchanged into 12.2.2. It is an "OTHER" classified API, meaning Oracle does not document it as a supported public interface; customers should treat it as an internal report implementation object.

Key Procedures and Functions

The package exposes 26 documented program units. The bulk of these are formula functions that return a numeric year-to-date or period total by adding a non-instructional count to an instructional count. Each function corresponds to a specific reporting row:

Parameter variables declared include P_BUSINESS_GROUP_ID, P_CONC_REQUEST_ID, P_REPORT_DATE, and the character parameters CP_FR, CP_FT, CP_PR, CP_PT, which correspond to the four report parameter prompts.

Tables Accessed

The package reads from several HRMS and Public Sector tables through APPS synonyms:

Usage Notes

This package is invoked exclusively from the concurrent program and its accompanying Oracle Reports XMLP definition, not from forms. A user runs the report by selecting the concurrent request parameters (business group, report date, and the four categorical filters). At runtime the Oracle Reports engine fires BEFOREREPORT, executes the data query, and calls the CF_* formula functions for each row of the report output; AFTERREPORT performs final cleanup. Because the package is classified as OTHER and is not a supported public API, it must not be called directly from custom code. It is referenced by zero other packages, confirming it is a leaf report implementation object. The "cf_sumurwmenformula" identifier the user searched for is simply the internal formula function that calculates the non-resident alien female column within this IPEDS part-time employee report.