Search Results pon_auc_bizrule_values
Overview
The PON_AUC_BIZRULE_VALUES table is a core data repository within the Oracle E-Business Suite Sourcing (PON) module, specifically for versions 12.1.1 and 12.2.2. It functions as a lookup and configuration table designed to store the permissible or assigned values for negotiation business rules. Business rules in Oracle Sourcing govern the behavior and constraints of negotiation documents, such as RFQs and auctions. This table provides the necessary linkage between a defined business rule, a specific document type, and the concrete value that rule takes for that context. Its role is critical for enforcing procurement policies and ensuring consistent negotiation setup across the enterprise.
Key Information Stored
The table's structure centers on a composite primary key that uniquely identifies a rule value configuration. The key columns are BIZRULE_ID, which references the specific business rule from the PON_AUC_BIZRULES table, and DOCTYPE_ID, which references the applicable document type from the PON_AUC_DOCTYPES table. The third primary key column, LOOKUP_CODE, stores the actual value for the rule. This value is typically a code from a lookup type (e.g., 'YES', 'NO', 'REQUIRED') that defines the rule's setting for the given document type. The table's design allows for multiple values (LOOKUP_CODE) to be associated with a single rule and document type combination, supporting rules that may have a set of valid options.
Common Use Cases and Queries
A primary use case is the validation and population of business rule options during the creation of a negotiation document. When a user selects a document type, the application queries this table to determine which rules are applicable and what values are permitted. For reporting and administration, queries often join this table to its parent tables to generate lists of configured rules. A typical diagnostic query to see all rule values for a specific document type would be:
- SELECT br.rule_name, dt.doctype_name, brv.lookup_code
- FROM pon_auc_bizrule_values brv,
- pon_auc_bizrules br,
- pon_auc_doctypes dt
- WHERE brv.bizrule_id = br.bizrule_id
- AND brv.doctype_id = dt.doctype_id
- AND dt.doctype_name = 'Standard Auction';
Related Objects
The PON_AUC_BIZRULE_VALUES table maintains defined foreign key relationships with two key parent tables in the Sourcing schema, as documented in the ETRM metadata.
- PON_AUC_BIZRULES: This table defines the master list of available business rules. The relationship is established via the column PON_AUC_BIZRULE_VALUES.BIZRULE_ID, which references PON_AUC_BIZRULES.
- PON_AUC_DOCTYPES: This table defines the negotiation document types (e.g., RFQ, Auction). The relationship is established via the column PON_AUC_BIZRULE_VALUES.DOCTYPE_ID, which references PON_AUC_DOCTYPES.
These relationships ensure referential integrity, meaning a rule value cannot exist without a valid parent business rule and document type.
-
Table: PON_AUC_BIZRULE_VALUES
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUC_BIZRULE_VALUES, object_name:PON_AUC_BIZRULE_VALUES, status:VALID, product: PON - Sourcing , description: Stores the value for the negotiation business rule , implementation_dba_data: PON.PON_AUC_BIZRULE_VALUES ,
-
Table: PON_AUC_BIZRULE_VALUES
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUC_BIZRULE_VALUES, object_name:PON_AUC_BIZRULE_VALUES, status:VALID, product: PON - Sourcing , description: Stores the value for the negotiation business rule , implementation_dba_data: PON.PON_AUC_BIZRULE_VALUES ,
-
VIEW: PON.PON_AUC_BIZRULE_VALUES#
12.2.2
owner:PON, object_type:VIEW, object_name:PON_AUC_BIZRULE_VALUES#, status:VALID,
-
VIEW: PON.PON_AUC_BIZRULE_VALUES#
12.2.2
-
TABLE: PON.PON_AUC_BIZRULE_VALUES
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUC_BIZRULE_VALUES, object_name:PON_AUC_BIZRULE_VALUES, status:VALID,
-
TABLE: PON.PON_AUC_BIZRULE_VALUES
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUC_BIZRULE_VALUES, object_name:PON_AUC_BIZRULE_VALUES, status:VALID,
-
SYNONYM: APPS.PON_AUC_BIZRULE_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PON_AUC_BIZRULE_VALUES, status:VALID,
-
SYNONYM: APPS.PON_AUC_BIZRULE_VALUES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PON_AUC_BIZRULE_VALUES, status:VALID,
-
TRIGGER: APPS.PON_AUC_BIZRULE_VALUES+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:PON_AUC_BIZRULE_VALUES+, status:VALID,
-
TRIGGER: APPS.PON_AUC_BIZRULE_VALUES+
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: PON_AUC_BIZRULES
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUC_BIZRULES, object_name:PON_AUC_BIZRULES, status:VALID, product: PON - Sourcing , description: Stores negotiations business rules , implementation_dba_data: PON.PON_AUC_BIZRULES ,
-
Table: PON_AUC_BIZRULES
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUC_BIZRULES, object_name:PON_AUC_BIZRULES, status:VALID, product: PON - Sourcing , description: Stores negotiations business rules , implementation_dba_data: PON.PON_AUC_BIZRULES ,
-
12.2.2 DBA Data
12.2.2
-
FUNCTION: APPS.PON_AUC_BIZRULE_VALUES=
12.2.2
-
Table: PON_AUC_DOCTYPES
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUC_DOCTYPES, object_name:PON_AUC_DOCTYPES, status:VALID, product: PON - Sourcing , description: Stores the negotiation document type , implementation_dba_data: PON.PON_AUC_DOCTYPES ,
-
Table: PON_AUC_DOCTYPES
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUC_DOCTYPES, object_name:PON_AUC_DOCTYPES, status:VALID, product: PON - Sourcing , description: Stores the negotiation document type , implementation_dba_data: PON.PON_AUC_DOCTYPES ,
-
FUNCTION: APPS.PON_AUC_BIZRULE_VALUES=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:PON_AUC_BIZRULE_VALUES=, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
eTRM - PON Tables and Views
12.1.1
description: Holds the debug statements for workflow processes ,
-
eTRM - PON Tables and Views
12.2.2
description: Holds the debug statements for workflow processes ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,
-
eTRM - PON Tables and Views
12.1.1
description: Holds the debug statements for workflow processes ,
-
eTRM - PON Tables and Views
12.2.2
description: Holds the debug statements for workflow processes ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1