Search Results pn_var_bkpts_head
Overview
APPS.PN_VAR_BKPTS_HEAD_V is a reporting and inquiry view in Oracle E-Business Suite Property Manager (PN), the ETRM module responsible for managing real estate leases, variable rent, and breakpoints. The view exposes the breakpoint header definition for variable rent schedules together with the reporting frequency of the underlying variable rent record. It is defined over PN_VAR_BKPTS_HEAD, PN_VAR_RENT_DATES_ALL, and FND_LOOKUPS, producing a denormalized result set that joins each breakpoint header to its parent variable rent date record and resolves the reporting frequency code to a user-facing meaning. Because it is owned by APPS and defined as a view (not a table), it is read-only and intended for reporting, concurrent-program queries, Oracle Forms LOVs, and integration extracts rather than for transactional DML. The view is available in both EBS 12.1.1 and 12.2.2; the documented metadata reflects the 12.2.2 ETRM definition.
Underlying Base Objects
The documented base objects and their roles are:
- PN_VAR_BKPTS_HEAD (synonym) — The primary breakpoint header table, aliased
bkheadin the view text. It supplies the breakpoint header identifier, break type, base rent attributes, natural break rate, breakpoint type, descriptive flexfield columns, and the ORG_ID operating unit column. - PN_VAR_RENT_DATES_ALL (synonym) — The variable rent dates table, aliased
dat. It is joined to the breakpoint header onVAR_RENT_IDand contributesREPTG_FREQ_CODE, which is projected asfrequency_code. - FND_LOOKUPS (view) — The standard Oracle Application Object Library lookup view, aliased
fnd1. It is joined with outer-join syntax onlookup_type = 'PN_PAYMENT_FREQUENCY_TYPE'andlookup_code = dat.reptg_freq_codeto resolve the meaning of the reporting frequency, projected asfrequency. - FND_GLOBAL (package) — Not referenced in the visible SELECT text but documented as a base object; FND_GLOBAL supplies session context (user, responsibility, org) used by multi-org and security predicates applied to the view.
Key Columns
- BKPT_HEADER_ID — Primary key of the breakpoint header record.
- LINE_ITEM_ID — The lease line item to which the breakpoint header belongs.
- PERIOD_ID — The period associated with the breakpoint definition.
- BREAK_TYPE, BASE_RENT_TYPE, BREAKPOINT_TYPE — Codes describing the break structure, base rent method, and breakpoint calculation type.
- NATURAL_BREAK_RATE, BASE_RENT — Numeric attributes driving the breakpoint calculation.
- VAR_RENT_ID — Foreign key linking the header to the variable rent date record; the join key to PN_VAR_RENT_DATES_ALL.
- FREQUENCY_CODE / FREQUENCY — The reporting frequency code from the variable rent dates record and its translated meaning from FND_LOOKUPS.
- BKHD_DEFAULT_ID, BKHD_START_DATE, BKHD_END_DATE — Default identifier and effective date range of the breakpoint header.
- ORG_ID — Operating unit identifier supporting multi-org security.
- ATTRIBUTE_CATEGORY, ATTRIBUTE1–ATTRIBUTE15 — Descriptive flexfield columns.
- ROW_ID — The ROWID pseudo-column of the breakpoint header, exposed for row identification.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
The view is typically used to report breakpoint definitions alongside their variable rent reporting frequency, for reconciliation of variable rent schedules, and for building LOVs or extracts that require the lookup meaning rather than the raw code.
- Listing all breakpoint headers for a line item:
SELECT bkpt_header_id, line_item_id, period_id, break_type, breakpoint_type, base_rent FROM apps.pn_var_bkpts_head_v WHERE line_item_id = :line_item_id; - Resolving breakpoints by frequency meaning:
SELECT bkpt_header_id, var_rent_id, frequency_code, frequency FROM apps.pn_var_bkpts_head_v WHERE frequency = 'Monthly'; - Org-scoped extract:
SELECT bkpt_header_id, org_id, bkhd_start_date, bkhd_end_date FROM apps.pn_var_bkpts_head_v WHERE org_id = :org_id;
Because the join to FND_LOOKUPS is an outer join, records whose reporting frequency code has no matching lookup value are still returned with a null frequency; queries filtering on translated meanings should account for this.
-
VIEW: APPS.PN_VAR_BKPTS_HEAD_V
12.1.1
-
VIEW: APPS.PN_VAR_BKPTS_HEAD_V
12.2.2
-
SYNONYM: APPS.PN_VAR_BKPTS_HEAD
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PN_VAR_BKPTS_HEAD, status:VALID,
-
SYNONYM: APPS.PN_VAR_BKPTS_HEAD
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PN_VAR_BKPTS_HEAD, status:VALID,
-
PACKAGE BODY: APPS.PN_VAR_CHG_CAL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PN_VAR_CHG_CAL_PKG, status:VALID,
-
PACKAGE BODY: APPS.PN_VARIABLE_AMOUNT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PN_VARIABLE_AMOUNT_PKG, status:VALID,
-
PACKAGE BODY: APPS.PN_VARIABLE_AMOUNT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PN_VARIABLE_AMOUNT_PKG, status:VALID,
-
PACKAGE BODY: APPS.PN_VAR_CHG_CAL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PN_VAR_CHG_CAL_PKG, status:VALID,
-
VIEW: APPS.PN_FOR_RENT_DETAILS_V
12.1.1
-
View: PN_VAR_BKPTS_HEAD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_VAR_BKPTS_HEAD_V, object_name:PN_VAR_BKPTS_HEAD_V, status:VALID, product: PN - Property Manager , description: Form view used to input breakpoint header information. , implementation_dba_data: APPS.PN_VAR_BKPTS_HEAD_V ,
-
View: PN_VAR_BKPTS_HEAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_VAR_BKPTS_HEAD_V, object_name:PN_VAR_BKPTS_HEAD_V, status:VALID, product: PN - Property Manager , description: Form view used to input breakpoint header information. , implementation_dba_data: APPS.PN_VAR_BKPTS_HEAD_V ,
-
VIEW: APPS.PN_FOR_RENT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_FOR_RENT_DETAILS_V, object_name:PN_FOR_RENT_DETAILS_V, status:VALID,
-
VIEW: PN.PN_VAR_BKPTS_HEAD_ALL#
12.2.2
owner:PN, object_type:VIEW, object_name:PN_VAR_BKPTS_HEAD_ALL#, status:VALID,
-
VIEW: APPS.PN_FOR_RENT_DETAILS_V
12.2.2
-
VIEW: APPS.PN_FOR_RENT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_FOR_RENT_DETAILS_V, object_name:PN_FOR_RENT_DETAILS_V, status:VALID,
-
VIEW: APPS.PN_VAR_BKPTS_HEAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_VAR_BKPTS_HEAD_V, object_name:PN_VAR_BKPTS_HEAD_V, status:VALID,
-
VIEW: APPS.PN_VAR_BKPTS_HEAD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_VAR_BKPTS_HEAD_V, object_name:PN_VAR_BKPTS_HEAD_V, status:VALID,
-
View: PN_FOR_RENT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_FOR_RENT_DETAILS_V, object_name:PN_FOR_RENT_DETAILS_V, status:VALID, product: PN - Property Manager , description: View for viewing actual variable rent details by line item and group date. , implementation_dba_data: APPS.PN_FOR_RENT_DETAILS_V ,
-
PACKAGE BODY: APPS.PN_VAR_BKPTS_HEAD_PKG
12.1.1
-
PACKAGE BODY: APPS.PN_VAR_BKPTS_HEAD_PKG
12.2.2
-
View: PN_FOR_RENT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_FOR_RENT_DETAILS_V, object_name:PN_FOR_RENT_DETAILS_V, status:VALID, product: PN - Property Manager , description: View for viewing actual variable rent details by line item and group date. , implementation_dba_data: APPS.PN_FOR_RENT_DETAILS_V ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
TABLE: PN.PN_VAR_BKPTS_HEAD_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_VAR_BKPTS_HEAD_ALL, object_name:PN_VAR_BKPTS_HEAD_ALL, status:VALID,
-
APPS.PN_VAR_CHG_CAL_PKG dependencies on PN_VAR_BKPTS_HEAD
12.2.2
-
APPS.PN_VARIABLE_AMOUNT_PKG dependencies on PN_VAR_BKPTS_HEAD
12.2.2
-
APPS.PN_VARIABLE_AMOUNT_PKG dependencies on PN_VAR_BKPTS_HEAD
12.1.1
-
APPS.PN_VAR_CHG_CAL_PKG dependencies on PN_VAR_BKPTS_HEAD
12.1.1
-
APPS.PN_VAR_CHG_CAL_PKG SQL Statements
12.1.1
-
eTRM - PN Tables and Views
12.1.1
description: Interface table to contain batch lines information. ,
-
APPS.PN_VAR_CHG_CAL_PKG SQL Statements
12.2.2
-
eTRM - PN Tables and Views
12.2.2
description: Interface table to contain batch lines information. ,
-
APPS.PN_VAREN_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PN_VAREN_PVT
12.2.2
-
APPS.PN_VAREN_PVT dependencies on FND_MSG_PUB
12.2.2
-
APPS.PN_VAREN_PVT dependencies on FND_MESSAGE
12.2.2
-
PACKAGE BODY: APPS.AD_MORG
12.1.1
-
PACKAGE BODY: APPS.AD_MORG
12.2.2
-
APPS.PN_VAREN_PVT dependencies on FND_API
12.2.2
-
PACKAGE BODY: APPS.PN_VAR_CHG_CAL_PKG
12.2.2
-
PACKAGE BODY: APPS.PN_VAR_CHG_CAL_PKG
12.1.1
-
APPS.PN_VAREN_PVT dependencies on PN_VAREN_UTIL
12.2.2
-
eTRM - PN Tables and Views
12.1.1
description: Interface table to contain batch lines information. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.PN_VAR_RENT_PKG
12.1.1
-
PACKAGE BODY: APPS.PN_VAR_RENT_PKG
12.2.2
-
eTRM - PN Tables and Views
12.2.2
description: Interface table to contain batch lines information. ,