Search Results hrs_worked




Overview

IGF_SE_PAYMENT_V is an Oracle E-Business Suite supplementary view owned by the APPS schema and registered under FND Design Data as IGF.IGF_SE_PAYMENT_V. It resides in the IGF product family, which supports Oracle's Student Systems / financial aid and disbursement processing. According to its documented View Type, this object is classified as a supplementary view used to simplify forms coding, and Oracle explicitly warns that it should not be queried or altered directly because its definition may change dramatically in subsequent minor or major releases.

Functionally, the view exposes payment-level records tied to payroll disbursement transactions. It presents a denormalized projection of payment rows, including payroll identifiers, dates, person references, fund and authorization references, paid amounts, and audit/WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and so on). The view carries a status of VALID in the documented environment, confirming that its underlying dependencies resolve correctly at that release level.

Underlying Base Objects

The documented dependency list identifies the following base references for the view:

  • APPS.IGF_AW_GEN — the general awards/source generation table referenced by the view definition.
  • APPS.IGF_SE_PAYMENT — the core payment detail (student/disbursement payment) table.

APPS.IGF_SE_PAYMENT_V is not referenced by any other database object, meaning it is a leaf-level reporting/forms convenience object rather than a dependency for other views or packages. The ETRM metadata records no additional documented base objects for this release beyond those above.

Key Columns

The view exposes the following columns, based on documented datatypes and comments:

Common Use Cases and Queries

Because Oracle documents this as a forms-coding aid with a stability warning, production reporting should generally reference the underlying tables (IGF_SE_PAYMENT, IGF_AW_GEN) rather than the view. Where the view is used, functions typically retrieve payment amounts, payroll and person associations, fund/authorization references, and organizational context.

A representative query retrieving selected payment columns follows:

  • SELECT TRANSACTION_ID, PAYROLL_ID, PAYROLL_DATE, PERSON_ID, FUND_ID, AUTH_ID, PAID_AMOUNT, ORG_UNIT_CD FROM APPS.IGF_SE_PAYMENT_V;
  • To constrain by payroll and person: ... WHERE PAYROLL_ID = :payroll_id AND PERSON_ID = :person_id;

Users searching on "hrs_worked" should note that HRS_WORKED exists in this view but is explicitly documented as no longer used and typed as VARCHAR2. It therefore cannot be depended upon for numeric hours reporting in 12.1.1 or 12.2.2; alternative source columns or underlying tables must be consulted for current hours-worked data.