Search Results flexfield_segment_code
Overview
XLA_MAPPING_SETS_VL is a validation view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It belongs to the XLA (Subledger Accounting) product and exposes translated mapping set definitions used by the Subledger Accounting engine to derive accounting attribute values during journal creation. Mapping sets associate a subledger event, an accounting method, and a specific accounting attribute with the source of its value, such as an application column, a value set, or a lookup type. The view combines the base descriptive columns stored in XLA_MAPPING_SETS_B with the language-specific name and description held in XLA_MAPPING_SETS_TL, filtered to the session language via USERENV('LANG'). Its validation status is VALID at the documented release level. Because it presents denormalized, translation-aware metadata, the view is the preferred dictionary source for reporting on, auditing, or integrating with mapping set configuration rather than querying the underlying tables directly.
Underlying Base Objects
The view is defined over two documented base objects, both referenced as synonyms in the APPS schema: XLA_MAPPING_SETS_B, which stores the language-independent attributes, and XLA_MAPPING_SETS_TL, which stores translated name and description text keyed by language. The join is performed on the composite key of MAPPING_SET_CODE and AMB_CONTEXT_CODE, and the TL row is restricted by T.LANGUAGE = USERENV('LANG'). The view also projects a ROW_ID pseudo-column derived from B.ROWID and surfaces the standard WHO audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) from the base table. This structure follows the standard Oracle EBS _B/_TL pattern, where the _B table is the single source of truth and the _TL table provides multilanguage display attributes. The view does not introduce any independent storage; it is a pure projection and join.
Key Columns
- MAPPING_SET_CODE / AMB_CONTEXT_CODE: The composite identifier of the mapping set and its accounting method (AMB) context; these form the join key to the TL table and are the primary lookup values.
- NAME / DESCRIPTION: The translated display text from the _TL table in the session language.
- ACCOUNTING_COA_ID: References the chart of accounts associated with the mapping set.
- VALUE_SET_ID / FLEX_VALUE_SET_ID: Identifies the value set used when mapping to a flexfield segment or value set source.
- FLEXFIELD_ASSIGN_MODE_CODE / FLEXFIELD_SEGMENT_CODE: Indicates how the flexfield value is assigned and which segment is targeted.
- VIEW_APPLICATION_ID: Identifies the application owning the view that supplies the mapped value.
- LOOKUP_TYPE: Specifies the lookup type when the mapping source is a lookup code.
- ENABLED_FLAG: Indicates whether the mapping set is currently active (Y/N).
- UPDATED_FLAG: Flags whether the mapping set definition has been changed and may require regeneration of the associated account derivation logic.
- VERSION_NUM: Tracks the version of the mapping set definition for concurrency and upgrade purposes.
Common Use Cases and Queries
Typical uses include auditing active mapping sets for an accounting method, reconciling upgrade status after patches, and joining mapping set metadata to account derivation rules. The UPDATED_FLAG column is frequently queried to detect mapping sets modified since the last generation run. A representative query returns enabled mapping sets for a given context:
- SELECT mapping_set_code, amb_context_code, name, enabled_flag, updated_flag, version_num FROM xla_mapping_sets_vl WHERE amb_context_code = :p_amb_context AND enabled_flag = 'Y' ORDER BY mapping_set_code;
- SELECT mapping_set_code, name, flexfield_segment_code FROM xla_mapping_sets_vl WHERE updated_flag = 'Y';
Developers routinely filter by AMB_CONTEXT_CODE to isolate the accounting method, and by ENABLED_FLAG to exclude inactive configurations. Because the view already resolves the session language, reports built on it require no additional translation logic.
-
View: XLA_MAPPING_SETS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_MAPPING_SETS_VL, object_name:XLA_MAPPING_SETS_VL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_MAPPING_SETS_VL ,
-
View: XLA_PAD_INQ_LINES_AF_SD_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AF_SD_FVL, object_name:XLA_PAD_INQ_LINES_AF_SD_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AF_SD_FVL ,
-
View: XLA_PROD_SEG_RULES_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PROD_SEG_RULES_FVL, object_name:XLA_PROD_SEG_RULES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PROD_SEG_RULES_FVL ,
-
View: XLA_PAD_INQ_LINES_AF_SD_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AF_SD_FVL, object_name:XLA_PAD_INQ_LINES_AF_SD_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AF_SD_FVL ,
-
View: XLA_SEG_RULES_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_SEG_RULES_FVL, object_name:XLA_SEG_RULES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_SEG_RULES_FVL ,
-
View: XLA_MPA_JLT_ADR_ASSGNS_F_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_MPA_JLT_ADR_ASSGNS_F_V, object_name:XLA_MPA_JLT_ADR_ASSGNS_F_V, status:VALID, product: XLA - Subledger Accounting , description: Internal form view for the xla_mpa_jlt_adr_assgns table , implementation_dba_data: APPS.XLA_MPA_JLT_ADR_ASSGNS_F_V ,
-
View: XLA_SEG_RULES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_SEG_RULES_VL, object_name:XLA_SEG_RULES_VL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_SEG_RULES_VL ,
-
View: XLA_MAPPING_SETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_MAPPING_SETS_VL, object_name:XLA_MAPPING_SETS_VL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_MAPPING_SETS_VL ,
-
View: XLA_PROD_SEG_RULES_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PROD_SEG_RULES_FVL, object_name:XLA_PROD_SEG_RULES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PROD_SEG_RULES_FVL ,
-
View: XLA_DESCRIPT_DETAILS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_DESCRIPT_DETAILS_FVL, object_name:XLA_DESCRIPT_DETAILS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_DESCRIPT_DETAILS_FVL ,
-
View: XLA_PAD_INQ_SEG_RULES_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_SEG_RULES_FVL, object_name:XLA_PAD_INQ_SEG_RULES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_SEG_RULES_FVL ,
-
View: XLA_SEG_RULES_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_SEG_RULES_FVL, object_name:XLA_SEG_RULES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_SEG_RULES_FVL ,
-
View: XLA_SEG_RULES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_SEG_RULES_VL, object_name:XLA_SEG_RULES_VL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_SEG_RULES_VL ,
-
View: XLA_DESCRIPT_DETAILS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_DESCRIPT_DETAILS_FVL, object_name:XLA_DESCRIPT_DETAILS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_DESCRIPT_DETAILS_FVL ,
-
View: XLA_LINE_DEFN_ADR_ASSGNS_F_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_LINE_DEFN_ADR_ASSGNS_F_V, object_name:XLA_LINE_DEFN_ADR_ASSGNS_F_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_LINE_DEFN_ADR_ASSGNS_F_V ,
-
View: XLA_MPA_JLT_ADR_ASSGNS_F_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_MPA_JLT_ADR_ASSGNS_F_V, object_name:XLA_MPA_JLT_ADR_ASSGNS_F_V, status:VALID, product: XLA - Subledger Accounting , description: Internal form view for the xla_mpa_jlt_adr_assgns table , implementation_dba_data: APPS.XLA_MPA_JLT_ADR_ASSGNS_F_V ,
-
View: XLA_PAD_INQ_SEG_RULES_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_SEG_RULES_FVL, object_name:XLA_PAD_INQ_SEG_RULES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_SEG_RULES_FVL ,
-
View: XLA_LINE_DEFN_ADR_ASSGNS_F_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_LINE_DEFN_ADR_ASSGNS_F_V, object_name:XLA_LINE_DEFN_ADR_ASSGNS_F_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_LINE_DEFN_ADR_ASSGNS_F_V ,
-
View: XLA_MAPPING_SETS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_MAPPING_SETS_FVL, object_name:XLA_MAPPING_SETS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_MAPPING_SETS_FVL ,
-
View: XLA_MAPPING_SETS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_MAPPING_SETS_FVL, object_name:XLA_MAPPING_SETS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_MAPPING_SETS_FVL ,
-
Table: XLA_MPA_JLT_ADR_ASSGNS
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_MPA_JLT_ADR_ASSGNS, object_name:XLA_MPA_JLT_ADR_ASSGNS, status:VALID, product: XLA - Subledger Accounting , description: This table stores the account derivation rules for a multiperiod journal line type. , implementation_dba_data: XLA.XLA_MPA_JLT_ADR_ASSGNS ,
-
Table: XLA_TAB_ACCT_DEF_DETAILS
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_TAB_ACCT_DEF_DETAILS, object_name:XLA_TAB_ACCT_DEF_DETAILS, status:VALID, product: XLA - Subledger Accounting , description: The XLA_TAB_ACCT_DEF_DETAILS table stores the intersection of Transaction Account Definitions, Transaction Account Types and Account Derivation Rules. , implementation_dba_data: XLA.XLA_TAB_ACCT_DEF_DETAILS ,
-
Table: XLA_MPA_JLT_ADR_ASSGNS
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_MPA_JLT_ADR_ASSGNS, object_name:XLA_MPA_JLT_ADR_ASSGNS, status:VALID, product: XLA - Subledger Accounting , description: This table stores the account derivation rules for a multiperiod journal line type. , implementation_dba_data: XLA.XLA_MPA_JLT_ADR_ASSGNS ,
-
Table: XLA_TAB_ACCT_DEF_DETAILS
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_TAB_ACCT_DEF_DETAILS, object_name:XLA_TAB_ACCT_DEF_DETAILS, status:VALID, product: XLA - Subledger Accounting , description: The XLA_TAB_ACCT_DEF_DETAILS table stores the intersection of Transaction Account Definitions, Transaction Account Types and Account Derivation Rules. , implementation_dba_data: XLA.XLA_TAB_ACCT_DEF_DETAILS ,
-
Table: XLA_PROD_SEG_RULES
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_PROD_SEG_RULES, object_name:XLA_PROD_SEG_RULES, status:VALID, product: XLA - Subledger Accounting , description: The XLA_PROD_SEG_RULES table stores all account derivation rules attached to an accounting line type and a product rule. , implementation_dba_data: XLA.XLA_PROD_SEG_RULES ,
-
View: XLA_PAD_INQ_LINES_SUB_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_SUB_FVL, object_name:XLA_PAD_INQ_LINES_SUB_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_SUB_FVL ,
-
View: XLA_PAD_INQ_LINES_SUB_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_SUB_FVL, object_name:XLA_PAD_INQ_LINES_SUB_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_SUB_FVL ,
-
Table: XLA_PROD_SEG_RULES
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_PROD_SEG_RULES, object_name:XLA_PROD_SEG_RULES, status:VALID, product: XLA - Subledger Accounting , description: The XLA_PROD_SEG_RULES table stores all account derivation rules attached to an accounting line type and a product rule. , implementation_dba_data: XLA.XLA_PROD_SEG_RULES ,
-
View: XLA_DESCRIPT_DETAILS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_DESCRIPT_DETAILS_VL, object_name:XLA_DESCRIPT_DETAILS_VL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_DESCRIPT_DETAILS_VL ,
-
View: XLA_DESCRIPT_DETAILS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_DESCRIPT_DETAILS_VL, object_name:XLA_DESCRIPT_DETAILS_VL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_DESCRIPT_DETAILS_VL ,
-
View: XLA_PAD_INQ_LINES_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_FVL, object_name:XLA_PAD_INQ_LINES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_FVL ,
-
View: XLA_PAD_INQ_LINES_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_FVL, object_name:XLA_PAD_INQ_LINES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_FVL ,
-
View: XLA_PAD_INQ_LINES_AC_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AC_FVL, object_name:XLA_PAD_INQ_LINES_AC_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AC_FVL ,
-
View: XLA_PAD_INQ_LINES_AC_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AC_FVL, object_name:XLA_PAD_INQ_LINES_AC_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AC_FVL ,
-
View: XLA_PAD_INQ_LINES_AC_SS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AC_SS_FVL, object_name:XLA_PAD_INQ_LINES_AC_SS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AC_SS_FVL ,
-
View: XLA_PAD_INQ_LINES_AC_SS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AC_SS_FVL, object_name:XLA_PAD_INQ_LINES_AC_SS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AC_SS_FVL ,
-
View: XLA_PAD_INQ_LINES_AC_AF_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AC_AF_FVL, object_name:XLA_PAD_INQ_LINES_AC_AF_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AC_AF_FVL ,
-
View: XLA_PAD_INQ_LINES_SS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_SS_FVL, object_name:XLA_PAD_INQ_LINES_SS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_SS_FVL ,
-
View: XLA_PAD_INQ_LINES_SS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_SS_FVL, object_name:XLA_PAD_INQ_LINES_SS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_SS_FVL ,
-
View: XLA_PAD_INQ_LINES_AF_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AF_FVL, object_name:XLA_PAD_INQ_LINES_AF_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AF_FVL ,
-
View: XLA_PAD_INQ_LINES_AF_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AF_FVL, object_name:XLA_PAD_INQ_LINES_AF_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AF_FVL ,
-
View: XLA_PAD_INQ_LINES_AC_AF_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AC_AF_FVL, object_name:XLA_PAD_INQ_LINES_AC_AF_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AC_AF_FVL ,
-
View: XLA_PAD_INQ_LINES_SD_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_SD_FVL, object_name:XLA_PAD_INQ_LINES_SD_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_SD_FVL ,
-
View: XLA_PAD_INQ_LINES_SD_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_SD_FVL, object_name:XLA_PAD_INQ_LINES_SD_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_SD_FVL ,
-
View: XLA_PAD_INQ_LINES_AC_SD_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AC_SD_FVL, object_name:XLA_PAD_INQ_LINES_AC_SD_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AC_SD_FVL ,
-
View: XLA_PAD_INQ_LINES_AC_SD_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PAD_INQ_LINES_AC_SD_FVL, object_name:XLA_PAD_INQ_LINES_AC_SD_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PAD_INQ_LINES_AC_SD_FVL ,