Search Results default_approver_user_id
Overview
AMV_C_CHANNELS_B is the base table of the Marketing Encyclopedia System (product code AMV) in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the master definition of every channel that exists in the system. Within the ETRM (Electronic Technical Reference Manual) model, a channel is the central delivery and subscription construct for marketing content: it groups content types, item types, perspectives, keywords, and item-matching rules, and it governs who may publish to or subscribe to that content. The table resides in the AMV schema and is classified as VALID in the documented environment.
A heuristic Data Vault classification mined from the foreign-key structure identifies this object as hub-leaning. In Data Vault terms, AMV_C_CHANNELS_B behaves as a hub: its primary key, CHANNEL_ID, is a stable surrogate identifier that is referenced by many dependent tables, while descriptive and state-bearing attributes could be modeled as satellites. This classification is a modeling suggestion only and does not affect the physical implementation in EBS.
Key Information Stored
The documented physical schema contains 48 columns. The most significant are:
- CHANNEL_ID — surrogate primary key, enforced by AMV_C_CHANNELS_B_PK. It is also the business-key component of the unique index AMV_C_CHANNELS_B_U1 (CHANNEL_ID, ZD_EDITION_NAME).
- CHANNEL_TYPE — discriminates the category of channel being defined.
- CHANNEL_CATEGORY_ID — foreign key to AMV_C_CATEGORIES_B, classifying the channel.
- STATUS — lifecycle state of the channel (for example, active or inactive).
- OWNER_USER_ID and DEFAULT_APPROVER_USER_ID — both reference JTF_RS_RESOURCE_EXTNS and identify the owning resource and the default approver for publishing workflow.
- EFFECTIVE_START_DATE and EXPIRATION_DATE — define the validity window of the channel.
- ACCESS_LEVEL_TYPE and EXTERNAL_ACCESS_FLAG — control visibility of channel content and whether external access is permitted.
- PUB_NEED_APPROVAL_FLAG and SUB_NEED_APPROVAL_FLAG — drive approval requirements for publishing and subscription.
- MATCH_ON_*_FLAG columns (KEYWORD, AUTHOR, PERSPECTIVE, ITEM_TYPE, CONTENT_TYPE, TIME) and MATCH_ON_ALL_CRITERIA_FLAG — configure the matching algorithm used to associate items with the channel.
- APPLICATION_ID — foreign key to FND_APPLICATION, scoping the channel to a registered EBS application.
- ITEM_MATCH_COUNT and LAST_MATCH_TIME — matching statistics maintained by the channel processing logic.
- ATTRIBUTE1 through ATTRIBUTE15 and ATTRIBUTE_CATEGORY — the standard EBS descriptive flexfield columns.
Standard EBS WHO columns (OBJECT_VERSION_NUMBER, LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN) and SECURITY_GROUP_ID are also present.
Common Use Cases and Queries
Channels are surfaced in the Marketing Encyclopedia System administration and self-service pages, so the table is queried for channel maintenance, subscription reporting, and access auditing. A typical lookup joins the base table to its translation table to obtain the displayed name:
- List active channels with their translated names:
SELECT b.channel_id, t.channel_name FROM amv_c_channels_b b, amv_c_channels_tl t WHERE b.channel_id = t.channel_id AND t.language = USERENV('LANG') AND b.status = 'ACTIVE' - Identify channels owned by a specific resource via OWNER_USER_ID joined to JTF_RS_RESOURCE_EXTNS.
- Report channels nearing expiration using EXPIRATION_DATE against SYSDATE.
- Audit external access by filtering on EXTERNAL_ACCESS_FLAG and ACCESS_LEVEL_TYPE.
- Analyze matching configuration across channels by pivotting the MATCH_ON_* flags.
Related Objects
The following objects are the most significant dependents and references:
- AMV_C_CHANNELS_TL — translation table joined on CHANNEL_ID; supplies language-specific channel names and descriptions.
- AMV_C_CATEGORIES_B — referenced by CHANNEL_CATEGORY_ID.
- JTF_RS_RESOURCE_EXTNS — referenced by OWNER_USER_ID and DEFAULT_APPROVER_USER_ID for owner and approver resolution.
- FND_APPLICATION — referenced by APPLICATION_ID, scoping channels to a product application.
- AMV_C_CHL_ITEM_MATCH and AMV_C_CHL_PERSPECTIVES — child tables keyed on CHANNEL_ID holding item-matching and perspective configuration.
- AMV_C_CONTENT_TYPES, AMV_C_ITEM_TYPES, and AMV_C_KEYWORDS — child tables that associate content types, item types, and keywords with a channel.
- AMV_U_MY_CHANNELS, AMV_U_EXT_SUBSCRIPTIONS, and AMV_U_ACCESS — self-service tables that record user subscriptions and access grants against the channel record.
-
Table: AMV_C_CHANNELS_B
12.1.1
owner:AMV, object_type:TABLE, fnd_design_data:AMV.AMV_C_CHANNELS_B, object_name:AMV_C_CHANNELS_B, status:VALID, product: AMV - Marketing Encyclopedia System , description: Base Table AMV_C_CHANNELS_B stores all channels that exist in the system. , implementation_dba_data: AMV.AMV_C_CHANNELS_B ,
-
Table: AMV_C_CHANNELS_B
12.2.2
owner:AMV, object_type:TABLE, fnd_design_data:AMV.AMV_C_CHANNELS_B, object_name:AMV_C_CHANNELS_B, status:VALID, product: AMV - Marketing Encyclopedia System , description: Base Table AMV_C_CHANNELS_B stores all channels that exist in the system. , implementation_dba_data: AMV.AMV_C_CHANNELS_B ,
-
VIEW: AMV.AMV_C_CHANNELS_B#
12.2.2
-
VIEW: AMV.AMV_C_CHANNELS_B#
12.2.2
owner:AMV, object_type:VIEW, object_name:AMV_C_CHANNELS_B#, status:VALID,
-
TYPE: APPS.AMV_CHANNEL_OBJ_TYPE
12.2.2
owner:APPS, object_type:TYPE, object_name:AMV_CHANNEL_OBJ_TYPE, status:VALID,
-
TABLE: AMV.AMV_C_CHANNELS_B
12.1.1
owner:AMV, object_type:TABLE, fnd_design_data:AMV.AMV_C_CHANNELS_B, object_name:AMV_C_CHANNELS_B, status:VALID,
-
TABLE: AMV.AMV_C_CHANNELS_B
12.2.2
owner:AMV, object_type:TABLE, fnd_design_data:AMV.AMV_C_CHANNELS_B, object_name:AMV_C_CHANNELS_B, status:VALID,
-
View: AMV_C_CHANNELS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMV.AMV_C_CHANNELS_VL, object_name:AMV_C_CHANNELS_VL, status:VALID, product: AMV - Marketing Encyclopedia System , description: AMV_C_CHANNELS_VL is a view on the base and translation tables that contains the translated channels based on the current language. , implementation_dba_data: APPS.AMV_C_CHANNELS_VL ,
-
VIEW: APPS.AMV_C_CHANNELS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMV.AMV_C_CHANNELS_VL, object_name:AMV_C_CHANNELS_VL, status:VALID,
-
View: AMV_C_CHANNELS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMV.AMV_C_CHANNELS_VL, object_name:AMV_C_CHANNELS_VL, status:VALID, product: AMV - Marketing Encyclopedia System , description: AMV_C_CHANNELS_VL is a view on the base and translation tables that contains the translated channels based on the current language. , implementation_dba_data: APPS.AMV_C_CHANNELS_VL ,
-
VIEW: APPS.AMV_C_CHANNELS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMV.AMV_C_CHANNELS_VL, object_name:AMV_C_CHANNELS_VL, status:VALID,
-
TYPE: APPS.AMV_CHANNEL_OBJ_TYPE
12.1.1
owner:APPS, object_type:TYPE, object_name:AMV_CHANNEL_OBJ_TYPE, status:VALID,
-
APPS.AMV_WFAPPROVAL_PVT SQL Statements
12.1.1
-
APPS.AMV_WFAPPROVAL_PVT SQL Statements
12.2.2
-
APPS.AMV_C_CHANNELS_PKG SQL Statements
12.2.2
-
APPS.AMV_C_CHANNELS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMV_C_CHANNELS_PKG
12.2.2
-
APPS.AMV_MYCHANNEL_PVT SQL Statements
12.1.1
-
APPS.AMV_MYCHANNEL_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AMV_C_CHANNELS_PKG
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. ,
-
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. ,
-
APPS.AMV_MYCHANNEL_PVT dependencies on AMV_C_CHANNELS_VL
12.2.2
-
APPS.AMV_MYCHANNEL_PVT dependencies on AMV_C_CHANNELS_VL
12.1.1
-
APPS.AMV_WFAPPROVAL_PVT dependencies on AMV_C_CHANNELS_B
12.2.2
-
APPS.AMV_WFAPPROVAL_PVT dependencies on AMV_C_CHANNELS_B
12.1.1
-
PACKAGE BODY: APPS.AMV_CHANNEL_PVT_W
12.1.1
-
PACKAGE BODY: APPS.AMV_CHANNEL_PVT_W
12.2.2
-
PACKAGE BODY: APPS.AMV_WFAPPROVAL_PVT
12.2.2
-
PACKAGE: APPS.AMV_CHANNEL_PVT
12.1.1
-
PACKAGE BODY: APPS.AMV_WFAPPROVAL_PVT
12.1.1
-
PACKAGE: APPS.AMV_CHANNEL_PVT
12.2.2
-
PACKAGE BODY: APPS.AMV_MYCHANNEL_PVT
12.2.2
-
PACKAGE BODY: APPS.AMV_MYCHANNEL_PVT
12.1.1
-
PACKAGE BODY: APPS.AMV_CHANNEL_PVT
12.2.2
-
PACKAGE BODY: APPS.AMV_CHANNEL_PVT
12.1.1
-
PACKAGE BODY: APPS.AMV_USER_PVT
12.1.1
-
PACKAGE BODY: APPS.AMV_USER_PVT
12.2.2
-
APPS.AMV_USER_PVT dependencies on FND_API
12.1.1
-
APPS.AMV_USER_PVT dependencies on FND_API
12.2.2