Search Results ar_lookups
Overview
AR_LOOKUPS is a read-only view owned by the APPS schema in Oracle E-Business Suite. It presents a product-restricted slice of Oracle Application Object Library (FND) lookup values, exposing only those lookup types registered against the Receivables application (APPLICATION_ID 222) and the Oracle-published security group (SECURITY_GROUP_ID = 0). The view has been available since Release 11.5 and remains VALID in both 12.1.1 and 12.2.2, though its presence in 12.2.x is predominantly maintained for backward compatibility with custom code and seed data supplied by third parties.
In the EBS architecture, lookups provide the code-to-meaning translation layer used throughout the Receivables module — payment terms classifications, receipt methods, autoaccounting types, transaction category maps, and dozens of similar enumerations. Rather than coding joins directly against FND_LOOKUP_VALUES, developers queries AR_LOOKUPS to obtain the Receivables-specific subset with language filtering already applied. The view therefore acts as a stable, product-scoped interface between the generic FND lookup infrastructure and Receivables reporting, concurrent programs, and third-party integrations.
Underlying Base Objects
The single documented base object is FND_LOOKUP_VALUES (referenced through a synonym). The view is defined as follows:
- Source: FND_LOOKUP_VALUES LV.
- Filter 1:
LV.LANGUAGE = USERENV('LANG')— restricts rows to the session's current language, ensuring meanings are returned in the user's locale. - Filter 2:
LV.VIEW_APPLICATION_ID = 222— constrains the result set to the Receivables application. - Filter 3:
LV.SECURITY_GROUP_ID = 0— limits to the published (non-secured) lookup values.
All DML against lookup values occurs on FND_LOOKUP_VALUES; AR_LOOKUPS itself is not updatable. Any maintenance of Receivables lookup codes should be performed through the Application Developer responsibility or the Receivables setup forms, not through direct SQL against this view.
Key Columns
- LOOKUP_TYPE — the lookup category (for example, the Receivables payment terms or receipt class lookups). Together with LOOKUP_CODE it forms the natural key.
- LOOKUP_CODE — the stored code value used in transactional tables.
- MEANING — the translatable user-facing description of the code.
- DESCRIPTION — additional free-text description.
- ENABLED_FLAG — indicates whether the lookup is currently active (Y/N).
- START_DATE_ACTIVE / END_DATE_ACTIVE — the effective date window for the lookup value.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the standard DESCRIPTIVE flexfield columns, used by Receivables for extended lookup metadata.
- EXTERNALLY_VISIBLE_FLAG — indicates whether the value may be exposed through external interfaces and web services.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical uses include validating a receipt method before insert, driving report parameters, and translating stored codes into meanings for dashboard output. Because the LANGUAGE and APPLICATION_ID filters are built in, the view is especially convenient for localized reporting.
Retrieve all currently active Receivables lookups of a given type:
SELECT lookup_code, meaning, description FROM apps.ar_lookups WHERE lookup_type = :p_type AND enabled_flag = 'Y' AND TRUNC(SYSDATE) BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE);
Translate a transactional value into its meaning:
SELECT al.meaning FROM apps.ar_lookups al WHERE al.lookup_type = 'RECEIPT_METHOD' AND al.lookup_code = :p_code;
Populate a value set or LOV with selectable codes:
SELECT meaning, lookup_code FROM apps.ar_lookups WHERE lookup_type = 'INV_TRANSACTION_TYPE' AND enabled_flag = 'Y' ORDER BY meaning;
When joining to Receivables transaction or receipt tables, always constrain on LOOKUP_TYPE and enabled_flag to avoid ambiguity, and consider that attribute columns may carry additional product-specific configuration not documented in the base view definition.
-
View: AR_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LOOKUPS, object_name:AR_LOOKUPS, status:VALID, product: AR - Receivables , description: Release 11.5 , implementation_dba_data: APPS.AR_LOOKUPS ,
-
View: AR_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LOOKUPS, object_name:AR_LOOKUPS, status:VALID, product: AR - Receivables , description: Release 11.5 , implementation_dba_data: APPS.AR_LOOKUPS ,
-
View: AR_INV_ACT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INV_ACT_V, object_name:AR_INV_ACT_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_INV_ACT_V ,
-
View: AR_INV_ACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INV_ACT_V, object_name:AR_INV_ACT_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_INV_ACT_V ,
-
View: AR_REVENUE_ADJUSTMENTS_RA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REVENUE_ADJUSTMENTS_RA_V, object_name:AR_REVENUE_ADJUSTMENTS_RA_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_REVENUE_ADJUSTMENTS_RA_V ,
-
View: AR_REVENUE_ADJUSTMENTS_RA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REVENUE_ADJUSTMENTS_RA_V, object_name:AR_REVENUE_ADJUSTMENTS_RA_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_REVENUE_ADJUSTMENTS_RA_V ,
-
View: AR_PHONES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PHONES_V, object_name:AR_PHONES_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_PHONES_V ,
-
View: AR_PHONES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PHONES_V, object_name:AR_PHONES_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_PHONES_V ,
-
View: HZ_DQM_P_AC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_P_AC_V, object_name:HZ_DQM_P_AC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_P_AC_V ,
-
View: AR_OEX_RECEIPTS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OEX_RECEIPTS_VIEW, object_name:AR_OEX_RECEIPTS_VIEW, status:VALID, product: AR - Receivables , description: This is the view for the Oracle Exchange Bill Presentment Payments page. , implementation_dba_data: APPS.AR_OEX_RECEIPTS_VIEW ,
-
View: HZ_DQM_P_AC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_P_AC_V, object_name:HZ_DQM_P_AC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_P_AC_V ,
-
View: AR_AEL_SL_ADJ_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_ADJ_MRC_V, object_name:AR_AEL_SL_ADJ_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_ADJ_MRC_V ,
-
View: AR_AEL_SL_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_INV_V, object_name:AR_AEL_SL_INV_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_INV_V ,
-
View: AR_AEL_SL_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_INV_V, object_name:AR_AEL_SL_INV_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_INV_V ,
-
View: AR_AEL_SL_ADJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_ADJ_V, object_name:AR_AEL_SL_ADJ_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_ADJ_V ,
-
View: AR_AEL_SL_ADJ_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_ADJ_MRC_V, object_name:AR_AEL_SL_ADJ_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_ADJ_MRC_V ,
-
View: AR_AEL_SL_ADJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_ADJ_V, object_name:AR_AEL_SL_ADJ_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_ADJ_V ,
-
View: AR_BR_ACTIVITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BR_ACTIVITIES_V, object_name:AR_BR_ACTIVITIES_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_BR_ACTIVITIES_V ,
-
View: AR_AEL_GL_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_INV_V, object_name:AR_AEL_GL_INV_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_INV_V ,
-
View: AR_AEL_SL_ADJ_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_GL_ADJ_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_REMIT_TO_COUNTRY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REMIT_TO_COUNTRY, object_name:AR_REMIT_TO_COUNTRY, status:VALID, product: AR - Receivables , description: Combines FND_TERRITORIES and AR_LOOKUPS , implementation_dba_data: APPS.AR_REMIT_TO_COUNTRY ,
-
View: AR_REMIT_TO_COUNTRY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REMIT_TO_COUNTRY, object_name:AR_REMIT_TO_COUNTRY, status:VALID, product: AR - Receivables , description: Combines FND_TERRITORIES and AR_LOOKUPS , implementation_dba_data: APPS.AR_REMIT_TO_COUNTRY ,
-
View: AR_AEL_SL_INV_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_GL_INV_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_CUSTOMER_FIND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_FIND_V, object_name:AR_CUSTOMER_FIND_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CUSTOMER_FIND_V ,
-
View: AR_OEX_RECEIPTS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OEX_RECEIPTS_VIEW, object_name:AR_OEX_RECEIPTS_VIEW, status:VALID, product: AR - Receivables , description: This is the view for the Oracle Exchange Bill Presentment Payments page. , implementation_dba_data: APPS.AR_OEX_RECEIPTS_VIEW ,
-
View: AR_AEL_GL_ADJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_ADJ_V, object_name:AR_AEL_GL_ADJ_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_ADJ_V ,
-
View: AR_BR_ACTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BR_ACTIVITIES_V, object_name:AR_BR_ACTIVITIES_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_BR_ACTIVITIES_V ,
-
View: AR_AEL_GL_INV_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_INV_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_REC_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_INV_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_INV_MRC_V, object_name:AR_AEL_SL_INV_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_INV_MRC_V ,
-
View: AR_AEL_GL_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_INV_V, object_name:AR_AEL_GL_INV_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_INV_V ,
-
View: AR_CUSTOMER_FIND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_FIND_V, object_name:AR_CUSTOMER_FIND_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CUSTOMER_FIND_V ,
-
View: AR_AEL_GL_ADJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_ADJ_V, object_name:AR_AEL_GL_ADJ_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_ADJ_V ,
-
View: AR_AEL_SL_ADJ_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_GL_ADJ_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_REC_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_INV_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_INV_MRC_V, object_name:AR_AEL_SL_INV_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_INV_MRC_V ,
-
View: AR_REMIT_TO_STATE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REMIT_TO_STATE, object_name:AR_REMIT_TO_STATE, status:VALID, product: AR - Receivables , description: This view combines all STATE values in AR_LOCATION_VALUES and the DEFAULT lookup code in AR_LOOKUPS , implementation_dba_data: APPS.AR_REMIT_TO_STATE ,
-
View: AR_REMIT_TO_STATE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REMIT_TO_STATE, object_name:AR_REMIT_TO_STATE, status:VALID, product: AR - Receivables , description: This view combines all STATE values in AR_LOCATION_VALUES and the DEFAULT lookup code in AR_LOOKUPS , implementation_dba_data: APPS.AR_REMIT_TO_STATE ,
-
View: AR_AEL_GL_REC_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_GL_REC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_REC_V, object_name:AR_AEL_GL_REC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_REC_V ,
-
View: AR_AEL_SL_CB_REC_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_CB_REC_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_TRX_DIST_LINE_REP_ITF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_TRX_DIST_LINE_REP_ITF_V, object_name:AR_TRX_DIST_LINE_REP_ITF_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_TRX_DIST_LINE_REP_ITF_V ,
-
View: AR_TRX_DIST_LINE_REP_ITF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_TRX_DIST_LINE_REP_ITF_V, object_name:AR_TRX_DIST_LINE_REP_ITF_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_TRX_DIST_LINE_REP_ITF_V ,
-
View: AR_AEL_GL_REC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_REC_V, object_name:AR_AEL_GL_REC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_REC_V ,
-
View: AR_AEL_GL_REC_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,