Search Results ar_dunning_letters_b_uk2
Overview
The AR_DUNNING_LETTERS_B table is a core data structure within Oracle E-Business Suite Receivables (AR) that serves as the master repository for dunning letter definitions. In the context of Oracle EBS 12.1.1 and 12.2.2, dunning letters are automated correspondence sent to customers regarding overdue invoices as part of the collections management process. This table stores the fundamental template and configuration information for each unique dunning letter type that an organization can create and assign within dunning sets. Its primary role is to provide a centralized, normalized reference for all dunning-related activities, ensuring consistency across the collections lifecycle.
Key Information Stored
The table's structure is designed to uniquely identify and describe each dunning letter template. The most critical column is DUNNING_LETTER_ID, which serves as the primary key (PK) for the table. This unique numeric identifier is the central reference point for all related objects and processes. While the provided ETRM metadata does not list all columns, the PK constraint and foreign key relationships confirm that DUNNING_LETTER_ID is the essential column. Typically, related columns in such a base table would include fields for the dunning letter name, description, active status, and potentially a link to the associated correspondence template or text. The table's design enforces data integrity, as evidenced by the primary key constraint (AR_DUNNING_LETTERS_B_PK) and a unique key constraint (AR_DUNNING_LETTERS_B_UK2) both on the DUNNING_LETTER_ID column.
Common Use Cases and Queries
This table is central to configuring and executing the dunning process. Common use cases include the setup and maintenance of dunning letter templates within the Receivables module and generating reports on dunning letter usage. A frequent query pattern involves joining this table to its related child tables to analyze which letters are assigned to dunning sets or have been generated. A foundational SQL query to retrieve all defined dunning letters would be: SELECT DUNNING_LETTER_ID, [other_columns] FROM AR.AR_DUNNING_LETTERS_B WHERE [active_date_criteria];. For operational reporting, a join to AR_DUNNING_LETTER_SET_LINES is essential to see the assignment of letters to specific levels within a dunning set: SELECT dlb.DUNNING_LETTER_ID, dlsl.* FROM AR_DUNNING_LETTERS_B dlb, AR_DUNNING_LETTER_SET_LINES dlsl WHERE dlb.DUNNING_LETTER_ID = dlsl.DUNNING_LETTER_ID;.
Related Objects
The AR_DUNNING_LETTERS_B table has defined relationships with several other EBS objects, as documented by its foreign key constraints. These relationships are crucial for understanding its integration within the Receivables data model:
- AR_DUNNING_LETTER_SET_LINES: This table references AR_DUNNING_LETTERS_B via the DUNNING_LETTER_ID column. It defines which specific dunning letters are used at each level of a dunning set.
- AR_CORRESPONDENCES_ALL: This table references AR_DUNNING_LETTERS_B via the REFERENCE2 column, linking generated correspondence records back to the original dunning letter template.
- IGI_DUN_CHARGE_ALL: This table, related to dunning charge functionality, references AR_DUNNING_LETTERS_B via its DUNNING_LETTER_ID column, associating charges with specific dunning letters.
All relationships are established through the primary key column DUNNING_LETTER_ID in AR_DUNNING_LETTERS_B.
-
Table: AR_DUNNING_LETTERS_B
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_DUNNING_LETTERS_B, object_name:AR_DUNNING_LETTERS_B, status:VALID, product: AR - Receivables , description: Information about dunning letters , implementation_dba_data: AR.AR_DUNNING_LETTERS_B ,
-
Table: AR_DUNNING_LETTERS_B
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_DUNNING_LETTERS_B, object_name:AR_DUNNING_LETTERS_B, status:VALID, product: AR - Receivables , description: Information about dunning letters , implementation_dba_data: AR.AR_DUNNING_LETTERS_B ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,