Search Results fa_mass_additions_v
Overview
FA_MASS_ADDITIONS_V is an Oracle E-Business Suite Assets (OFA) view owned by the APPS schema. It exposes the contents of the mass additions interface table FA_MASS_ADDITIONS together with derived and secured data drawn from asset, book control, payables, and HR sources. The view is used extensively during the Oracle Payables to Oracle Assets mass additions flow, and it underpins the Mass Additions workbench, the Prepare Mass Additions form, and related concurrent programs and reports.
Because the view resolves security-sensitive elements (book security, asset security, and person information) through underlying packages and views such as FA_BOOK_CONTROLS_SEC, FA_ADDITIONS_NON_SEC_VL, HR_SECURITY, HR_GENERAL, and HR_PERSON_NAME, it presents a business-user-facing representation of mass addition lines rather than a raw table read. It is treated as a read-only view and is typically queried for reconciliation, interface troubleshooting, and custom reporting where the user needs visibility into expense, payables, and asset account code combinations for pending mass additions.
Underlying Base Objects
The view is defined over the following documented base objects:
- FA_MASS_ADDITIONS (synonym) — the primary interface table holding mass addition lines posted from Payables or entered manually.
- FA_ADDITIONS_B and FA_ADDITIONS_NON_SEC_VL — asset definition data used to link mass additions to existing assets and to resolve descriptions and identifiers.
- FA_BOOK_CONTROLS_SEC — book security, restricting rows to books the user is authorized to see.
- FA_LEASES, FA_LOOKUPS, FA_WARRANTIES — supporting reference and supplementary asset information.
- PO_VENDORS — supplier information for mass additions originating from purchasing.
- PER_PEOPLE_F — employee/person records for the Assigned To element.
- HR_GENERAL, HR_PERSON_NAME, HR_SECURITY — packaged functions controlling name formatting and security predicates.
Because the view embeds security logic, querying it as APPS returns only rows visible under the invoking user's asset book and organization security profile. Direct queries against FA_MASS_ADDITIONS do not enforce those predicates.
Key Columns
Principal columns exposed by the view include:
MASS_ADDITION_ID— primary identifier for the mass addition line.EXPENSE_CODE_COMBINATION_ID— the GL code combination representing the depreciation expense account associated with the mass addition; this is the column most frequently used to reconcile Payables distribution accounts against the asset expense account.PAYABLES_CODE_COMBINATION_IDandASSET_KEY_CCID— the payables clearing account and the asset clearing account code combinations, respectively.POSTING_STATUS— indicates the queue state of the line (for example, Post, On Hold, or Posted).ASSET_CATEGORY_ID,BOOK_TYPE_CODE,ASSET_NUMBER,DESCRIPTION— asset classification and descriptive attributes.INVOICE_ID,INVOICE_NUMBER,INVOICE_DATE,PO_NUMBER,AP_DISTRIBUTION_LINE_NUMBER— traceability back to the originating Payables or Purchasing document.FIXED_ASSETS_COST,PAYABLES_COST,SALVAGE_VALUE,DEPRN_RESERVE,BEGINNING_NBV— cost and reserve amounts.CREATE_BATCH_ID,CREATE_BATCH_DATE,POST_BATCH_ID— batch tracking for the mass additions process.ATTRIBUTE1throughATTRIBUTE30andATTRIBUTE_CATEGORY_CODE,CONTEXT— descriptive flexfield segments.
The presence of EXPENSE_CODE_COMBINATION_ID is central to account verification workflows, where the expense account on the mass addition must align with the depreciation expense account defined in the asset category and book.
Common Use Cases and Queries
Typical scenarios include identifying mass additions whose expense account is missing or mismatched, reconciling Payables-to-Assets transfers, and reporting on pending queues before running the Post Mass Additions program.
Sample query listing mass additions with unresolved expense accounts:
SELECT mass_addition_id,
asset_number,
book_type_code,
posting_status,
expense_code_combination_id,
payables_code_combination_id,
fixed_assets_cost
FROM apps.fa_mass_additions_v
WHERE expense_code_combination_id IS NULL
AND posting_status = 'POST';
Sample query joining to the GL code combinations table to display the expense account string:
SELECT m.mass_addition_id,
m.asset_number,
m.book_type_code,
gcc.concatenated_segments expense_account,
m.fixed_assets_cost,
m.invoice_number
FROM apps.fa_mass_additions_v m,
apps.gl_code_combinations_kfv gcc
WHERE m.expense_code_combination_id = gcc.code_combination_id
AND m.posting_status = 'POST';
Because the view enforces book and person security, these queries return only the rows authorized for the session user. For high-volume reconciliation, restricting by CREATE_BATCH_ID or ACCOUNTING_DATE improves performance, since the view aggregates several underlying objects.
-
View: FA_MASS_ADDITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_MASS_ADDITIONS_V, object_name:FA_MASS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_MASS_ADDITIONS_V ,
-
View: FA_MASS_ADDITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_MASS_ADDITIONS_V, object_name:FA_MASS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_MASS_ADDITIONS_V ,
-
SYNONYM: APPS.FA_WARRANTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_WARRANTIES, status:VALID,
-
SYNONYM: APPS.FA_BOOK_CONTROLS_SEC
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_BOOK_CONTROLS_SEC, status:VALID,
-
SYNONYM: APPS.FA_WARRANTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_WARRANTIES, status:VALID,
-
SYNONYM: APPS.FA_BOOK_CONTROLS_SEC
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_BOOK_CONTROLS_SEC, status:VALID,
-
SYNONYM: APPS.FA_LEASES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_LEASES, status:VALID,
-
APPS.FA_MASSADD_SPECIAL_PKG SQL Statements
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.FA_LEASES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_LEASES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.FA_MASS_ADDITIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_MASS_ADDITIONS, status:VALID,
-
SYNONYM: APPS.FA_MASS_ADDITIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_MASS_ADDITIONS, status:VALID,
-
APPS.FA_MASSADD_SPECIAL_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.FA_LOOKUPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_LOOKUPS, status:VALID,
-
SYNONYM: APPS.FA_LOOKUPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_LOOKUPS, status:VALID,
-
VIEW: APPS.FA_FUTURE_MASS_ADDITIONS_V
12.1.1
-
VIEW: APPS.FA_FUTURE_MASS_ADDITIONS_V
12.2.2
-
VIEW: APPS.FA_ADDITIONS_NON_SEC_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_NON_SEC_VL, object_name:FA_ADDITIONS_NON_SEC_VL, status:VALID,
-
View: FA_FUTURE_MASS_ADDITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FUTURE_MASS_ADDITIONS_V, object_name:FA_FUTURE_MASS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_FUTURE_MASS_ADDITIONS_V ,
-
VIEW: APPS.FA_FUTURE_MASS_ADDITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FUTURE_MASS_ADDITIONS_V, object_name:FA_FUTURE_MASS_ADDITIONS_V, status:VALID,
-
SYNONYM: APPS.FA_ADDITIONS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_ADDITIONS_B, status:VALID,
-
VIEW: APPS.FA_ADDITIONS_NON_SEC_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ADDITIONS_NON_SEC_VL, object_name:FA_ADDITIONS_NON_SEC_VL, status:VALID,
-
SYNONYM: APPS.FA_ADDITIONS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_ADDITIONS_B, status:VALID,
-
VIEW: APPS.FA_FUTURE_MASS_ADDITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FUTURE_MASS_ADDITIONS_V, object_name:FA_FUTURE_MASS_ADDITIONS_V, status:VALID,
-
View: FA_FUTURE_MASS_ADDITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FUTURE_MASS_ADDITIONS_V, object_name:FA_FUTURE_MASS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_FUTURE_MASS_ADDITIONS_V ,
-
PACKAGE: APPS.HR_PERSON_NAME
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
VIEW: APPS.FA_MASS_ADDITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_MASS_ADDITIONS_V, object_name:FA_MASS_ADDITIONS_V, status:VALID,
-
VIEW: APPS.FA_MASS_ADDITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_MASS_ADDITIONS_V, object_name:FA_MASS_ADDITIONS_V, status:VALID,
-
PACKAGE BODY: APPS.FA_MASSADD_SPECIAL_PKG
12.1.1
-
PACKAGE BODY: APPS.FA_MASSADD_SPECIAL_PKG
12.2.2
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
APPS.FA_MASSADD_SPECIAL_PKG dependencies on FA_MASS_ADDITIONS
12.2.2
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
APPS.FA_MASSADD_SPECIAL_PKG dependencies on FA_MASS_ADDITIONS
12.1.1
-
APPS.FA_MASSADD_SPECIAL_PKG dependencies on DBMS_SQL
12.2.2
-
VIEW: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
APPS.FA_MASSADD_SPECIAL_PKG dependencies on DBMS_SQL
12.1.1
-
eTRM - OFA Tables and Views
12.2.2
-
eTRM - OFA Tables and Views
12.1.1
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - OFA Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,