Search Results amv_i_content_types_b
Overview
AMV_I_CONTENT_TYPES_B is the base table of the Marketing Encyclopedia System (AMV) product in Oracle E-Business Suite, holding the master definition of content types that may be associated with an item or a channel. It functions as a reference and classification entity: item records and channel configurations draw their allowed content-type values from this table, enabling the AMV content repository to categorize, search, and present rich media such as images, documents, and web assets. The table is owned by the AMV schema and is marked VALID in the ETRM data dictionary for 12.1.1 and 12.2.2.
From a Data Vault modeling perspective, the mined relationships suggest a hub-leaning classification. The table carries its own surrogate identity and participates in downward referencing relationships, which is characteristic of a hub entity around which descriptive translations and transactional item associations are organized. This is a heuristic suggestion rather than a documented physical design; implementers should treat it as guidance when mapping AMV data into analytical or warehouse models.
Key Information Stored
The documented physical schema for release 12.2.2 contains nine columns, centered on the surrogate key and standard EBS audit and multi-tenancy attributes:
- CONTENT_TYPE_ID — the surrogate primary key, enforced by AMV_I_CONTENT_TYPES_B_PK. It uniquely identifies each content type and is the column propagated to dependent tables.
- OBJECT_VERSION_NUMBER — optimistic locking column used by the EBS framework to detect concurrent updates.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — the standard Who columns capturing audit history and the application login responsible for the last change.
- SECURITY_GROUP_ID — the security grouping reference, which carries a foreign key to FND_SECURITY_GROUPS and supports data partitioning by responsibility or operating unit context.
- ZD_EDITION_NAME — the editioning column introduced by the EBS online patching (adop) architecture. Together with CONTENT_TYPE_ID it forms the unique index AMV_I_CONTENT_TYPES_B_U1, which acts as the business-key candidate for this entity.
Descriptive, translatable attributes such as the content-type name and description are not held in this base table; they reside in the companion translation table AMV_I_CONTENT_TYPES_TL, keyed by CONTENT_TYPE_ID.
Common Use Cases and Queries
The primary practical use of this table is to resolve the human-readable identity of a content type referenced by an item or channel record, and to validate the list of valid types available to the Marketing Encyclopedia.
- Listing all content types available to users:
SELECT content_type_id FROM amv_i_content_types_b ORDER BY content_type_id; - Retrieving a name for a given type by joining to the translation table:
SELECT b.content_type_id, t.content_type_name FROM amv_i_content_types_b b, amv_i_content_types_tl t WHERE b.content_type_id = t.content_type_id AND t.language = USERENV('LANG'); - Reporting on item content associations, joining item entries to their type:
SELECT i.item_id, b.content_type_id FROM jtf_amv_items_b i, amv_i_content_types_b b WHERE i.content_type_id = b.content_type_id; - Audit and security-group analysis, using SECURITY_GROUP_ID to partition results by responsibility or organizational context, and the Who columns to trace change history.
Because of the ZD_EDITION_NAME column, ad-hoc queries in a patched 12.2.2 environment should filter on the active edition when duplicate logical rows may exist across editions.
Related Objects
The following objects are most significant for working with this entity:
- AMV_I_CONTENT_TYPES_TL — the translation table, joined on CONTENT_TYPE_ID, supplying language-specific names and descriptions. The foreign key from the TL table points back to the base table.
- JTF_AMV_ITEMS_B — the item repository that references CONTENT_TYPE_ID, linking each content item to its assigned type.
- FND_SECURITY_GROUPS — referenced through SECURITY_GROUP_ID, providing the security-group context for the row.
- AMV_I_CONTENT_TYPES_B_PK and AMV_I_CONTENT_TYPES_B_U1 — the primary key and unique (business-key) indexes that enforce identity and edition uniqueness.
- AMV schema APIs — the AMV Marketing Encyclopedia System PL/SQL interfaces used to create and maintain content types under the EBS framework conventions.
-
Table: AMV_I_CONTENT_TYPES_B
12.1.1
owner:AMV, object_type:TABLE, fnd_design_data:AMV.AMV_I_CONTENT_TYPES_B, object_name:AMV_I_CONTENT_TYPES_B, status:VALID, product: AMV - Marketing Encyclopedia System , description: Base Table AMV_I_CONTENT_TYPES_B stores all content types which one can be used by an item or channel. , implementation_dba_data: AMV.AMV_I_CONTENT_TYPES_B ,
-
Table: AMV_I_CONTENT_TYPES_B
12.2.2
owner:AMV, object_type:TABLE, fnd_design_data:AMV.AMV_I_CONTENT_TYPES_B, object_name:AMV_I_CONTENT_TYPES_B, status:VALID, product: AMV - Marketing Encyclopedia System , description: Base Table AMV_I_CONTENT_TYPES_B stores all content types which one can be used by an item or channel. , implementation_dba_data: AMV.AMV_I_CONTENT_TYPES_B ,
-
Table: AMV_I_CONTENT_TYPES_TL
12.1.1
owner:AMV, object_type:TABLE, fnd_design_data:AMV.AMV_I_CONTENT_TYPES_TL, object_name:AMV_I_CONTENT_TYPES_TL, status:VALID, product: AMV - Marketing Encyclopedia System , description: Translation table for AMV_I_CONTENT_TYPES_B. It is used to store all columns and data that are needed for Multi-Language Suport. , implementation_dba_data: AMV.AMV_I_CONTENT_TYPES_TL ,
-
VIEW: AMV.AMV_I_CONTENT_TYPES_B#
12.2.2
owner:AMV, object_type:VIEW, object_name:AMV_I_CONTENT_TYPES_B#, status:VALID,
-
TABLE: AMV.AMV_I_CONTENT_TYPES_B
12.1.1
owner:AMV, object_type:TABLE, fnd_design_data:AMV.AMV_I_CONTENT_TYPES_B, object_name:AMV_I_CONTENT_TYPES_B, status:VALID,
-
APPS.AMV_I_CONTENT_TYPES_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.AMV_I_CONTENT_TYPES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMV_I_CONTENT_TYPES_B, status:VALID,
-
VIEW: APPS.AMV_I_CONTENT_TYPES_VL
12.2.2
-
VIEW: AMV.AMV_I_CONTENT_TYPES_B#
12.2.2
-
APPS.AMV_CONTENT_TYPE_PVT SQL Statements
12.1.1
-
Table: AMV_I_CONTENT_TYPES_TL
12.2.2
owner:AMV, object_type:TABLE, fnd_design_data:AMV.AMV_I_CONTENT_TYPES_TL, object_name:AMV_I_CONTENT_TYPES_TL, status:VALID, product: AMV - Marketing Encyclopedia System , description: Translation table for AMV_I_CONTENT_TYPES_B. It is used to store all columns and data that are needed for Multi-Language Suport. , implementation_dba_data: AMV.AMV_I_CONTENT_TYPES_TL ,
-
APPS.AMV_I_CONTENT_TYPES_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.AMV_I_CONTENT_TYPES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMV_I_CONTENT_TYPES_B, status:VALID,
-
APPS.AMV_CONTENT_TYPE_PVT SQL Statements
12.2.2
-
VIEW: APPS.AMV_I_CONTENT_TYPES_VL
12.1.1
-
TRIGGER: APPS.AMV_I_CONTENT_TYPES_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:AMV_I_CONTENT_TYPES_B+, status:VALID,
-
TABLE: AMV.AMV_I_CONTENT_TYPES_B
12.2.2
owner:AMV, object_type:TABLE, fnd_design_data:AMV.AMV_I_CONTENT_TYPES_B, object_name:AMV_I_CONTENT_TYPES_B, status:VALID,
-
TRIGGER: APPS.AMV_I_CONTENT_TYPES_B+
12.2.2
-
PACKAGE BODY: APPS.AMV_I_CONTENT_TYPES_PKG
12.1.1
-
PACKAGE BODY: APPS.AMV_I_CONTENT_TYPES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMV_I_CONTENT_TYPES_PKG, status:VALID,
-
FUNCTION: APPS.AMV_I_CONTENT_TYPES_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:AMV_I_CONTENT_TYPES_B=, status:VALID,
-
View: AMV_I_CONTENT_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMV.AMV_I_CONTENT_TYPES_VL, object_name:AMV_I_CONTENT_TYPES_VL, status:VALID, product: AMV - Marketing Encyclopedia System , description: AMV_I_CONTENT_TYPES_VL is a view on the base and translation tables that contains the translated content types based on the current language. , implementation_dba_data: APPS.AMV_I_CONTENT_TYPES_VL ,
-
FUNCTION: APPS.AMV_I_CONTENT_TYPES_B=
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.AMV_I_CONTENT_TYPES_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.AMV_UTILITY_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMV_UTILITY_PVT, status:VALID,
-
View: AMV_I_CONTENT_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMV.AMV_I_CONTENT_TYPES_VL, object_name:AMV_I_CONTENT_TYPES_VL, status:VALID, product: AMV - Marketing Encyclopedia System , description: AMV_I_CONTENT_TYPES_VL is a view on the base and translation tables that contains the translated content types based on the current language. , implementation_dba_data: APPS.AMV_I_CONTENT_TYPES_VL ,
-
PACKAGE BODY: APPS.AMV_CONTENT_TYPE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMV_CONTENT_TYPE_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.AMV_I_CONTENT_TYPES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMV_I_CONTENT_TYPES_PKG, status:VALID,
-
PACKAGE BODY: APPS.AMV_UTILITY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMV_UTILITY_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.AMV_CONTENT_TYPE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMV_CONTENT_TYPE_PVT, status:VALID,
-
eTRM - AMV Tables and Views
12.2.2
description: Stores the key id of each vendor (content provider) for all the stocks in amv_stocks. ,
-
VIEW: APPS.AMV_I_CONTENT_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMV.AMV_I_CONTENT_TYPES_VL, object_name:AMV_I_CONTENT_TYPES_VL, status:VALID,
-
eTRM - AMV Tables and Views
12.1.1
description: Stores the key id of each vendor (content provider) for all the stocks in amv_stocks. ,
-
VIEW: APPS.AMV_I_CONTENT_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMV.AMV_I_CONTENT_TYPES_VL, object_name:AMV_I_CONTENT_TYPES_VL, status:VALID,
-
APPS.AMV_UTILITY_PVT SQL Statements
12.1.1
-
APPS.AMV_UTILITY_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AMV_CONTENT_TYPE_PVT
12.1.1
-
eTRM - AMV Tables and Views
12.2.2
description: Stores the key id of each vendor (content provider) for all the stocks in amv_stocks. ,