Search Results ozf_claim_types_all_b
Overview
The OZF_CLAIM_TYPES_ALL_B table is a core base table within the Oracle Trade Management (OZF) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. It serves as the master repository for defining and storing claim types, which are fundamental classifications for trade promotions and claims processing. As a multi-organization enabled table (indicated by the "_ALL" suffix), it supports the storage of data across multiple operating units, a critical feature for enterprise deployments. The table's primary role is to provide a validated set of claim types that govern the creation, processing, and approval workflows for claims throughout the system. Its integrity is enforced as the parent table in several key foreign key relationships, making it a central reference point for trade management configuration and transactional data.
Key Information Stored
While the provided metadata does not list specific columns, the table's structure is defined by its primary and foreign key relationships. The primary key column, CLAIM_TYPE_ID, is the unique identifier for each claim type record. As a base table, OZF_CLAIM_TYPES_ALL_B typically stores the core, non-translatable attributes of a claim type. These attributes likely include system-critical information such as an active/inactive flag, creation and last update dates, and the identifier for the operating unit (ORG_ID). The corresponding translation table, OZF_CLAIM_TYPES_ALL_TL, would store language-specific descriptions for the claim types defined in this base table, linked via the CLAIM_TYPE_ID column.
Common Use Cases and Queries
This table is primarily used for setup, reporting, and data validation. Administrators use it to define the list of permissible claim types available during claim entry. Common operational and reporting queries involve joining this table to transactional data to analyze claims by type. A typical SQL pattern retrieves a list of active claim types for a given operating unit, often joined with its translation table for user-friendly descriptions:
SELECT b.CLAIM_TYPE_ID, tl.NAME FROM OZF_CLAIM_TYPES_ALL_B b, OZF_CLAIM_TYPES_ALL_TL tl WHERE b.CLAIM_TYPE_ID = tl.CLAIM_TYPE_ID AND b.ORG_ID = :org_id AND SYSDATE BETWEEN NVL(tl.START_DATE_ACTIVE, SYSDATE) AND NVL(tl.END_DATE_ACTIVE, SYSDATE);
Another critical use case is validating claim data integrity, ensuring that every claim in the OZF_CLAIMS_ALL table references a valid CLAIM_TYPE_ID present in this master table.
Related Objects
The OZF_CLAIM_TYPES_ALL_B table is a central reference point within the Trade Management schema, as evidenced by its documented foreign key relationships. The following objects have a direct dependency on it:
- OZF_CLAIMS_ALL: The primary transactional table for claims references this table via CLAIM_TYPE_ID to classify each claim.
- OZF_CLAIM_DEF_RULES_ALL: Claim deduction rules are associated with a specific claim type via CLAIM_TYPE_ID.
- OZF_CLAIM_TYPES_ALL_TL: The translation table for claim type descriptions, linked by CLAIM_TYPE_ID.
- OZF_SYS_PARAMETERS_ALL: System parameters reference this table twice: once for a default CLAIM_TYPE_ID and once for an AUTOPAY_CLAIM_TYPE_ID, indicating its role in defining system-wide defaults and automated payment processing behavior.
-
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 ,
-
APPS.OZF_MASS_SETTLEMENT_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.2.2
-
APPS.OZF_CLAIM_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.2.2
-
APPS.OZF_AR_INTERFACE_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.1.1
-
APPS.OZF_AR_PAYMENT_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.1.1
-
APPS.OZF_CLAIM_TAX_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.2.2
-
APPS.OZF_FUND_UTILIZED_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.2.2
-
APPS.OZF_FUND_UTILIZED_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.1.1
-
APPS.DPP_XLA_EVENT_PUB dependencies on OZF_CLAIM_TYPES_ALL_B
12.1.1
-
APPS.OZF_CLAIM_TYPES_ALL_PKG dependencies on OZF_CLAIM_TYPES_ALL_B
12.1.1
-
APPS.OZF_GL_INTERFACE_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.2.2
-
APPS.OZF_ACCT_GENERATOR dependencies on OZF_CLAIM_TYPES_ALL_B
12.2.2
-
APPS.OZF_AR_INTERFACE_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.2.2
-
APPS.OZF_CLAIM_TAX_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.1.1
-
APPS.OZF_MASS_SETTLEMENT_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.1.1
-
APPS.OZF_GL_INTERFACE_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.1.1
-
APPS.DPP_XLA_EVENT_PUB dependencies on OZF_CLAIM_TYPES_ALL_B
12.2.2
-
APPS.OZF_AR_PAYMENT_PVT dependencies on OZF_CLAIM_TYPES_ALL_B
12.2.2
-
APPS.OZF_CLAIM_TYPES_ALL_PKG dependencies on OZF_CLAIM_TYPES_ALL_B
12.2.2
-
VIEW: APPS.OZF_CLAIM_TYPES_ALL_B_DFV
12.2.2
-
VIEW: APPS.OZF_CLAIM_TYPES_ALL_B_DFV
12.1.1
-
Table: OZF_SYS_PARAMETERS_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_SYS_PARAMETERS_ALL, object_name:OZF_SYS_PARAMETERS_ALL, status:VALID, product: OZF - Trade Management , description: This table stores the system parameters for General Ledger interface , implementation_dba_data: OZF.OZF_SYS_PARAMETERS_ALL ,
-
APPS.DPP_XLA_EVENT_PUB dependencies on OZF_CLAIMS_ALL
12.2.2
-
SYNONYM: APPS.OZF_CLAIM_TYPES_ALL_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OZF_CLAIM_TYPES_ALL_B, status:VALID,
-
TRIGGER: APPS.OZF_CLAIM_TYPES_ALL_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:OZF_CLAIM_TYPES_ALL_B+, status:VALID,
-
VIEW: OZF.OZF_CLAIM_TYPES_ALL_B#
12.2.2
owner:OZF, object_type:VIEW, object_name:OZF_CLAIM_TYPES_ALL_B#, status:VALID,
-
Table: OZF_SYS_PARAMETERS_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_SYS_PARAMETERS_ALL, object_name:OZF_SYS_PARAMETERS_ALL, status:VALID, product: OZF - Trade Management , description: This table stores the system parameters for General Ledger interface , implementation_dba_data: OZF.OZF_SYS_PARAMETERS_ALL ,
-
SYNONYM: APPS.OZF_CLAIM_TYPES_ALL_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OZF_CLAIM_TYPES_ALL_B, status:VALID,
-
APPS.DPP_XLA_EVENT_PUB dependencies on OZF_CLAIMS_ALL
12.1.1
-
TRIGGER: APPS.OZF_CLAIM_TYPES_ALL_B+
12.2.2
-
VIEW: APPS.OZF_CLAIM_TYPES_ALL_VL
12.2.2
-
APPS.OZF_CLAIM_TYPES_ALL_PKG SQL Statements
12.1.1
-
APPS.OZF_CLAIM_TYPES_ALL_PKG SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.OZF_CLAIM_TYPES_ALL_VL
12.1.1
-
Table: OZF_CLAIM_TYPES_ALL_TL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_TL, object_name:OZF_CLAIM_TYPES_ALL_TL, status:VALID, product: OZF - Trade Management , description: This table is used to store Claim Types (Translation Table) , implementation_dba_data: OZF.OZF_CLAIM_TYPES_ALL_TL ,
-
Table: OZF_CLAIM_TYPES_ALL_TL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_TL, object_name:OZF_CLAIM_TYPES_ALL_TL, status:VALID, product: OZF - Trade Management , description: This table is used to store Claim Types (Translation Table) , implementation_dba_data: OZF.OZF_CLAIM_TYPES_ALL_TL ,
-
VIEW: OZF.OZF_CLAIM_TYPES_ALL_B#
12.2.2
-
FUNCTION: APPS.OZF_CLAIM_TYPES_ALL_B=
12.2.2
-
FUNCTION: APPS.OZF_CLAIM_TYPES_ALL_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:OZF_CLAIM_TYPES_ALL_B=, status:VALID,
-
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 ,
-
MATERIALIZED VIEW: APPS.OZF_CUST_FUND_SUMMARY_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:OZF_CUST_FUND_SUMMARY_MV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.OZF_CLAIM_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OZF_CLAIM_TYPES, status:VALID,
-
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 ,
-
APPS.OZF_CLAIM_TYPES_ALL_PKG dependencies on OZF_CLAIM_TYPES_ALL_TL
12.2.2
-
APPS.OZF_AR_INTERFACE_PVT dependencies on RA_CUST_TRX_TYPES
12.1.1
-
APPS.OZF_AR_INTERFACE_PVT dependencies on RA_CUST_TRX_TYPES
12.2.2
-
TABLE: OZF.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,