Search Results payment_term_type
Overview
The APPS.PN_VAR_TERMS_V view is a form-driven database object within the Oracle E-Business Suite PN – Property Manager module. Its documented purpose is to expose abatement details associated with variable rent invoices, allowing the Property Manager forms to display and validate payment-term level information alongside vendor, customer, and lease context. The view is VALID and owned by the APPS schema, and is queryable in both EBS 12.1.1 and 12.2.2.
Functionally, the view joins payment terms to variable rent invoices and enriches each row with decoded lookup meanings, supplier details, customer/party information, and a computed flag indicating whether a term exists for the given invoice. This makes it well suited for reporting, form blocks, and lightweight integration extracts where term-level abatement visibility is required without navigating multiple base tables.
Underlying Base Objects
The documented referenced base objects include both tables and supporting lookups:
- PN_PAYMENT_TERMS_ALL – the primary driver supplying payment term attributes (START_DATE, END_DATE, amounts, currency, normalize flag).
- PN_VAR_RENT_INV_ALL and PN_VAR_RENTS_ALL – provide the variable rent invoice and rent identifiers, invoice date, period, and ORG_ID.
- PN_VAR_GRP_DATES_ALL and PN_VAR_PERIODS_ALL – period/date context relevant to abatement grouping.
- PN_VAR_ABATEMENTS_PKG (and the packaged function GET_TERM_EXISTS) – evaluates whether a term exists for a payment term/invoice combination, returning the INCLUDE_TERM flag.
- FND_LOOKUPS – decodes PAYMENT_PURPOSE, PAYMENT_TERM_TYPE, and FREQUENCY_TYPE meanings.
- PO_VENDORS / PO_VENDOR_SITES_ALL – supplier name, number, and site (outer-joined).
- HZ_CUST_ACCOUNTS_ALL, HZ_PARTIES, HZ_CUST_SITE_USES_ALL – customer name, account number, and site use (outer-joined).
- FND_GLOBAL – session/context support used by the underlying package logic.
Key Columns
- INVOICE_DATE, VAR_RENT_INV_ID, VAR_RENT_ID, PERIOD_ID – invoice and rent linkage.
- PAYMENT_TERM_ID, LEASE_ID, START_DATE, END_DATE – term identity and effective range (START_DATE is the field commonly referenced by the "grp_start_date" search, since it drives grouping by term start).
- INCLUDE_TERM – computed via PN_VAR_ABATEMENT_AMOUNT_PKG.GET_TERM_EXISTS; flags whether an abatement term applies.
- PAYMENT_PURPOSE, PAYMENT_TERM_TYPE, FREQUENCY_TYPE – decoded lookup meanings for readability.
- VENDOR_NAME, VENDOR_NUMBER, VENDOR_SITE – supplier context.
- CUSTOMER_NAME, CUSTOMER_NUMBER, CUSTOMER_SITE_USE – customer/party context.
- NORMALIZE, ACTUAL_AMOUNT, ESTIMATED_AMOUNT, CURRENCY_CODE, ORG_ID – financial and organizational attributes.
- ROW_ID, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN – audit and DML support columns.
Common Use Cases and Queries
Typical scenarios include reconciling abatement terms against variable rent invoices, driving Property Manager form blocks, and producing term-level extracts filtered by lease, period, or organization.
Example — active terms for a lease:
SELECT payment_term_id, lease_id, start_date, end_date, payment_term_type, actual_amount
FROM apps.pn_var_terms_v
WHERE lease_id = :p_lease_id
AND sysdate BETWEEN start_date AND end_date;
Example — terms grouped by start date ("grp_start_date"):
SELECT TRUNC(start_date) grp_start_date, COUNT(*) term_count, SUM(actual_amount) total_actual
FROM apps.pn_var_terms_v
WHERE org_id = :p_org_id
AND include_term = 'Y'
GROUP BY TRUNC(start_date)
ORDER BY grp_start_date;
Example — invoice abatement detail:
SELECT invoice_date, var_rent_inv_id, payment_purpose, vendor_name, customer_name, estimated_amount
FROM apps.pn_var_terms_v
WHERE var_rent_inv_id = :p_invoice_id;
Because several joins are outer joins, results may contain NULL vendor or customer fields; consumers should account for this in reporting and integration logic. Access is granted through the APPS schema, and runtime context is supported via FND_GLOBAL.
-
View: PN_VAR_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_VAR_TERMS_V, object_name:PN_VAR_TERMS_V, status:VALID, product: PN - Property Manager , description: Form view used to view abatement details for an invoice. , implementation_dba_data: APPS.PN_VAR_TERMS_V ,
-
VIEW: APPS.PN_VAR_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_VAR_TERMS_V, object_name:PN_VAR_TERMS_V, status:VALID,
-
VIEW: APPS.PN_INDEX_EXCLUDE_TERM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INDEX_EXCLUDE_TERM_V, object_name:PN_INDEX_EXCLUDE_TERM_V, status:VALID,
-
VIEW: APPS.PN_INDEX_EXCLUDE_TERM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INDEX_EXCLUDE_TERM_V, object_name:PN_INDEX_EXCLUDE_TERM_V, status:VALID,
-
View: PN_TERM_TEMPLATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_TERM_TEMPLATES_V, object_name:PN_TERM_TEMPLATES_V, status:VALID, product: PN - Property Manager , description: Form view used to enter/view term template information. , implementation_dba_data: APPS.PN_TERM_TEMPLATES_V ,
-
View: PN_VAR_TERMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_VAR_TERMS_V, object_name:PN_VAR_TERMS_V, status:VALID, product: PN - Property Manager , description: Form view used to view abatement details for an invoice. , implementation_dba_data: APPS.PN_VAR_TERMS_V ,
-
VIEW: APPS.PN_TERM_TEMPLATES_V
12.1.1
-
VIEW: APPS.PN_VAR_TERMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_VAR_TERMS_V, object_name:PN_VAR_TERMS_V, status:VALID,
-
VIEW: APPS.PN_TERM_TEMPLATES_V
12.2.2
-
VIEW: APPS.PN_EXCLUDE_TERMS_V
12.2.2
-
View: PN_INDEX_EXCLUDE_TERM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INDEX_EXCLUDE_TERM_V, object_name:PN_INDEX_EXCLUDE_TERM_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_INDEX_EXCLUDE_TERM_V ,
-
View: PN_INDEX_EXCLUDE_TERM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INDEX_EXCLUDE_TERM_V, object_name:PN_INDEX_EXCLUDE_TERM_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_INDEX_EXCLUDE_TERM_V ,
-
View: PN_TERM_TEMPLATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_TERM_TEMPLATES_V, object_name:PN_TERM_TEMPLATES_V, status:VALID, product: PN - Property Manager , description: Form view used to enter/view term template information. , implementation_dba_data: APPS.PN_TERM_TEMPLATES_V ,
-
View: PN_PAYMENT_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_ITEMS_V, object_name:PN_PAYMENT_ITEMS_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_PAYMENT_ITEMS_V ,
-
VIEW: APPS.PN_VAR_TERMS_V
12.2.2
-
VIEW: APPS.PN_TERM_TEMPLATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_TERM_TEMPLATES_V, object_name:PN_TERM_TEMPLATES_V, status:VALID,
-
View: PN_PAYMENT_TERMS_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_TERMS_HISTORY_V, object_name:PN_PAYMENT_TERMS_HISTORY_V, status:VALID, product: PN - Property Manager , description: Term History Form View. , implementation_dba_data: APPS.PN_PAYMENT_TERMS_HISTORY_V ,
-
VIEW: APPS.PN_EXCLUDE_TERMS_V
12.1.1
-
VIEW: APPS.PN_TERM_TEMPLATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_TERM_TEMPLATES_V, object_name:PN_TERM_TEMPLATES_V, status:VALID,
-
VIEW: APPS.PN_VAR_TERMS_V
12.1.1
-
View: PN_PAYMENT_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_ITEMS_V, object_name:PN_PAYMENT_ITEMS_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_PAYMENT_ITEMS_V ,
-
View: PN_PAYMENT_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_TERMS_V, object_name:PN_PAYMENT_TERMS_V, status:VALID, product: PN - Property Manager , description: Form view used to input payment terms information , implementation_dba_data: APPS.PN_PAYMENT_TERMS_V ,
-
View: PN_PAYMENT_TERMS_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_TERMS_HISTORY_V, object_name:PN_PAYMENT_TERMS_HISTORY_V, status:VALID, product: PN - Property Manager , description: Term History Form View. , implementation_dba_data: APPS.PN_PAYMENT_TERMS_HISTORY_V ,
-
View: PN_PAYMENT_TERMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_TERMS_V, object_name:PN_PAYMENT_TERMS_V, status:VALID, product: PN - Property Manager , description: Form view used to input payment terms information , implementation_dba_data: APPS.PN_PAYMENT_TERMS_V ,
-
VIEW: APPS.PN_PAYMENT_TERMS_HISTORY_V
12.1.1
-
VIEW: APPS.PN_PAYMENT_ITEMS_V
12.2.2
-
VIEW: APPS.PN_EXCLUDE_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:PN_EXCLUDE_TERMS_V, status:VALID,
-
VIEW: APPS.PN_PAYMENT_TERMS_HISTORY_V
12.2.2
-
VIEW: APPS.PN_PAYMENT_ITEMS_V
12.1.1
-
VIEW: APPS.PN_PAYMENT_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_TERMS_V, object_name:PN_PAYMENT_TERMS_V, status:VALID,
-
VIEW: APPS.PN_PAYMENT_TERMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_TERMS_V, object_name:PN_PAYMENT_TERMS_V, status:VALID,
-
VIEW: APPS.PN_EXCLUDE_TERMS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:PN_EXCLUDE_TERMS_V, status:VALID,
-
VIEW: APPS.PN_PAYMENT_TERMS_V
12.1.1
-
VIEW: APPS.PN_PAYMENT_TERMS_V
12.2.2
-
VIEW: APPS.PN_PAYMENT_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_ITEMS_V, object_name:PN_PAYMENT_ITEMS_V, status:VALID,
-
VIEW: APPS.PN_PAYMENT_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_ITEMS_V, object_name:PN_PAYMENT_ITEMS_V, status:VALID,
-
VIEW: APPS.PN_PAYMENT_TERMS_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_TERMS_HISTORY_V, object_name:PN_PAYMENT_TERMS_HISTORY_V, status:VALID,
-
VIEW: APPS.PN_PAYMENT_TERMS_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PAYMENT_TERMS_HISTORY_V, object_name:PN_PAYMENT_TERMS_HISTORY_V, status:VALID,
-
PACKAGE: APPS.PN_LEASE_PVT
12.2.2
-
APPS.PN_LEASE_PVT dependencies on FND_GLOBAL
12.2.2
-
APPS.PN_LEASE_PVT dependencies on PN_PAYMENT_TERMS_ALL
12.2.2
-
PACKAGE BODY: APPS.PN_LEASE_PVT
12.2.2
-
eTRM - PN Tables and Views
12.1.1
description: Interface table to contain batch lines information. ,
-
eTRM - PN Tables and Views
12.2.2
description: Interface table to contain batch lines information. ,
-
APPS.PN_LEASE_PVT dependencies on FND_MESSAGE
12.2.2
-
APPS.PN_LEASE_PVT dependencies on FND_MSG_PUB
12.2.2
-
APPS.PN_LEASE_PVT dependencies on PN_LEASE_UTILS
12.2.2
-
APPS.PN_LEASE_PVT dependencies on FND_API
12.2.2