Results for “inv_schedule_date”

50+ results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

PN_VAR_GRP_DATES_ALL is a Property Manager (PN) transactional table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores the critical dates associated with a variable rent agreement. Records are created by the periods generation program, which drives the calculation and processing cycles of variable rent agreements. Each row captures a single group-date instance tied to a variable rent agreement and a specific period, providing the scheduling framework used for reporting, invoicing, volumetrics, and deductions.

The table is owned by the PN schema and is documented as VALID, with 21 columns and a primary key constraint, PN_VAR_GRP_DATES_PK, on GRP_DATE_ID. A unique index, PN_VAR_GRP_DATES_U1, also exists on GRP_DATE_ID, distinguishing the surrogate key (GRP_DATE_ID) from documented business-key candidates. Under a heuristic Data Vault classification, the table is hub-leaning: it acts as a durable key-bearing anchor that multiple dependent satellite-style tables reference via GRP_DATE_ID. This classification is offered as a modeling suggestion and should be validated against the actual grain and population of records in a given environment.

Key Information Stored

Each row represents a group date for a variable rent agreement period. The most significant columns include:

Common Use Cases and Queries

Typical reporting scenarios include retrieving upcoming invoice dates, analyzing group date ranges, and joining to related volumetric and deduction tables for summary reporting. A representative query is:

  • SELECT g.GRP_DATE_ID, g.GROUP_DATE, g.INVOICE_DATE, g.PRORATION_FACTOR FROM PN_VAR_GRP_DATES_ALL g WHERE g.VAR_RENT_ID = :p_var_rent_id AND g.ORG_ID = :p_org_id;
  • Join to summaries: SELECT s.* FROM PN_VAR_RENT_SUMM_ALL s, PN_VAR_GRP_DATES_ALL g WHERE s.GRP_DATE_ID = g.GRP_DATE_ID;
  • Volumetric history extraction: SELECT v.* FROM PN_VAR_VOL_HIST_ALL v, PN_VAR_GRP_DATES_ALL g WHERE v.GRP_DATE_ID = g.GRP_DATE_ID AND g.PERIOD_ID = :p_period_id;

Related Objects

The following tables reference PN_VAR_GRP_DATES_ALL through the GRP_DATE_ID column and are the most significant related objects: