Search Results ozf_claim_def_rules_all
Overview
The table OZF_CLAIM_DEF_RULES_ALL is a core data object within the Oracle Trade Management (OZF) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. It functions as a rule repository for automating the default setup of new claims. Its primary role is to define and store business rules that automatically assign a specific claim type, reason, and custom setup to a claim based on its source. This automation streamlines the claim creation process, ensuring consistency and reducing manual data entry by pre-populating key attributes according to predefined organizational logic.
Key Information Stored
The table stores the configuration rules that govern claim defaulting. The most critical columns, as indicated by the primary and foreign key relationships, are ORG_ID, DEFAULTING_RULE_ID, and CLAIM_TYPE_ID. The ORG_ID column supports the multi-organization architecture of EBS, segregating rule data by operating unit. The DEFAULTING_RULE_ID is the unique identifier for each rule record. The CLAIM_TYPE_ID is a foreign key that links to the OZF_CLAIM_TYPES_ALL_B table, specifying the default claim type (e.g., a promotional accrual or a sample claim) to be applied. While the provided metadata does not list all columns, the table's description confirms it also stores the default reason and custom setup information associated with a claim source.
Common Use Cases and Queries
The primary use case is during the transactional creation of a claim, where the application references this table to determine the appropriate defaults. Administrators use interfaces within the Trade Management module to maintain these rules. For reporting and analysis, common queries involve joining this table with the claim types table to audit or verify defaulting rules. A typical SQL pattern to list all active defaulting rules for an operating unit would be:
- SELECT rule.defaulting_rule_id, rule.claim_type_id, type.claim_type_name FROM ozf_claim_def_rules_all rule, ozf_claim_types_all_b type WHERE rule.claim_type_id = type.claim_type_id AND rule.org_id = 123;
This is essential for ensuring that claims generated from different source systems, such as order management or inventory, inherit the correct financial and operational attributes.
Related Objects
OZF_CLAIM_DEF_RULES_ALL has documented relationships with other key tables in the Trade Management schema, primarily through foreign key constraints. The most significant relationship is with the claim types master table.
- OZF_CLAIM_TYPES_ALL_B: This table is referenced via the foreign key on the CLAIM_TYPE_ID column. This join retrieves the descriptive name and configuration details of the default claim type assigned by the rule.
- Primary Key Constraint: The table's primary key is OZF_CLAIM_DEF_RULES_ALL_PK, composed of ORG_ID and DEFAULTING_RULE_ID. This unique constraint is likely referenced by other tables or internal logic that depend on a specific rule instance.
While not listed in the provided excerpt, this table is also logically central to the claim creation workflow and is likely referenced by the main claims transaction table (OZF_CLAIMS_ALL) or related APIs to apply the default values during data entry.
-
Table: OZF_CLAIM_DEF_RULES_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_DEF_RULES_ALL, object_name:OZF_CLAIM_DEF_RULES_ALL, status:VALID, product: OZF - Trade Management , description: This table stores the default claim type, reason and custom setup a claim source , implementation_dba_data: OZF.OZF_CLAIM_DEF_RULES_ALL ,
-
Table: OZF_CLAIM_DEF_RULES_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_DEF_RULES_ALL, object_name:OZF_CLAIM_DEF_RULES_ALL, status:VALID, product: OZF - Trade Management , description: This table stores the default claim type, reason and custom setup a claim source , implementation_dba_data: OZF.OZF_CLAIM_DEF_RULES_ALL ,
-
Table: OZF_CLAIM_TYPES_ALL_B
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_B, object_name:OZF_CLAIM_TYPES_ALL_B, status:VALID, product: OZF - Trade Management , description: This table is used to store Claim Types (Base Table) , implementation_dba_data: OZF.OZF_CLAIM_TYPES_ALL_B ,
-
Table: OZF_CLAIM_TYPES_ALL_B
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_B, object_name:OZF_CLAIM_TYPES_ALL_B, status:VALID, product: OZF - Trade Management , description: This table is used to store Claim Types (Base Table) , implementation_dba_data: OZF.OZF_CLAIM_TYPES_ALL_B ,