Search Results min_start_date
Overview
The Oracle EBS view APPS.PN_ADJUSTMENT_DETAILS_V is an aggregation view that summarizes payment adjustment detail records held in the Oracle Property Manager (PN) module. Rather than exposing the individual adjustment rows stored at the transaction level, this view consolidates them into a single row per combination of GROUP_NUM and TERM_HISTORY_ID. It is a read-only reporting object, typically used to present the effective span and net amount of a group of adjustments in a single summarized line.
The view plays a supporting role in reporting and integration. Because it collapses many adjustment rows into a single consolidated record, it is well suited to inquiries and extracts that need to display the overall start date, end date, and total adjustment amount for a group without processing each constituent detail row. It is commonly referenced in the context of lease/term adjustment analysis within Oracle Property Manager.
Underlying Base Objects
The view is owned by the APPS schema and is defined over a single referenced base object: the synonym PN_ADJUSTMENT_DETAILS. In practice this synonym resolves to the underlying PN_ADJUSTMENT_DETAILS table that stores the granular adjustment records.
The view definition is an aggregate query that applies the following operations against the base table:
MIN(pad.adj_start_date)aggregated intoMIN_START_DATE— the earliest adjustment start date within the group.MAX(pad.adj_end_date)aggregated intoMAX_END_DATE— the latest adjustment end date within the group.SUM(pad.adjustment_amount)aggregated intoADJUSTMENT_AMOUNT— the total adjustment amount for the group.
The rows are grouped by pad.group_num and pad.term_history_id, with term_history_id and group_num carried through as non-aggregated grouping columns. This structure means the view is fully derived from PN_ADJUSTMENT_DETAILS and introduces no additional tables or joins.
Key Columns
The view exposes five columns, all sourced from PN_ADJUSTMENT_DETAILS:
- TERM_HISTORY_ID — Identifier linking the adjustment group to the associated term history record; a grouping key in the view.
- GROUP_NUM — The group number that partitions the underlying adjustment details; the second grouping key.
- MIN_START_DATE — The minimum (earliest)
ADJ_START_DATEacross all rows in the group. This is the column most relevant to searches involvingmin_start_date. - MAX_END_DATE — The maximum (latest)
ADJ_END_DATEacross all rows in the group. - ADJUSTMENT_AMOUNT — The sum of
ADJUSTMENT_AMOUNTfor all detail rows in the group.
Because MIN_START_DATE is an aggregate, it represents the effective earliest start of an adjustment group rather than the start date of any single detail record.
Common Use Cases and Queries
Typical use cases include summarizing adjustment activity by term history and group, identifying the effective period covered by a set of adjustments, and totalling adjustment amounts for reporting. A representative query filtering on the aggregated start date is:
SELECT term_history_id,
group_num,
min_start_date,
max_end_date,
adjustment_amount
FROM apps.pn_adjustment_details_v
WHERE min_start_date >= :p_start_date
ORDER BY min_start_date, group_num;
Because MIN_START_DATE is an aggregate expression, filtering on it in the WHERE clause is valid here since the column is exposed directly by the view. Users performing date-based searches, such as for min_start_date, should note that only the earliest start date within each group is returned. To retrieve the full detail behind any group, query the base PN_ADJUSTMENT_DETAILS table using the corresponding GROUP_NUM and TERM_HISTORY_ID.
-
VIEW: APPS.PN_ADJUSTMENT_DETAILS_V
12.1.1
-
VIEW: APPS.PN_ADJUSTMENT_DETAILS_V
12.2.2
-
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 ,
-
PACKAGE: APPS.PSP_PSPENEXR_XMLP_PKG
12.1.1
-
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 ,
-
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,
-
PACKAGE: APPS.PSP_PSPENEXR_XMLP_PKG
12.2.2
-
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
-
PACKAGE BODY: APPS.PSP_PSPENEXR_XMLP_PKG
12.1.1
-
APPS.PSP_PSPENEXR_XMLP_PKG SQL Statements
12.1.1
-
VIEW: PJI.PJI_FM_XBS_ACCUM_INT#
12.2.2
-
VIEW: MSC.MSC_STORE_SUPPLIES#
12.2.2
-
VIEW: MSC.MSC_SUPPLIES#
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_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_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,
-
VIEW: MSC.MSC_STORE_SUPPLIES#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_STORE_SUPPLIES#, 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,
-
VIEW: MSC.MSC_SUPPLIES#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_SUPPLIES#, status:VALID,
-
APPS.PAY_IPD_BUS SQL Statements
12.2.2
-
APPS.PAY_IPD_BUS SQL Statements
12.1.1
-
APPS.PAY_SID_BUS SQL Statements
12.2.2
-
APPS.PAY_SID_BUS SQL Statements
12.1.1
-
APPS.PA_SCHEDULE_UTILS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_INTEGRATION_UTILS
12.2.2
-
APPS.GME_CREATE_STEP_PVT SQL Statements
12.1.1
-
APPS.PA_SCHEDULE_UTILS SQL Statements
12.2.2
-
APPS.GME_CREATE_STEP_PVT SQL Statements
12.2.2
-
APPS.PJI_FM_XBS_ACCUM_UTILS SQL Statements
12.1.1
-
APPS.PAY_GB_P11D_MILEAGE_EXTRACT SQL Statements
12.1.1
-
APPS.MSC_RESTORE_FIRM_PO SQL Statements
12.2.2
-
APPS.HR_ORI_BUS SQL Statements
12.1.1
-
APPS.HR_ORI_BUS SQL Statements
12.2.2
-
APPS.MSC_COPY_PLAN_OPTIONS SQL Statements
12.1.1
-
APPS.MSC_RESTORE_FIRM_PO SQL Statements
12.1.1
-
APPS.MSC_COPY_PLAN_OPTIONS SQL Statements
12.2.2
-
TABLE: MSC.MSC_STORE_SUPPLIES
12.2.2
owner:MSC, object_type:TABLE, object_name:MSC_STORE_SUPPLIES, status:VALID,
-
TABLE: MSC.MSC_STORE_SUPPLIES
12.1.1
owner:MSC, object_type:TABLE, object_name:MSC_STORE_SUPPLIES, status:VALID,
-
TABLE: MSC.MSC_SUPPLIES
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SUPPLIES, object_name:MSC_SUPPLIES, status:VALID,
-
PACKAGE BODY: APPS.GME_RESCHEDULE_BATCH_PVT
12.2.2
-
PACKAGE BODY: APPS.GME_RESCHEDULE_BATCH_PVT
12.1.1
-
TABLE: MSC.MSC_SUPPLIES
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SUPPLIES, object_name:MSC_SUPPLIES, status:VALID,
-
APPS.QP_PS_ATTR_GRP_PVT SQL Statements
12.2.2
-
APPS.PAY_GB_P11D_MILEAGE_EXTRACT SQL Statements
12.2.2
-
APPS.PJI_FM_XBS_ACCUM_UTILS SQL Statements
12.2.2
-
PACKAGE: APPS.ARP_ADDS_MINUS99
12.1.1
-
APPS.GME_RESCHEDULE_BATCH_PVT SQL Statements
12.1.1