Search Results xla_amb_context_type
Overview
APPS.XLA_ACCTG_METHOD_RULES_FVL is a foreign-key lookup (FVL) view in the Oracle E-Business Suite Subledger Accounting (XLA) schema. It exposes the accounting method rules that tie an accounting method to a specific subledger application and product rule. The _FVL suffix follows Oracle's convention for views that join a base table to its descriptive flexfield or lookup-based description columns so that user-facing lists display meaningful names rather than raw codes.
The view draws on XLA_ACCTG_METHOD_RULES as its driving table and enriches it with the application name, the Accounting Methods Builder (AMB) context meaning, and the translated product rule name and description. It is used throughout the Accounting Methods Builder and related setup forms to render the accounting method rules defined for a ledger's subledger accounting configuration.
Because the view resolves the AMB_CONTEXT_CODE through the XLA_AMB_CONTEXT_TYPE lookup, it is directly relevant to the search term xla_amb_context_type. Querying this view answers the practical question: which accounting method rules exist for each AMB context (for example, the subledger and event class combination) within a given application?
Underlying Base Objects
The ETRM metadata documents the following referenced objects:
XLA_ACCTG_METHOD_RULES(synonym) — the primary table holding accounting method rule rows.XLA_PRODUCT_RULES_TL(synonym) — the translated product rules table supplying the rule name and description.XLA_LOOKUPS(view) — provides the lookup meanings for two lookup types:XLA_OWNER_TYPEfor the product rule type andXLA_AMB_CONTEXT_TYPEfor the AMB context.XLA_APPLICATIONS_XVL(view) — supplies the application name for the owning application.
The joins are made on application ID, AMB context code, product rule type code, and product rule code. The XLA_PRODUCT_RULES_TL join additionally restricts to USERENV('LANG'), so the view returns descriptions in the session's current language.
Key Columns
ACCTG_METHOD_RULE_ID— primary key of the accounting method rule.ACCOUNTING_METHOD_TYPE_CODE,ACCOUNTING_METHOD_CODE— the accounting method the rule belongs to.APPLICATION_ID,APPLICATION_NAME— owning subledger application.AMB_CONTEXT_CODE,AMB_CONTEXT_NAME— the AMB context and its lookup meaning (fromXLA_AMB_CONTEXT_TYPE).PRODUCT_RULE_CODE,PRODUCT_RULE_TYPE_CODE,PRODUCT_RULE_TYPE_DSP— product rule identity and its lookup meaning (fromXLA_OWNER_TYPE).PRODUCT_RULE_NAME,PRODUCT_RULE_DESC— translated, user-readable rule text.START_DATE_ACTIVE,END_DATE_ACTIVE— effective dating for the rule.- Standard
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE, and audit columns.
Common Use Cases and Queries
A frequent requirement is to list all accounting method rules for a given application and AMB context in user-readable form. For example:
SELECT accounting_method_code, accounting_method_type_code, amb_context_name,
product_rule_name, start_date_active, end_date_active
FROM apps.xla_acctg_method_rules_fvl
WHERE application_id = 101
AND amb_context_code = '&amb_context'
ORDER BY accounting_method_code, product_rule_name;
The view is also useful for troubleshooting why a particular product rule is or is not applied to an accounting method, since it surfaces both the lookup meaning of the AMB context and the effective date range. Analysts join it back to XLA_ACCTG_METHODS to correlate methods with rules, or filter on product_rule_type_code to isolate rules of a specific owner type. Because the view already resolves lookups and translations, it is the preferred source for reports and diagnostics rather than joining the base tables manually.
-
Lookup Type: XLA_AMB_CONTEXT_TYPE
12.1.1
product: XLA - Subledger Accounting , meaning: XLA_AMB_CONTEXT_TYPE ,
-
Lookup Type: XLA_AMB_CONTEXT_TYPE
12.2.2
product: XLA - Subledger Accounting , meaning: XLA_AMB_CONTEXT_TYPE ,
-
VIEW: APPS.XLA_ACCTG_METHOD_RULES_FVL
12.1.1
-
APPS.XLA_XLAALEXP_XMLP_PKG SQL Statements
12.1.1
-
VIEW: APPS.XLA_ACCTG_METHOD_RULES_FVL
12.2.2
-
APPS.XLA_XLAALEXP_XMLP_PKG SQL Statements
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
View: XLA_ACCTG_METHOD_RULES_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_ACCTG_METHOD_RULES_FVL, object_name:XLA_ACCTG_METHOD_RULES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_ACCTG_METHOD_RULES_FVL ,
-
View: XLA_ACCTG_METHOD_RULES_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_ACCTG_METHOD_RULES_FVL, object_name:XLA_ACCTG_METHOD_RULES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_ACCTG_METHOD_RULES_FVL ,
-
PACKAGE BODY: APPS.XLA_XLAALEXP_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.XLA_XLAALEXP_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.XLA_TAB_PKG
12.1.1
-
PACKAGE BODY: APPS.XLA_TAB_PKG
12.2.2
-
PACKAGE BODY: APPS.XLA_XLAABACR_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.XLA_XLAABACR_XMLP_PKG
12.1.1
-
APPS.XLA_XLAALEXP_XMLP_PKG dependencies on XLA_LOOKUPS
12.2.2
-
APPS.XLA_XLAALEXP_XMLP_PKG dependencies on XLA_LOOKUPS
12.1.1
-
APPS.XLA_TAB_PKG dependencies on XLA_LOOKUPS_PKG
12.2.2
-
APPS.XLA_XLAALEXP_XMLP_PKG dependencies on FND_APPLICATION_VL
12.1.1
-
APPS.XLA_XLAALEXP_XMLP_PKG dependencies on FND_APPLICATION_VL
12.2.2
-
APPS.XLA_TAB_PKG dependencies on XLA_LOOKUPS_PKG
12.1.1
-
APPS.XLA_CMP_TAD_PKG dependencies on XLA_LOOKUPS_PKG
12.2.2
-
APPS.XLA_CMP_TAD_PKG dependencies on XLA_LOOKUPS_PKG
12.1.1
-
PACKAGE BODY: APPS.XLA_CMP_TAD_PKG
12.1.1
-
PACKAGE BODY: APPS.XLA_CMP_TAD_PKG
12.2.2