Search Results pv_ge_history_log_params_pk
Overview
The PV_GE_HISTORY_LOG_PARAMS table is a core data object within the Oracle E-Business Suite Partner Management (PV) module. It functions as a parameter container, specifically designed to store tokenized data associated with historical transaction logging. Its primary role is to support the detailed audit trail and change history mechanism for partner-related entities. When a significant event or update occurs within the Partner Management module, the system logs a high-level transaction record in a related table. This table, PV_GE_HISTORY_LOG_PARAMS, provides the granular, variable parameters (tokens) that give context and specific detail to those logged transactions, enabling comprehensive historical reporting and traceability.
Key Information Stored
The table's structure is centered around linking parameter details to a parent history log entry and storing the parameter values themselves. While the full column list is not detailed in the provided metadata, the documented constraints indicate its critical components. The primary key, HISTORY_LOG_PARAM_ID, uniquely identifies each parameter record. The foreign key column, ENTITY_HISTORY_LOG_ID, is essential as it links each parameter set to its corresponding master history log record in the PV_GE_HISTORY_LOG_B table. Other typical columns in such a parameter table would include fields for a parameter name or token identifier, the parameter value (often stored as a VARCHAR2), and potentially sequence numbers to maintain the order of multiple parameters for a single log entry.
Common Use Cases and Queries
This table is primarily accessed for generating detailed audit reports and diagnosing the sequence of changes in partner records. Common use cases include reviewing the complete history of a specific partner's profile updates, understanding the exact values changed during a transaction, or complying with data governance audits. A typical query would join this table to its parent log table to reconstruct a full historical event.
Sample Query Pattern:
SELECT hlb.LOG_DATE, hlb.ENTITY_NAME, hlparm.PARAM_NAME, hlparm.PARAM_VALUE
FROM PV_GE_HISTORY_LOG_B hlb,
PV_GE_HISTORY_LOG_PARAMS hlparm
WHERE hlb.ENTITY_HISTORY_LOG_ID = hlparm.ENTITY_HISTORY_LOG_ID
AND hlb.PARTNER_ID = :p_partner_id
ORDER BY hlb.LOG_DATE DESC;
Related Objects
The table has a direct and critical dependency on the PV_GE_HISTORY_LOG_B table, as defined by its foreign key constraint. This relationship is the cornerstone of the history logging architecture within Partner Management.
- Primary Key: PV_GE_HISTORY_LOG_PARAMS_PK on column HISTORY_LOG_PARAM_ID.
- Foreign Key (References): The table PV_GE_HISTORY_LOG_PARAMS contains a foreign key column, ENTITY_HISTORY_LOG_ID, which references the PV_GE_HISTORY_LOG_B table. This establishes a one-to-many relationship where a single history log entry in PV_GE_HISTORY_LOG_B can have multiple associated parameter records in PV_GE_HISTORY_LOG_PARAMS.
-
Table: PV_GE_HISTORY_LOG_PARAMS
12.1.1
owner:PV, object_type:TABLE, fnd_design_data:PV.PV_GE_HISTORY_LOG_PARAMS, object_name:PV_GE_HISTORY_LOG_PARAMS, status:VALID, product: PV - Partner Management , description: Container for token parameters of history log transaction. , implementation_dba_data: PV.PV_GE_HISTORY_LOG_PARAMS ,
-
Table: PV_GE_HISTORY_LOG_PARAMS
12.2.2
owner:PV, object_type:TABLE, fnd_design_data:PV.PV_GE_HISTORY_LOG_PARAMS, object_name:PV_GE_HISTORY_LOG_PARAMS, status:VALID, product: PV - Partner Management , description: Container for token parameters of history log transaction. , implementation_dba_data: PV.PV_GE_HISTORY_LOG_PARAMS ,