Search Results ota_finance_lines
Overview
The OTA_FINANCE_LINES table is a core transactional data object within the Oracle E-Business Suite Learning Management (OTA) module. It functions as the detailed ledger for all financial transactions associated with customer and supplier interactions. Each row in this table represents a single, atomic financial line item, such as a charge for a course enrollment, a cancellation fee, or a payment to an instructor. The table's primary role is to record the monetary details that roll up to financial summaries, enabling accurate invoicing, revenue recognition, and supplier payments. It is intrinsically linked to the business processes of booking delegates onto events and managing associated resources.
Key Information Stored
The table stores detailed attributes for each financial transaction. Its primary key is the FINANCE_LINE_ID, which uniquely identifies each line. Crucially, it holds foreign key columns that link the financial line to its controlling document and originating transaction. The FINANCE_HEADER_ID links to the OTA_FINANCE_HEADERS table, grouping related lines under a single financial document like an invoice. To trace the line back to its source, it references identifiers for specific business objects: BOOKING_ID (OTA_DELEGATE_BOOKINGS) for delegate-related charges, RESOURCE_BOOKING_ID (OTA_RESOURCE_BOOKINGS) or RESOURCE_ALLOCATION_ID (OTA_RESOURCE_ALLOCATIONS) for resource-related costs, and BOOKING_DEAL_ID (OTA_BOOKING_DEALS) for any applied pricing agreements. Other typical columns would include line amounts, currency, tax codes, accounting flexfields (like code combination IDs for revenue or expense accounts), and a line type to classify the transaction as a charge, credit, or payment.
Common Use Cases and Queries
This table is central to financial reporting and audit trails within OTA. Common use cases include generating detailed transaction reports for a specific customer, reconciling event revenues, and analyzing costs associated with resources like instructors or venues. A frequent query pattern involves joining to delegate and header information to list all financial lines for an event. For example:
- Identifying all charges for a delegate booking:
SELECT fl.* FROM ota_finance_lines fl, ota_delegate_bookings db WHERE fl.booking_id = db.booking_id AND db.delegate_booking_id = :p_booking_id; - Aggregating total revenue by event:
SELECT fh.event_id, SUM(fl.amount) FROM ota_finance_lines fl, ota_finance_headers fh WHERE fl.finance_header_id = fh.finance_header_id AND fl.line_type = 'CHARGE' GROUP BY fh.event_id; - Troubleshooting invoicing issues by examining unposted lines linked to a specific finance header.
Related Objects
OTA_FINANCE_LINES has defined relationships with several key OTA tables, as per the provided metadata. It is a child table of OTA_FINANCE_HEADERS, which provides the overall document context. Its transactional lineage is established through foreign keys to OTA_DELEGATE_BOOKINGS (for learner bookings), OTA_BOOKING_DEALS (for special pricing), OTA_RESOURCE_BOOKINGS, and OTA_RESOURCE_ALLOCATIONS (for instructor and asset costs). For comprehensive reporting, queries often join through these tables to OTA_EVENTS and HR (person) tables. The table is also a critical source for the OTA Financials API and underlying PL/SQL packages that manage the creation, update, and posting of financial transactions to the general ledger via Oracle Subledger Accounting (SLA).
-
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_LINES_EFC
12.1.1
product: OTA - Learning Management , description: This is a copy of the OTA_FINANCE_LINES table which is populated by the EFC (Euro as Functional Currency) process. , implementation_dba_data: Not implemented in this database ,
-
Table: OTA_FINANCE_LINES_EFC
12.2.2
product: OTA - Learning Management , description: This is a copy of the OTA_FINANCE_LINES table which is populated by the EFC (Euro as Functional Currency) process. , implementation_dba_data: Not implemented in this database ,
-
Table: OTA_RESOURCE_ALLOCATIONS
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_RESOURCE_ALLOCATIONS, object_name:OTA_RESOURCE_ALLOCATIONS, status:VALID, product: OTA - Learning Management , description: A resource allocation records a supplied resource to a student on an event. , implementation_dba_data: OTA.OTA_RESOURCE_ALLOCATIONS ,
-
Table: OTA_RESOURCE_BOOKINGS
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_RESOURCE_BOOKINGS, object_name:OTA_RESOURCE_BOOKINGS, status:VALID, product: OTA - Learning Management , description: You book a resource (people, equipment or facilities) for a scheduled or development event, or for a session. , implementation_dba_data: OTA.OTA_RESOURCE_BOOKINGS ,
-
Table: OTA_DELEGATE_BOOKINGS
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_DELEGATE_BOOKINGS, object_name:OTA_DELEGATE_BOOKINGS, status:VALID, product: OTA - Learning Management , description: An student booking (delegate booking) records an enrollment onto a scheduled, program or one time event. , implementation_dba_data: OTA.OTA_DELEGATE_BOOKINGS ,
-
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_BOOKING_DEALS
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_BOOKING_DEALS, object_name:OTA_BOOKING_DEALS, status:VALID, product: OTA - Learning Management , description: An enrollment agreement (booking deal) is an arrangement about the price or method of paying for an event(s). , implementation_dba_data: OTA.OTA_BOOKING_DEALS ,
-
Table: OTA_BOOKING_DEALS
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_BOOKING_DEALS, object_name:OTA_BOOKING_DEALS, status:VALID, product: OTA - Learning Management , description: An enrollment agreement (booking deal) is an arrangement about the price or method of paying for an event(s). , implementation_dba_data: OTA.OTA_BOOKING_DEALS ,
-
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 ,
-
Table: OTA_RESOURCE_ALLOCATIONS
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_RESOURCE_ALLOCATIONS, object_name:OTA_RESOURCE_ALLOCATIONS, status:VALID, product: OTA - Learning Management , description: A resource allocation records a supplied resource to a student on an event. , implementation_dba_data: OTA.OTA_RESOURCE_ALLOCATIONS ,
-
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 ,
-
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 ,
-
Table: OTA_RESOURCE_BOOKINGS
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_RESOURCE_BOOKINGS, object_name:OTA_RESOURCE_BOOKINGS, status:VALID, product: OTA - Learning Management , description: You book a resource (people, equipment or facilities) for a scheduled or development event, or for a session. , implementation_dba_data: OTA.OTA_RESOURCE_BOOKINGS ,
-
Table: OTA_DELEGATE_BOOKINGS
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_DELEGATE_BOOKINGS, object_name:OTA_DELEGATE_BOOKINGS, status:VALID, product: OTA - Learning Management , description: An student booking (delegate booking) records an enrollment onto a scheduled, program or one time event. , implementation_dba_data: OTA.OTA_DELEGATE_BOOKINGS ,
-
View: OTA_FINANCE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_FINANCE_LINES_V, object_name:OTA_FINANCE_LINES_V, status:VALID, product: OTA - Learning Management , description: View to list all information for Finance Lines. , implementation_dba_data: APPS.OTA_FINANCE_LINES_V ,
-
View: OTA_FINANCE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_FINANCE_LINES_V, object_name:OTA_FINANCE_LINES_V, status:VALID, product: OTA - Learning Management , description: View to list all information for Finance Lines. , implementation_dba_data: APPS.OTA_FINANCE_LINES_V ,
-
View: OTFV_TRAINING_AMOUNT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_AMOUNT, object_name:OTFV_TRAINING_AMOUNT, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TRAINING_AMOUNT ,
-
View: OTFV_TRAINING_AMOUNT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_AMOUNT, object_name:OTFV_TRAINING_AMOUNT, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TRAINING_AMOUNT ,
-
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: 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_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: OTA_RESOURCE_BOOKINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_RESOURCE_BOOKINGS_V, object_name:OTA_RESOURCE_BOOKINGS_V, status:VALID, product: OTA - Learning Management , description: View to list all resource bookings. , implementation_dba_data: APPS.OTA_RESOURCE_BOOKINGS_V ,
-
View: OTFV_CUST_RESTRICTED_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_CUST_RESTRICTED_EVENTS, object_name:OTFV_CUST_RESTRICTED_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_CUST_RESTRICTED_EVENTS ,
-
View: OTFV_RESOURCES_BOOKED
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_RESOURCES_BOOKED, object_name:OTFV_RESOURCES_BOOKED, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_RESOURCES_BOOKED ,
-
View: OTA_RESOURCE_BOOKINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_RESOURCE_BOOKINGS_V, object_name:OTA_RESOURCE_BOOKINGS_V, status:VALID, product: OTA - Learning Management , description: View to list all resource bookings. , implementation_dba_data: APPS.OTA_RESOURCE_BOOKINGS_V ,
-
View: OTFV_CUST_RESTRICTED_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_CUST_RESTRICTED_EVENTS, object_name:OTFV_CUST_RESTRICTED_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_CUST_RESTRICTED_EVENTS ,
-
View: OTFV_RESOURCES_BOOKED
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_RESOURCES_BOOKED, object_name:OTFV_RESOURCES_BOOKED, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_RESOURCES_BOOKED ,
-
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 ,