Search Results pa_invoice_format_details
Overview
The PA_INVOICE_FORMAT_DETAILS table is a core implementation table within the Oracle Projects (PA) module of Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2. It stores the detailed configuration rules that define how project invoices are formatted and structured. This table operates as a child to the PA_INVOICE_FORMATS table, holding the specific line items or criteria that constitute a complete invoice format. Its primary role is to provide the system with the necessary metadata to generate invoices that meet specific organizational requirements for grouping, sequencing, and presenting transaction lines, such as costs and revenue.
Key Information Stored
The table's structure centers on linking an invoice format to specific grouping columns and defining their order. The primary key, INVOICE_FORMAT_DETAIL_ID, uniquely identifies each configuration line. The critical foreign key column, INVOICE_FORMAT_ID, ties each detail record to a parent format defined in PA_INVOICE_FORMATS. Another essential foreign key, INVOICE_GROUP_COLUMN_ID, references the PA_INVOICE_GROUP_COLUMNS table to specify which project attribute (e.g., Task, Expenditure Type, Resource) is used for grouping invoice lines. Additional columns typically include SEQUENCE_NUMBER to dictate the order of grouping levels within the invoice hierarchy and CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY for audit purposes.
Common Use Cases and Queries
This table is central to troubleshooting invoice generation issues and analyzing invoice format setups. A common use case involves identifying all grouping rules for a specific invoice format to verify its configuration. For reporting, administrators often join this table to related objects to produce a comprehensive map of invoice formats. A typical diagnostic query would be:
- SELECT fmt.name format_name,
col.column_name,
det.sequence_num
FROM pa_invoice_format_details det,
pa_invoice_formats fmt,
pa_invoice_group_columns col
WHERE det.invoice_format_id = fmt.invoice_format_id
AND det.invoice_group_column_id = col.invoice_group_column_id
ORDER BY fmt.name, det.sequence_num;
This query reveals the hierarchy and components of each invoice format, which is essential for validating setups before running the invoice generation process.
Related Objects
The PA_INVOICE_FORMAT_DETAILS table has defined foreign key relationships with two key parent tables, forming the backbone of the invoice formatting setup.
- PA_INVOICE_FORMATS: This is the parent table. The relationship is maintained via the column PA_INVOICE_FORMAT_DETAILS.INVOICE_FORMAT_ID, which references PA_INVOICE_FORMATS.INVOICE_FORMAT_ID. Each detail record must belong to a single, pre-defined invoice format.
- PA_INVOICE_GROUP_COLUMNS: This table defines the available attributes for grouping invoice lines. The relationship is maintained via the column PA_INVOICE_FORMAT_DETAILS.INVOICE_GROUP_COLUMN_ID, which references PA_INVOICE_GROUP_COLUMNS.INVOICE_GROUP_COLUMN_ID. This link specifies which attribute is applied at a given grouping level in the format.
-
Table: PA_INVOICE_FORMAT_DETAILS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_INVOICE_FORMAT_DETAILS, object_name:PA_INVOICE_FORMAT_DETAILS, status:VALID, product: PA - Projects , description: Implementation-defined details of the invoice format configurations , implementation_dba_data: PA.PA_INVOICE_FORMAT_DETAILS ,
-
Table: PA_INVOICE_FORMAT_DETAILS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_INVOICE_FORMAT_DETAILS, object_name:PA_INVOICE_FORMAT_DETAILS, status:VALID, product: PA - Projects , description: Implementation-defined details of the invoice format configurations , implementation_dba_data: PA.PA_INVOICE_FORMAT_DETAILS ,
-
APPS.PA_RETENTION_PKG dependencies on PA_INVOICE_FORMAT_DETAILS
12.1.1
-
APPS.GMS_BILLING dependencies on PA_INVOICE_FORMAT_DETAILS
12.1.1
-
APPS.PA_RETN_BILLING_PKG dependencies on PA_INVOICE_FORMAT_DETAILS
12.2.2
-
APPS.PA_RETENTION_PKG dependencies on PA_INVOICE_FORMAT_DETAILS
12.2.2
-
APPS.GMS_BILLING dependencies on PA_INVOICE_FORMAT_DETAILS
12.2.2
-
APPS.PA_RETN_BILLING_PKG dependencies on PA_INVOICE_FORMAT_DETAILS
12.1.1
-
APPS.GMS_BILLING dependencies on PA_INVOICE_GROUP_COLUMNS
12.1.1
-
APPS.GMS_BILLING dependencies on PA_INVOICE_GROUP_COLUMNS
12.2.2
-
VIEW: PA.PA_INVOICE_FORMAT_DETAILS#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_INVOICE_FORMAT_DETAILS#, status:VALID,
-
SYNONYM: APPS.PA_INVOICE_FORMAT_DETAILS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_INVOICE_FORMAT_DETAILS, status:VALID,
-
SYNONYM: APPS.PA_INVOICE_FORMAT_DETAILS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_INVOICE_FORMAT_DETAILS, status:VALID,
-
VIEW: PA.PA_INVOICE_FORMAT_DETAILS#
12.2.2
-
TABLE: PA.PA_INVOICE_FORMAT_DETAILS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_INVOICE_FORMAT_DETAILS, object_name:PA_INVOICE_FORMAT_DETAILS, status:VALID,
-
TABLE: PA.PA_INVOICE_FORMAT_DETAILS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_INVOICE_FORMAT_DETAILS, object_name:PA_INVOICE_FORMAT_DETAILS, status:VALID,
-
APPS.GMS_BILLING dependencies on PA_INV_GRP_COL_WHR_CLAUSES
12.2.2
-
APPS.PA_RETN_BILLING_PKG dependencies on PA_INVOICE_FORMATS
12.2.2
-
APPS.PA_RETENTION_PKG dependencies on PA_INVOICE_FORMATS
12.1.1
-
APPS.PA_RETENTION_PKG dependencies on PA_INVOICE_GROUP_COLUMNS
12.2.2
-
APPS.PA_RETN_BILLING_PKG dependencies on PA_INVOICE_GROUP_COLUMNS
12.2.2
-
APPS.GMS_BILLING dependencies on PA_INV_GRP_COL_WHR_CLAUSES
12.1.1
-
APPS.PA_RETN_BILLING_PKG dependencies on PA_INVOICE_GROUP_COLUMNS
12.1.1
-
APPS.PA_RETENTION_PKG dependencies on PA_INVOICE_GROUP_COLUMNS
12.1.1
-
Table: PA_INVOICE_GROUP_COLUMNS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_INVOICE_GROUP_COLUMNS, object_name:PA_INVOICE_GROUP_COLUMNS, status:VALID, product: PA - Projects , description: System-defined columns associated with invoice groups , implementation_dba_data: PA.PA_INVOICE_GROUP_COLUMNS ,
-
APPS.PA_RETN_BILLING_PKG dependencies on PA_INVOICE_FORMATS
12.1.1
-
APPS.PA_RETENTION_PKG dependencies on PA_INVOICE_FORMATS
12.2.2
-
Table: PA_INVOICE_GROUP_COLUMNS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_INVOICE_GROUP_COLUMNS, object_name:PA_INVOICE_GROUP_COLUMNS, status:VALID, product: PA - Projects , description: System-defined columns associated with invoice groups , implementation_dba_data: PA.PA_INVOICE_GROUP_COLUMNS ,
-
Table: PA_INVOICE_FORMATS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_INVOICE_FORMATS, object_name:PA_INVOICE_FORMATS, status:VALID, product: PA - Projects , description: Implementation-defined configurations of columns, text, and layout of invoice lines , implementation_dba_data: PA.PA_INVOICE_FORMATS ,
-
Table: PA_INVOICE_FORMATS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_INVOICE_FORMATS, object_name:PA_INVOICE_FORMATS, status:VALID, product: PA - Projects , description: Implementation-defined configurations of columns, text, and layout of invoice lines , implementation_dba_data: PA.PA_INVOICE_FORMATS ,
-
APPS.GMS_BILLING dependencies on PA_INVOICE_GROUP_TABLES
12.2.2
-
APPS.GMS_BILLING dependencies on PA_INVOICE_GROUP_TABLES
12.1.1
-
APPS.GMS_BILLING dependencies on PA_INV_GRP_WHR_CLAUSES
12.1.1
-
APPS.GMS_BILLING dependencies on PA_INV_GRP_WHR_CLAUSES
12.2.2
-
PACKAGE BODY: APPS.PA_RETENTION_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RETENTION_PKG, status:VALID,
-
PACKAGE BODY: APPS.PA_RETENTION_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RETENTION_PKG, status:VALID,
-
PACKAGE BODY: APPS.PA_RETN_BILLING_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RETN_BILLING_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMS_BILLING
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_BILLING, status:VALID,
-
PACKAGE BODY: APPS.GMS_BILLING
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_BILLING, status:VALID,
-
PACKAGE BODY: APPS.PA_RETN_BILLING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RETN_BILLING_PKG, status:VALID,
-
APPS.PA_RETN_BILLING_PKG dependencies on PA_PROJECTS_ALL
12.2.2
-
APPS.PA_RETN_BILLING_PKG dependencies on PA_PROJECTS_ALL
12.1.1
-
APPS.PA_RETENTION_PKG dependencies on PA_PROJECTS_ALL
12.2.2
-
APPS.PA_RETENTION_PKG dependencies on PA_PROJECTS_ALL
12.1.1
-
APPS.GMS_BILLING dependencies on DUAL
12.1.1
-
APPS.GMS_BILLING dependencies on DUAL
12.2.2
-
APPS.PA_RETN_BILLING_PKG dependencies on PA_PROJECTS
12.1.1
-
APPS.PA_RETN_BILLING_PKG dependencies on PA_PROJECTS
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1