Search Results debit_credit_flag
Overview
APPS.FABV_TRANS_LINES is a read-only database view in Oracle E-Business Suite that exposes Oracle Assets (FA) adjustment transaction lines in a distribution-ready format. The view presents asset cost adjustments and their associated accounting flexfield information, combining adjustment-type, amount, and debit/credit orientation into a single queryable object. In Oracle EBS 12.1.1 and 12.2.2, the object resides in the APPS schema and is intended for reporting, reconciliation, and downstream integration against the Fixed Assets subledger.
The view carries a WITH READ ONLY clause, confirming it cannot be used for DML. It is therefore a query surface only, typically consumed by reports, custom concurrent programs, and extracts that need adjustment line detail without joining to the base table directly.
Underlying Base Objects
The view is defined over a single base object: the synonym FA_ADJUSTMENTS. Per the documented ETRM metadata (12.2.2), the only referenced base object is FA_ADJUSTMENTS (SYNONYM). The synonym resolves to the FA_ADJUSTMENTS table in the Oracle Assets schema, which stores adjustments to asset cost, including bonus, revaluation, and other transaction adjustments.
Because the view selects directly from FA_ADJUSTMENTS with no joins, it inherits the row granularity of that table — one row per adjustment line — and inherits its grants and read-only behavior. The notable transformation is the pivoting of the debit/credit indicator into two distinct amount columns via DECODE expressions.
Key Columns
- ADJUSTMENT_TYPE — Classifies the nature of the adjustment line.
- ADJUSTMENT_AMOUNT (debit) — Derived as
DECODE(DEBIT_CREDIT_FLAG, 'DR', ADJUSTMENT_AMOUNT), returning the amount when the flag is 'DR', otherwise null. - ADJUSTMENT_AMOUNT (credit) — Derived as
DECODE(DEBIT_CREDIT_FLAG, 'CR', ADJUSTMENT_AMOUNT), returning the amount when the flag is 'CR', otherwise null. - TRANSACTION_HEADER_ID — Links the line to its parent transaction header.
- SOURCE_TYPE_CODE — Identifies the source of the adjustment.
- BOOK_TYPE_CODE — The asset book in which the adjustment applies.
- ASSET_ID — The asset the adjustment relates to.
- CODE_COMBINATION_ID — The accounting flexfield combination for the distribution.
- DISTRIBUTION_ID — Identifier of the accounting distribution.
- PERIOD_COUNTER_ADJUSTED / PERIOD_COUNTER_CREATED — Accounting periods for the adjustment and its creation.
- LAST_UPDATE_DATE / LAST_UPDATED_BY — Audit columns.
Note that DEBIT_CREDIT_FLAG — the term the user searched — is the pivot column in the view definition; it is not directly projected, but drives the two decoded amount columns.
Common Use Cases and Queries
A frequent requirement is to report debits and credits separately per asset and book:
- Reconciling asset adjustments to General Ledger distributions using CODE_COMBINATION_ID and DISTRIBUTION_ID.
- Extracting adjustment lines by BOOK_TYPE_CODE and period for period-close reporting.
- Feeding downstream systems (e.g., data warehouses) with cost adjustment detail keyed by TRANSACTION_HEADER_ID and ASSET_ID.
Sample query to retrieve debit and credit amounts for a given book and period:
SELECT asset_id, adjustment_type, book_type_code, code_combination_id, period_counter_adjusted, SUM(NVL(adjustment_debit,0)) debit_amt, SUM(NVL(adjustment_credit,0)) credit_amt FROM apps.fabv_trans_lines WHERE book_type_code = :book GROUP BY asset_id, adjustment_type, book_type_code, code_combination_id, period_counter_adjusted;
Because the view is read-only and based solely on FA_ADJUSTMENTS, it is safe for high-volume reporting without affecting the underlying subledger data.
-
APPS.FA_XLA_EXTRACT_TRX_PKG SQL Statements
12.1.1
-
APPS.FA_XLA_EXTRACT_TRX_PKG SQL Statements
12.2.2
-
VIEW: APPS.FABV_TRANS_LINES
12.2.2
-
VIEW: APPS.FABV_TRANS_LINES
12.1.1
-
VIEW: JL.JL_ZZ_FA_RETIREMNT_JES#
12.2.2
-
APPS.FA_INV_XFR_PUB SQL Statements
12.2.2
-
APPS.FA_INTERCO_PVT SQL Statements
12.1.1
-
VIEW: JL.JL_CO_FA_ADJUSTMENTS#
12.2.2
-
APPS.FA_INTERCO_PVT SQL Statements
12.2.2
-
VIEW: FA.FA_MC_ADJUSTMENTS#
12.2.2
-
VIEW: FA.FA_ADJUSTMENTS#
12.2.2
-
PACKAGE BODY: APPS.FA_XLA_EXTRACT_TRX_PKG
12.2.2
-
PACKAGE BODY: APPS.FA_XLA_EXTRACT_TRX_PKG
12.1.1
-
APPS.JL_JLZZFIJR_XMLP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FA_XLA_CMP_SOURCES_PKG
12.2.2
-
APPS.JL_JLZZFIJR_XMLP_PKG SQL Statements
12.2.2
-
View: FABV_TRANS_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_TRANS_LINES, object_name:FABV_TRANS_LINES, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_TRANS_LINES ,
-
View: FABV_TRANS_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_TRANS_LINES, object_name:FABV_TRANS_LINES, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_TRANS_LINES ,
-
APPS.FA_ADJUSTMENTS_PKG SQL Statements
12.1.1
-
APPS.FA_ADJUSTMENT_PVT SQL Statements
12.2.2
-
APPS.FA_ADJUSTMENTS_PKG SQL Statements
12.2.2
-
APPS.JG_RX_FAREG SQL Statements
12.2.2
-
VIEW: JL.JL_ZZ_FA_RETIREMNT_JES#
12.2.2
owner:JL, object_type:VIEW, object_name:JL_ZZ_FA_RETIREMNT_JES#, status:VALID,
-
VIEW: APPS.PA_CC_DIST_LINES_SUMMARIZE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_DIST_LINES_SUMMARIZE_V, object_name:PA_CC_DIST_LINES_SUMMARIZE_V, status:VALID,
-
PACKAGE BODY: APPS.FA_XLA_CMP_SOURCES_PKG
12.1.1
-
TABLE: BOM.CST_LC_ACCOUNTS_GT
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_LC_ACCOUNTS_GT, object_name:CST_LC_ACCOUNTS_GT, status:VALID,
-
VIEW: APPS.PA_CC_DIST_LINES_SUMMARIZE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_DIST_LINES_SUMMARIZE_V, object_name:PA_CC_DIST_LINES_SUMMARIZE_V, status:VALID,
-
TABLE: BOM.CST_LC_ACCOUNTS_GT
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_LC_ACCOUNTS_GT, object_name:CST_LC_ACCOUNTS_GT, status:VALID,
-
VIEW: JL.JL_CO_FA_ADJUSTMENTS#
12.2.2
owner:JL, object_type:VIEW, object_name:JL_CO_FA_ADJUSTMENTS#, status:VALID,
-
APPS.JA_JAAUFREV_XMLP_PKG SQL Statements
12.1.1
-
APPS.JA_JAAUFREV_XMLP_PKG SQL Statements
12.2.2
-
VIEW: APPS.IGFBV_PELL_YTD_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PELL_YTD_DISBURSEMENTS, object_name:IGFBV_PELL_YTD_DISBURSEMENTS, status:VALID,
-
APPS.JL_CO_FA_POST_PKG SQL Statements
12.2.2
-
VIEW: APPS.IGFFV_PEL_ELEC_DET_STMNT_ACNTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PEL_ELEC_DET_STMNT_ACNTS, object_name:IGFFV_PEL_ELEC_DET_STMNT_ACNTS, status:VALID,
-
APPS.JL_CO_FA_POST_PKG SQL Statements
12.1.1
-
APPS.JG_RX_FAREG SQL Statements
12.1.1
-
TABLE: JL.JL_ZZ_FA_RETIREMNT_JES
12.2.2
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_ZZ_FA_RETIREMNT_JES, object_name:JL_ZZ_FA_RETIREMNT_JES, status:VALID,
-
VIEW: APPS.IGFBV_PEL_ELEC_DET_STMNT_ACNTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PEL_ELEC_DET_STMNT_ACNTS, object_name:IGFBV_PEL_ELEC_DET_STMNT_ACNTS, status:VALID,
-
APPS.FA_INS_ADJUST_PKG SQL Statements
12.1.1
-
APPS.FA_UNPLANNED_PVT SQL Statements
12.1.1
-
VIEW: FA.FA_ADJUSTMENTS#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_ADJUSTMENTS#, status:VALID,
-
APPS.FA_AMORT_PKG SQL Statements
12.2.2
-
VIEW: APPS.IGFFV_PELL_YTD_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PELL_YTD_DISBURSEMENTS, object_name:IGFFV_PELL_YTD_DISBURSEMENTS, status:VALID,
-
APPS.FA_INS_ADJUST_PKG SQL Statements
12.2.2
-
TABLE: JL.JL_ZZ_FA_RETIREMNT_JES
12.1.1
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_ZZ_FA_RETIREMNT_JES, object_name:JL_ZZ_FA_RETIREMNT_JES, status:VALID,
-
VIEW: FA.FA_MC_ADJUSTMENTS#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_MC_ADJUSTMENTS#, status:VALID,
-
VIEW: APPS.IGFBV_PELL_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PELL_DISBURSEMENTS, object_name:IGFBV_PELL_DISBURSEMENTS, status:VALID,
-
TABLE: FA.FA_ADJUSTMENTS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ADJUSTMENTS, object_name:FA_ADJUSTMENTS, status:VALID,
-
View: IGFBV_PELL_YTD_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PELL_YTD_DISBURSEMENTS, object_name:IGFBV_PELL_YTD_DISBURSEMENTS, status:VALID, product: IGF - Financial Aid , description: Base View for the Entity that holds the information about the year to date disbursement data , implementation_dba_data: APPS.IGFBV_PELL_YTD_DISBURSEMENTS ,
-
View: IGFBV_PELL_YTD_DISBURSEMENTS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base View for the Entity that holds the information about the year to date disbursement data , implementation_dba_data: Not implemented in this database ,