Search Results max_end_date
Overview
PN_ADJUSTMENT_DETAILS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, defined within the Property Manager (PN) product family. It exists to support the Adjustment Details form and its associated inquiry and reporting surfaces. Functionally, the view presents a summarized, grouped projection of adjustment records rather than a row-for-row copy of the underlying detail table. Each row represents one combination of a term history identifier and an adjustment group number, with the individual adjustment lines collapsed into aggregate start date, end date, and monetary totals.
Because the view is a grouping query, it is intended for display and reporting contexts where a consolidated view of adjustment activity is preferable to the raw transactional detail. The term_history_id column is the primary correlation key exposed by the view and links each summarized adjustment group back to the term history record that governs the lease or property term involved. In 12.1.1 and 12.2.2, the object is documented as VALID and carries the standard Oracle proprietary and confidential marking applied to ETRM reference material.
Underlying Base Objects
The view is defined over a single documented base object, PN_ADJUSTMENT_DETAILS, referenced through a synonym. The view text applies a GROUP BY clause on PAD.GROUP_NUM and PAD.TERM_HISTORY_ID, aliasing the base table as PAD. No joins to other tables are present in the documented definition; the view is therefore a pure aggregation layer over PN_ADJUSTMENT_DETAILS.
This has two practical consequences. First, the view cannot be used to retrieve individual adjustment line identifiers, since those columns are removed by the grouping. Second, any filter applied to the view operates on aggregated results, so predicates on date or amount columns test the summarized values rather than the source rows. Consumers requiring line-level detail must query PN_ADJUSTMENT_DETAILS directly.
Key Columns
- TERM_HISTORY_ID — The term history identifier drawn from the base table. It identifies the term record to which the adjustment group belongs and is the principal join key to term history and lease-related data.
- GROUP_NUM — The adjustment group number. Together with TERM_HISTORY_ID it forms the grouping key that determines one output row.
- MIN_START_DATE — The earliest adjustment start date within the group, produced by MIN(PAD.ADJ_START_DATE).
- MAX_END_DATE — The latest adjustment end date within the group, produced by MAX(PAD.ADJ_END_DATE). The pairing of MIN_START_DATE and MAX_END_DATE yields the effective span covered by the group.
- ADJUSTMENT_AMOUNT — The sum of adjustment amounts within the group, produced by SUM(PAD.ADJUSTMENT_AMOUNT).
Common Use Cases and Queries
The view is typically used to display consolidated adjustment information on an Adjustment Details form, to populate reports summarizing adjustments by term history, and to feed integrations that require grouped rather than line-level adjustment data. The following query retrieves all summarized groups for a given term history:
SELECT term_history_id, group_num, min_start_date, max_end_date, adjustment_amountFROM apps.pn_adjustment_details_vWHERE term_history_id = :p_term_history_idORDER BY group_num;
Where only the total adjustment value per term history is required, an additional aggregation over the view is appropriate:
SELECT term_history_id, SUM(adjustment_amount) total_adjustmentFROM apps.pn_adjustment_details_vGROUP BY term_history_id;
Because the view performs aggregation at runtime, queries against it should always constrain TERM_HISTORY_ID or GROUP_NUM where possible to limit the volume of base rows scanned and grouped. For reconciliation or drill-down to individual adjustments, query PN_ADJUSTMENT_DETAILS directly using the same TERM_HISTORY_ID and GROUP_NUM values returned by the view.
-
View: PN_ADJUSTMENT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_ADJUSTMENT_DETAILS_V, object_name:PN_ADJUSTMENT_DETAILS_V, status:VALID, product: PN - Property Manager , description: Adjustment Details Form Views. , implementation_dba_data: APPS.PN_ADJUSTMENT_DETAILS_V ,
-
VIEW: APPS.PN_ADJUSTMENT_DETAILS_V
12.1.1
-
VIEW: APPS.PN_ADJUSTMENT_DETAILS_V
12.2.2
-
View: PN_ADJUSTMENT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_ADJUSTMENT_DETAILS_V, object_name:PN_ADJUSTMENT_DETAILS_V, status:VALID, product: PN - Property Manager , description: Adjustment Details Form Views. , implementation_dba_data: APPS.PN_ADJUSTMENT_DETAILS_V ,
-
PACKAGE: APPS.PSP_PSPENEXR_XMLP_PKG
12.1.1
-
PACKAGE: APPS.PSP_PSPENEXR_XMLP_PKG
12.2.2
-
VIEW: APPS.PN_ADJUSTMENT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_ADJUSTMENT_DETAILS_V, object_name:PN_ADJUSTMENT_DETAILS_V, status:VALID,
-
VIEW: APPS.PN_ADJUSTMENT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_ADJUSTMENT_DETAILS_V, object_name:PN_ADJUSTMENT_DETAILS_V, status:VALID,
-
APPS.PSP_PSPENEXR_XMLP_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PSP_PSPENEXR_XMLP_PKG
12.2.2
-
APPS.PSP_PSPENEXR_XMLP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PSP_PSPENEXR_XMLP_PKG
12.1.1
-
VIEW: PJI.PJI_FM_XBS_ACCUM_INT#
12.2.2
-
APPS.PA_INTEGRATION_UTILS SQL Statements
12.2.2
-
VIEW: PJI.PJI_FM_XBS_ACCUM_INT#
12.2.2
owner:PJI, object_type:VIEW, object_name:PJI_FM_XBS_ACCUM_INT#, status:VALID,
-
TABLE: PJI.PJI_FM_XBS_ACCUM_INT
12.2.2
owner:PJI, object_type:TABLE, fnd_design_data:PJI.PJI_FM_XBS_ACCUM_INT, object_name:PJI_FM_XBS_ACCUM_INT, status:VALID,
-
TABLE: PJI.PJI_FM_XBS_ACCUM_TMP4
12.2.2
owner:PJI, object_type:TABLE, fnd_design_data:PJI.PJI_FM_XBS_ACCUM_TMP4, object_name:PJI_FM_XBS_ACCUM_TMP4, status:VALID,
-
TABLE: PJI.PJI_FM_XBS_ACCUM_TMP1
12.1.1
owner:PJI, object_type:TABLE, object_name:PJI_FM_XBS_ACCUM_TMP1, status:VALID,
-
APPS.JTF_RS_ACTIVE_REC_CONC_PUB SQL Statements
12.1.1
-
APPS.JTF_RS_ACTIVE_REC_CONC_PUB SQL Statements
12.2.2
-
APPS.AP_WEB_MANAGEMENT_REPORTS_PKG SQL Statements
12.1.1
-
APPS.PA_SCHEDULE_UTILS SQL Statements
12.1.1
-
APPS.HR_SALARY_SURVEY_MAPPING_API SQL Statements
12.2.2
-
APPS.AP_WEB_MANAGEMENT_REPORTS_PKG SQL Statements
12.2.2
-
APPS.HR_SALARY_SURVEY_MAPPING_API SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_INTEGRATION_UTILS
12.2.2
-
APPS.PA_SCHEDULE_UTILS SQL Statements
12.2.2
-
APPS.PAY_NL_EOY_PKG SQL Statements
12.2.2
-
APPS.HR_ORI_BUS SQL Statements
12.1.1
-
APPS.PJI_FM_XBS_ACCUM_UTILS SQL Statements
12.1.1
-
APPS.PAY_GB_P11D_MILEAGE_EXTRACT SQL Statements
12.1.1
-
APPS.HR_ORI_BUS SQL Statements
12.2.2
-
APPS.PAY_GB_P11D_MILEAGE_EXTRACT SQL Statements
12.2.2
-
PACKAGE: APPS.PAY_ELEMENT_LINKS_PKG
12.1.1
-
PACKAGE BODY: APPS.JTF_RS_ACTIVE_REC_CONC_PUB
12.1.1
-
PACKAGE BODY: APPS.JTF_RS_ACTIVE_REC_CONC_PUB
12.2.2
-
PACKAGE: APPS.PAY_ELEMENT_LINKS_PKG
12.2.2
-
APPS.QP_PS_ATTR_GRP_PVT SQL Statements
12.2.2
-
APPS.PJI_FM_XBS_ACCUM_UTILS SQL Statements
12.2.2
-
APPS.PAY_US_OVER_LIMIT_TAX_RPT_PKG SQL Statements
12.2.2
-
PACKAGE: APPS.ARP_ADDS_MINUS99
12.1.1
-
PACKAGE: APPS.ARP_ADDS_MINUS99
12.2.2
-
PACKAGE BODY: APPS.PJI_FM_XBS_ACCUM_UTILS
12.1.1
-
APPS.PAY_US_OVER_LIMIT_TAX_RPT_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.ARP_ADDS
12.1.1
-
PACKAGE BODY: APPS.ARP_ADDS
12.1.1
-
PACKAGE BODY: APPS.ARP_ADDS
12.2.2
-
APPS.PAY_GB_EDI_P46_CAR SQL Statements
12.1.1
-
PACKAGE: APPS.ARP_ADDS
12.2.2
-
PACKAGE BODY: APPS.PJI_FM_XBS_ACCUM_UTILS
12.2.2