Search Results ozf_na_deduction_rules_b
Overview
The OZF_NA_DEDUCTION_RULES_B table is a core data object within the Oracle E-Business Suite (EBS) Trade Management module (OZF). It serves as the primary repository for storing the master definitions of Net Accrual Deduction Rules. In the context of trade promotions and funds management, these rules govern how deductions—such as those for co-op advertising, promotional allowances, or volume rebates—are calculated and applied against a customer's net accruals. The table is fundamental to the automated settlement and chargeback processes, ensuring that deductions are processed consistently according to pre-defined business logic. Its existence is critical for managing the financial reconciliation between trading partners.
Key Information Stored
The table stores the structural and control attributes for each deduction rule. While the full column list is not detailed in the provided metadata, the primary key is definitively the NA_DEDUCTION_RULE_ID, a unique system-generated identifier for each rule. Based on standard EBS design patterns for a base table (suffix '_B'), it typically contains columns defining the rule's operational parameters. These likely include fields for the rule name, effective start and end dates, status (e.g., 'Active', 'Inactive'), calculation method, applicable deduction type, and linkage to specific trade programs or customers. The table holds the seed data from which transactional deductions are derived during accrual processing.
Common Use Cases and Queries
This table is primarily accessed for rule setup, maintenance, and inquiry. Common operational scenarios include creating new deduction policies for a trade program, modifying existing rule thresholds, and generating reports on active rules. A typical query might involve joining the table to its descriptive translation table (OZF_NA_DEDUCTION_RULES_TL) to retrieve rule names in a specific language. For example, a report to list all active deduction rules would use SQL similar to:
- SELECT rule.NA_DEDUCTION_RULE_ID, tl.NAME, rule.START_DATE, rule.END_DATE
- FROM OZF_NA_DEDUCTION_RULES_B rule,
- OZF_NA_DEDUCTION_RULES_TL tl
- WHERE rule.NA_DEDUCTION_RULE_ID = tl.NA_DEDUCTION_RULE_ID
- AND tl.LANGUAGE = USERENV('LANG')
- AND rule.STATUS = 'ACTIVE'
- AND SYSDATE BETWEEN rule.START_DATE AND NVL(rule.END_DATE, SYSDATE);
Data from this table is also integral to background engine processes that evaluate transactions and automatically generate deduction lines.
Related Objects
The OZF_NA_DEDUCTION_RULES_B table has defined relationships with several other key objects in the OZF schema, as per the provided metadata. The OZF_NA_DEDUCTION_RULES_TL table provides translated descriptive information (like rule names and descriptions) for the base rules, linked via the NA_DEDUCTION_RULE_ID. More importantly, the OZF_NA_RULE_LINES table holds the specific line-level conditions and actions that constitute the logic of a deduction rule, also linked by NA_DEDUCTION_RULE_ID. This structure allows a single rule header to govern multiple detailed conditions. In a full implementation, this table is also expected to be referenced by transactional tables storing actual deductions generated and by various product-specific APIs and views that facilitate the user interface and integration points for deduction rule management.
-
Table: OZF_NA_DEDUCTION_RULES_B
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_NA_DEDUCTION_RULES_B, object_name:OZF_NA_DEDUCTION_RULES_B, status:VALID, product: OZF - Trade Management , description: Table to store the Net Accrual Deductions Rules , implementation_dba_data: OZF.OZF_NA_DEDUCTION_RULES_B ,
-
Table: OZF_NA_DEDUCTION_RULES_B
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_NA_DEDUCTION_RULES_B, object_name:OZF_NA_DEDUCTION_RULES_B, status:VALID, product: OZF - Trade Management , description: Table to store the Net Accrual Deductions Rules , implementation_dba_data: OZF.OZF_NA_DEDUCTION_RULES_B ,
-
APPS.OZF_NA_DDN_RULE_PVT dependencies on OZF_NA_DEDUCTION_RULES_B
12.1.1
-
APPS.OZF_NET_ACCRUAL_ENGINE_PVT dependencies on OZF_NA_DEDUCTION_RULES_B
12.1.1
-
APPS.OZF_NA_DDN_RULE_PKG dependencies on OZF_NA_DEDUCTION_RULES_B
12.2.2
-
APPS.OZF_NET_ACCRUAL_ENGINE_PVT dependencies on OZF_NA_DEDUCTION_RULES_B
12.2.2
-
APPS.OZF_NA_DDN_RULE_PVT dependencies on OZF_NA_DEDUCTION_RULES_B
12.2.2
-
APPS.OZF_NA_DDN_RULE_PKG dependencies on OZF_NA_DEDUCTION_RULES_B
12.1.1
-
SYNONYM: APPS.OZF_NA_DEDUCTION_RULES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OZF_NA_DEDUCTION_RULES_B, status:VALID,
-
VIEW: OZF.OZF_NA_DEDUCTION_RULES_B#
12.2.2
owner:OZF, object_type:VIEW, object_name:OZF_NA_DEDUCTION_RULES_B#, status:VALID,
-
APPS.OZF_NA_DDN_RULE_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.OZF_NA_DEDUCTION_RULES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OZF_NA_DEDUCTION_RULES_B, status:VALID,
-
APPS.OZF_NA_DDN_RULE_PKG SQL Statements
12.2.2
-
VIEW: OZF.OZF_NA_DEDUCTION_RULES_B#
12.2.2
-
APPS.OZF_NA_DDN_RULE_PVT SQL Statements
12.2.2
-
TABLE: OZF.OZF_NA_DEDUCTION_RULES_B
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_NA_DEDUCTION_RULES_B, object_name:OZF_NA_DEDUCTION_RULES_B, status:VALID,
-
APPS.OZF_NA_DDN_RULE_PVT SQL Statements
12.1.1
-
APPS.OZF_NET_ACCRUAL_ENGINE_PVT dependencies on OZF_NA_DEDUCTION_RULES_TL
12.2.2
-
APPS.OZF_NET_ACCRUAL_ENGINE_PVT dependencies on OZF_NA_DEDUCTION_RULES_TL
12.1.1
-
Table: OZF_NA_DEDUCTION_RULES_TL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_NA_DEDUCTION_RULES_TL, object_name:OZF_NA_DEDUCTION_RULES_TL, status:VALID, product: OZF - Trade Management , description: Table to store the Translated Values for Deduction Rules , implementation_dba_data: OZF.OZF_NA_DEDUCTION_RULES_TL ,
-
APPS.OZF_NA_DDN_RULE_PKG dependencies on OZF_NA_DEDUCTION_RULES_TL
12.2.2
-
APPS.OZF_NA_DDN_RULE_PVT dependencies on DUAL
12.2.2
-
APPS.OZF_NA_DDN_RULE_PKG dependencies on OZF_NA_DEDUCTION_RULES_TL
12.1.1
-
TABLE: OZF.OZF_NA_DEDUCTION_RULES_B
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_NA_DEDUCTION_RULES_B, object_name:OZF_NA_DEDUCTION_RULES_B, status:VALID,
-
Table: OZF_NA_RULE_LINES
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_NA_RULE_LINES, object_name:OZF_NA_RULE_LINES, status:VALID, product: OZF - Trade Management , description: Table to store the Deduction rules for a Net accrual Rule Set , implementation_dba_data: OZF.OZF_NA_RULE_LINES ,
-
Table: OZF_NA_RULE_LINES
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_NA_RULE_LINES, object_name:OZF_NA_RULE_LINES, status:VALID, product: OZF - Trade Management , description: Table to store the Deduction rules for a Net accrual Rule Set , implementation_dba_data: OZF.OZF_NA_RULE_LINES ,
-
APPS.OZF_NA_DDN_RULE_PVT dependencies on DUAL
12.1.1
-
Table: OZF_NA_DEDUCTION_RULES_TL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_NA_DEDUCTION_RULES_TL, object_name:OZF_NA_DEDUCTION_RULES_TL, status:VALID, product: OZF - Trade Management , description: Table to store the Translated Values for Deduction Rules , implementation_dba_data: OZF.OZF_NA_DEDUCTION_RULES_TL ,
-
PACKAGE BODY: APPS.OZF_NA_DDN_RULE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_NA_DDN_RULE_PKG, status:VALID,
-
PACKAGE BODY: APPS.OZF_NA_DDN_RULE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_NA_DDN_RULE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_NA_DDN_RULE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_NA_DDN_RULE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_NA_DDN_RULE_PKG
12.1.1
-
PACKAGE BODY: APPS.OZF_NA_DDN_RULE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_NA_DDN_RULE_PKG, status:VALID,
-
PACKAGE BODY: APPS.OZF_NA_DDN_RULE_PKG
12.2.2
-
PACKAGE BODY: APPS.OZF_NET_ACCRUAL_ENGINE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_NET_ACCRUAL_ENGINE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_NET_ACCRUAL_ENGINE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_NET_ACCRUAL_ENGINE_PVT, status:VALID,
-
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.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.OZF_NA_DDN_RULE_PVT dependencies on JTF_PLSQL_API
12.2.2
-
APPS.OZF_NA_DDN_RULE_PVT dependencies on JTF_PLSQL_API
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.OZF_NA_DDN_RULE_PKG dependencies on FND_API
12.2.2
-
APPS.OZF_NA_DDN_RULE_PKG dependencies on FND_API
12.1.1