Search Results jtf_amv_items_vl
Overview
JTF_AMV_ITEMS_VL is a multilingual (ML) view owned by the APPS schema in Oracle E-Business Suite, classified under the JTF – CRM Foundation product. Its purpose is to expose "announcement" or "AMV item" records from the base table alongside their translated descriptive text, filtered by the session language. The view joins the base table JTF_AMV_ITEMS_B with the translation table JTF_AMV_ITEMS_TL and restricts the translation row to the language returned by USERENV('LANG'). In this way, the view returns a single, language-appropriate row per AMV item without the caller having to write the translation join explicitly.
In EBS 12.1.1 and 12.2.2, this view behaves identically with respect to its definition; the underlying tables are accessed through synonyms owned by APPS. The object is documented as VALID in the ETRM data dictionary. Because it is a VL (view-language) object rather than a persistent table, it is intended for querying and reporting, and is commonly referenced by CRM Foundation and dependent application code where a localized item name, description, and text string are required. It is a read-oriented construct; inserts and updates are performed against the base and translation tables directly.
Underlying Base Objects
The view is defined entirely over two documented base objects, both referenced as synonyms in the APPS schema:
- JTF_AMV_ITEMS_B – the base (non-translated) table holding item-level attributes such as item identifiers, status, dates, ownership, and descriptive flexfield attributes.
- JTF_AMV_ITEMS_TL – the translation table holding the language-specific item name, description, and text string.
The documented view text joins them as: JTF_AMV_ITEMS_TL T, JTF_AMV_ITEMS_B B WHERE B.ITEM_ID = T.ITEM_ID AND T.LANGUAGE = USERENV('LANG'). All base columns originate from B, while ITEM_NAME, DESCRIPTION, and TEXT_STRING originate from T.
Key Columns
- ITEM_ID – primary key linking base and translation rows; the join key.
- ITEM_NAME, DESCRIPTION, TEXT_STRING – localized text sourced from JTF_AMV_ITEMS_TL.
- LANGUAGE_CODE – language attribute carried from the base row.
- STATUS_CODE – lifecycle status of the item.
- EFFECTIVE_START_DATE / EXPIRATION_DATE – date-range validity of the item; typically used to filter active announcements.
- PRIORITY, PUBLICATION_DATE – ordering and scheduling attributes.
- APPLICATION_ID, OWNER_ID, DEFAULT_APPROVER_ID – owning application and responsibility references.
- ITEM_TYPE, CONTENT_TYPE_ID, URL_STRING, ACCESS_NAME, ITEM_DESTINATION_TYPE, DELIVERABLE_TYPE_CODE, APPLICABLE_TO_CODE, EXTERNAL_ACCESS_FLAG – classification and delivery attributes.
- OBJECT_VERSION_NUMBER, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN – standard auditing columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 – descriptive flexfield segments.
Common Use Cases and Queries
Typical uses include retrieving the localized name of an announcement for a specific language, and building reports of currently active CRM Foundation content. Because the view enforces USERENV('LANG'), query results are automatically constrained to the session language.
To retrieve active items in the current session language:
SELECT item_id, item_name, description, status_code FROM jtf_amv_items_vl WHERE status_code = 'PUBLISHED' AND SYSDATE BETWEEN effective_start_date AND expiration_date;
To join localized item text to an application owner and order by priority:
SELECT v.item_id, v.item_name, v.priority FROM jtf_amv_items_vl v WHERE v.application_id = :app_id ORDER BY v.priority, v.item_name;
Because translation is bound to the session language, multi-language reporting across several languages requires either separate sessions or direct querying of JTF_AMV_ITEMS_B and JTF_AMV_ITEMS_TL.
-
View: JTF_AMV_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_AMV_ITEMS_VL, object_name:JTF_AMV_ITEMS_VL, status:VALID, product: JTF - CRM Foundation , description: JTF_AMV_ITEMS_VL is a view on the base and translation tables that contains the translated data based on the current language. , implementation_dba_data: APPS.JTF_AMV_ITEMS_VL ,
-
View: JTF_AMV_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_AMV_ITEMS_VL, object_name:JTF_AMV_ITEMS_VL, status:VALID, product: JTF - CRM Foundation , description: JTF_AMV_ITEMS_VL is a view on the base and translation tables that contains the translated data based on the current language. , implementation_dba_data: APPS.JTF_AMV_ITEMS_VL ,
-
VIEW: APPS.IBE_DSP_OBJ_LGL_CTNT_V
12.2.2
-
VIEW: APPS.JTF_DSP_LGL_TEMPLATES_V
12.1.1
-
VIEW: APPS.IBE_DSP_OBJ_LGL_CTNT_V
12.1.1
-
VIEW: APPS.IBE_DSP_LGL_TEMPLATES_V
12.1.1
-
VIEW: APPS.JTF_DSP_LGL_TEMPLATES_V
12.2.2
-
VIEW: APPS.IBE_DSP_LGL_TEMPLATES_V
12.2.2
-
APPS.IBE_LOG_TO_PHY_PVT SQL Statements
12.2.2
-
APPS.JTF_LOG_TO_PHY_PVT SQL Statements
12.2.2
-
APPS.IBE_LOG_TO_PHY_PVT SQL Statements
12.1.1
-
APPS.JTF_LOG_TO_PHY_PVT SQL Statements
12.1.1
-
View: IBE_DSP_OBJ_LGL_CTNT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_DSP_OBJ_LGL_CTNT_V, object_name:IBE_DSP_OBJ_LGL_CTNT_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_DSP_OBJ_LGL_CTNT_V ,
-
View: IBE_DSP_OBJ_LGL_CTNT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_DSP_OBJ_LGL_CTNT_V, object_name:IBE_DSP_OBJ_LGL_CTNT_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_DSP_OBJ_LGL_CTNT_V ,
-
VIEW: APPS.JTF_DSP_FEATURED_MEDIA_V
12.2.2
-
View: JTF_DSP_LGL_TEMPLATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_DSP_LGL_TEMPLATES_V, object_name:JTF_DSP_LGL_TEMPLATES_V, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_DSP_LGL_TEMPLATES_V ,
-
View: IBE_DSP_LGL_TEMPLATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_DSP_LGL_TEMPLATES_V, object_name:IBE_DSP_LGL_TEMPLATES_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_DSP_LGL_TEMPLATES_V ,
-
View: IBE_DSP_LGL_TEMPLATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_DSP_LGL_TEMPLATES_V, object_name:IBE_DSP_LGL_TEMPLATES_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_DSP_LGL_TEMPLATES_V ,
-
View: JTF_DSP_LGL_TEMPLATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_DSP_LGL_TEMPLATES_V, object_name:JTF_DSP_LGL_TEMPLATES_V, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_DSP_LGL_TEMPLATES_V ,
-
VIEW: APPS.IBE_DSP_FEATURED_MEDIA_V
12.1.1
-
VIEW: APPS.JTF_DSP_FEATURED_MEDIA_V
12.1.1
-
VIEW: APPS.IBE_DSP_FEATURED_MEDIA_V
12.2.2
-
APPS.IBE_PHY_MEDIA_PVT SQL Statements
12.1.1
-
APPS.IBE_PHY_MEDIA_PVT SQL Statements
12.2.2
-
APPS.JTF_PHY_MEDIA_PVT SQL Statements
12.1.1
-
APPS.JTF_PHY_MEDIA_PVT SQL Statements
12.2.2
-
View: JTF_DSP_FEATURED_MEDIA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_DSP_FEATURED_MEDIA_V, object_name:JTF_DSP_FEATURED_MEDIA_V, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_DSP_FEATURED_MEDIA_V ,
-
VIEW: APPS.IBE_DSP_LGL_CTNT_V
12.1.1
-
VIEW: APPS.JTF_DSP_OBJ_LGL_CTNT_V
12.2.2
-
View: IBE_DSP_FEATURED_MEDIA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_DSP_FEATURED_MEDIA_V, object_name:IBE_DSP_FEATURED_MEDIA_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_DSP_FEATURED_MEDIA_V ,
-
APPS.IEM_RULES_ENGINE_PUB SQL Statements
12.1.1
-
APPS.IEM_RULES_ENGINE_PUB SQL Statements
12.2.2
-
View: JTF_DSP_FEATURED_MEDIA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_DSP_FEATURED_MEDIA_V, object_name:JTF_DSP_FEATURED_MEDIA_V, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_DSP_FEATURED_MEDIA_V ,
-
VIEW: APPS.JTF_DSP_OBJ_LGL_CTNT_V
12.1.1
-
View: IBE_DSP_FEATURED_MEDIA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_DSP_FEATURED_MEDIA_V, object_name:IBE_DSP_FEATURED_MEDIA_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_DSP_FEATURED_MEDIA_V ,
-
VIEW: APPS.IBE_DSP_LGL_CTNT_V
12.2.2
-
VIEW: APPS.IBE_DSP_AMV_ITEMS_V
12.1.1
-
VIEW: APPS.JTF_DSP_ATTACHMENTS_V
12.1.1
-
VIEW: APPS.JTF_FM_AMV_ITEMS_VL
12.1.1
-
VIEW: APPS.JTF_DSP_AMV_ITEMS_V
12.1.1
-
VIEW: APPS.JTF_DSP_AMV_ITEMS_V
12.2.2
-
VIEW: APPS.JTF_DSP_ATTACHMENTS_V
12.2.2
-
VIEW: APPS.IBE_DSP_ATTACHMENTS_V
12.1.1
-
VIEW: APPS.OKL_CS_PROCESS_TMPLTS_UV
12.2.2
-
VIEW: APPS.IBE_DSP_AMV_ITEMS_V
12.2.2
-
VIEW: APPS.IBE_DSP_ATTACHMENTS_V
12.2.2
-
VIEW: APPS.JTF_FM_AMV_ITEMS_VL
12.2.2
-
View: JTF_FM_AMV_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_FM_AMV_ITEMS_VL, object_name:JTF_FM_AMV_ITEMS_VL, status:VALID, product: JTF - CRM Foundation , description: View referring to the JTF_AMV_ITEMS_VL view , implementation_dba_data: APPS.JTF_FM_AMV_ITEMS_VL ,
-
VIEW: APPS.OKL_CS_PROCESS_TMPLTS_UV
12.1.1
-
View: JTF_FM_AMV_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_FM_AMV_ITEMS_VL, object_name:JTF_FM_AMV_ITEMS_VL, status:VALID, product: JTF - CRM Foundation , description: View referring to the JTF_AMV_ITEMS_VL view , implementation_dba_data: APPS.JTF_FM_AMV_ITEMS_VL ,