Search Results ota_finance_headers
Overview
The OTA_FINANCE_HEADERS table is a core data object within the Oracle E-Business Suite Learning Management (OTA) module, specifically for versions 12.1.1 and 12.2.2. It serves as the primary repository for high-level financial agreements or arrangements related to training activities. As its name implies, it functions as a header record, establishing the foundational financial context for dealings with customers or suppliers. This table is essential for managing the financial aspects of learning engagements, such as invoicing for training services or managing supplier contracts for course delivery. It acts as a parent entity, with its key identifier linking to detailed transactional lines.
Key Information Stored
The table's primary key is the FINANCE_HEADER_ID, a unique system-generated identifier for each financial agreement. A critical structural feature is the self-referencing foreign key on the column SUPERCEDING_HEADER_ID, which points back to the FINANCE_HEADER_ID of another record in the same table. This relationship allows for version control or amendment tracking of finance headers, enabling the system to maintain a history of changes. While the provided metadata does not list all columns, typical data stored in such a header table would include the customer or supplier party identifier, agreement currency, overall terms and conditions, status (e.g., Active, Superseded), effective dates, and creation/modification audit information.
Common Use Cases and Queries
This table is central to financial reporting and transaction processing within OTA. Common use cases include generating invoices for customer training programs, reconciling payments against financial agreements, and auditing the history of contract amendments. A frequent reporting requirement is to join the header with its detail lines to get a complete financial picture. A typical SQL pattern retrieves active agreements for a specific customer:
- SELECT fh.finance_header_id, fh.agreement_number, fl.line_amount FROM ota_finance_headers fh, ota_finance_lines fl WHERE fh.finance_header_id = fl.finance_header_id AND fh.customer_id = :p_cust_id AND fh.status = 'ACTIVE';
Another common query traces the amendment history using the self-referential key:
- SELECT PRIOR.finance_header_id as "Original", CURRENT.finance_header_id as "Amendment" FROM ota_finance_headers CURRENT LEFT JOIN ota_finance_headers PRIOR ON CURRENT.superceding_header_id = PRIOR.finance_header_id;
Related Objects
The OTA_FINANCE_HEADERS table has defined relationships with several key objects. Its most direct child is the OTA_FINANCE_LINES table, linked via the foreign key OTA_FINANCE_LINES.FINANCE_HEADER_ID. This relationship is fundamental, as the header defines the agreement, and the lines contain the specific chargeable items or services. As noted, the table also has a recursive relationship with itself through the SUPERCEDING_HEADER_ID column, managing successive versions of a financial agreement. While not listed in the provided metadata, this table is also commonly referenced by key OTA APIs for creating and managing financial data and is a primary source for standard learning management financial reports.
-
Table: OTA_FINANCE_HEADERS
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_FINANCE_HEADERS, object_name:OTA_FINANCE_HEADERS, status:VALID, product: OTA - Learning Management , description: A finance header holds generic financial information about dealings you have with particular customers or suppliers. , implementation_dba_data: OTA.OTA_FINANCE_HEADERS ,
-
Table: OTA_FINANCE_HEADERS
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_FINANCE_HEADERS, object_name:OTA_FINANCE_HEADERS, status:VALID, product: OTA - Learning Management , description: A finance header holds generic financial information about dealings you have with particular customers or suppliers. , implementation_dba_data: OTA.OTA_FINANCE_HEADERS ,
-
Table: OTA_FINANCE_HEADERS_EFC
12.1.1
product: OTA - Learning Management , description: This is a copy of the OTA_FINANCE_HEADERS table which is populated by the EFC (Euro as Functional Currency) process. , implementation_dba_data: Not implemented in this database ,
-
Table: OTA_FINANCE_LINES
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_FINANCE_LINES, object_name:OTA_FINANCE_LINES, status:VALID, product: OTA - Learning Management , description: A finance line records each financial transaction with a customer or supplier. , implementation_dba_data: OTA.OTA_FINANCE_LINES ,
-
Table: OTA_FINANCE_LINES
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_FINANCE_LINES, object_name:OTA_FINANCE_LINES, status:VALID, product: OTA - Learning Management , description: A finance line records each financial transaction with a customer or supplier. , implementation_dba_data: OTA.OTA_FINANCE_LINES ,
-
Table: OTA_FINANCE_HEADERS_EFC
12.2.2
product: OTA - Learning Management , description: This is a copy of the OTA_FINANCE_HEADERS table which is populated by the EFC (Euro as Functional Currency) process. , implementation_dba_data: Not implemented in this database ,
-
View: OTFV_FINANCE_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_FINANCE_LINES, object_name:OTFV_FINANCE_LINES, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_FINANCE_LINES ,
-
View: OTFV_FINANCE_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_FINANCE_LINES, object_name:OTFV_FINANCE_LINES, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_FINANCE_LINES ,
-
View: OTFV_FINANCE_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_FINANCE_HEADERS, object_name:OTFV_FINANCE_HEADERS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_FINANCE_HEADERS ,
-
View: OTFV_FINANCE_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_FINANCE_HEADERS, object_name:OTFV_FINANCE_HEADERS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_FINANCE_HEADERS ,
-
View: OTFV_COST_TRANSFER
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_COST_TRANSFER, object_name:OTFV_COST_TRANSFER, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_COST_TRANSFER ,
-
View: OTA_EVENT_ASSOCIAT_BILLING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_ASSOCIAT_BILLING_V, object_name:OTA_EVENT_ASSOCIAT_BILLING_V, status:VALID, product: OTA - Learning Management , description: View to show the Finance information related to an Event Association , implementation_dba_data: APPS.OTA_EVENT_ASSOCIAT_BILLING_V ,
-
View: OTA_EVENT_ASSOCIAT_BILLING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_ASSOCIAT_BILLING_V, object_name:OTA_EVENT_ASSOCIAT_BILLING_V, status:VALID, product: OTA - Learning Management , description: View to show the Finance information related to an Event Association , implementation_dba_data: APPS.OTA_EVENT_ASSOCIAT_BILLING_V ,
-
View: OTFV_COST_TRANSFER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_COST_TRANSFER, object_name:OTFV_COST_TRANSFER, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_COST_TRANSFER ,
-
View: OTA_FINANCE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_FINANCE_HEADERS_V, object_name:OTA_FINANCE_HEADERS_V, status:VALID, product: OTA - Learning Management , description: View to list all information for Finance Headers , implementation_dba_data: APPS.OTA_FINANCE_HEADERS_V ,
-
View: OTA_FINANCE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_FINANCE_HEADERS_V, object_name:OTA_FINANCE_HEADERS_V, status:VALID, product: OTA - Learning Management , description: View to list all information for Finance Headers , implementation_dba_data: APPS.OTA_FINANCE_HEADERS_V ,
-
View: OTA_EVENT_ASSOCIATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_ASSOCIATIONS_V, object_name:OTA_EVENT_ASSOCIATIONS_V, status:VALID, product: OTA - Learning Management , description: View to list External Asociations for an Event. , implementation_dba_data: APPS.OTA_EVENT_ASSOCIATIONS_V ,
-
View: OTA_EVENT_ASSOCIATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_ASSOCIATIONS_V, object_name:OTA_EVENT_ASSOCIATIONS_V, status:VALID, product: OTA - Learning Management , description: View to list External Asociations for an Event. , implementation_dba_data: APPS.OTA_EVENT_ASSOCIATIONS_V ,
-
View: OTA_DELEGATE_BOOKINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_DELEGATE_BOOKINGS_V, object_name:OTA_DELEGATE_BOOKINGS_V, status:VALID, product: OTA - Learning Management , description: View to list all Student and Customer Enrollment. , implementation_dba_data: APPS.OTA_DELEGATE_BOOKINGS_V ,
-
View: OTA_DELEGATE_BOOKINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_DELEGATE_BOOKINGS_V, object_name:OTA_DELEGATE_BOOKINGS_V, status:VALID, product: OTA - Learning Management , description: View to list all Student and Customer Enrollment. , implementation_dba_data: APPS.OTA_DELEGATE_BOOKINGS_V ,