Search Results bim_source_code_details
Overview
BIM_SOURCE_CODE_DETAILS is a table owned by the BIM schema within the Oracle E-Business Suite Marketing Intelligence (BIM) product family. It stores all marketing source codes used to attribute responses, leads, and revenue to specific marketing activities and campaigns. The table is populated by the BIM_SRC_CODE_DETAILS_PKG concurrent program, which reconciles and stages source code information from upstream campaign, media, channel, and offer entities for analytical and reporting consumption.
Within the Oracle EBS 12.1.1 and 12.2.2 releases, the table serves as the canonical repository that links marketing execution records to the source codes that identify how a prospect or customer reached a campaign. Because it consolidates campaign schedule, event, offer, and security context, it acts as a convergence point for Marketing Intelligence reporting on response attribution.
From a Data Vault modeling perspective, the mined foreign key structure classifies this object as a standalone entity rather than a hub, link, or satellite. This heuristic suggests the table is treated as an independent dimension or reference table, with no downstream dependencies in the mined relationship graph. The classification is a modeling suggestion only and reflects the current FK topology rather than a formal Data Vault design decision.
Key Information Stored
The table contains 20 documented columns. The surrogate primary key is SOURCE_CODE_ID, enforced by the constraint BIM_SOURCE_CODE_DETAILS_PK. A unique index, BIM_SOURCE_CODE_DETAILS_U1, also exists on SOURCE_CODE_ID, making it both the surrogate key and the documented business-key candidate.
- SOURCE_CODE_ID — surrogate primary key and unique business-key candidate.
- SOURCE_CODE — the marketing source code value used for response attribution.
- SOURCE_CODE_CREATION_DATE — date the source code was originally created.
- CAMPAIGN_SCHEDULE_ID — foreign key to AMS_CAMPAIGN_SCHEDULES, associating the code with a campaign schedule.
- CAMPAIGN_ID, MEDIA_ID, CHANNEL_ID, OFFER_ID, EVENT_ID — contextual identifiers tying the source code to the campaign, media, channel, offer, and event.
- EVENT_OFFER_ID — foreign key to AMS_EVENT_OFFERS_ALL_B, linking the source code to a specific event offer.
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS, controlling row-level access.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard audit columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent program and request tracking columns used by the BIM_SRC_CODE_DETAILS_PKG load process.
Common Use Cases and Queries
Typical usage centers on marketing attribution and campaign performance reporting. Analysts join source codes to campaign schedules and event offers to measure response rates by media and channel.
- Listing all source codes for a campaign:
SELECT source_code_id, source_code FROM bim_source_code_details WHERE campaign_id = :campaign_id; - Joining to campaign schedules:
SELECT s.source_code, c.* FROM bim_source_code_details s, ams_campaign_schedules c WHERE s.campaign_schedule_id = c.campaign_schedule_id; - Resolving related offers:
SELECT s.source_code, o.* FROM bim_source_code_details s, ams_event_offers_all_b o WHERE s.event_offer_id = o.event_offer_id; - Auditing load activity by concurrent request: filter on REQUEST_ID, PROGRAM_ID, and PROGRAM_UPDATE_DATE.
- Enforcing security group filtering with SECURITY_GROUP_ID for row-level access control in custom reports.
Related Objects
The following objects are directly referenced through documented foreign keys or provide the operational context for this table.
- AMS_CAMPAIGN_SCHEDULES — referenced via CAMPAIGN_SCHEDULE_ID.
- AMS_EVENT_OFFERS_ALL_B — referenced via EVENT_OFFER_ID.
- FND_SECURITY_GROUPS — referenced via SECURITY_GROUP_ID.
- BIM_SRC_CODE_DETAILS_PKG — the concurrent program package that populates the table.
- BIM_SOURCE_CODE_DETAILS_PK and BIM_SOURCE_CODE_DETAILS_U1 — the primary key constraint and unique index on SOURCE_CODE_ID.
Together, these relationships establish BIM_SOURCE_CODE_DETAILS as the central reference for marketing source code attribution data within the BIM module.
-
Table: BIM_SOURCE_CODE_DETAILS
12.1.1
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_SOURCE_CODE_DETAILS, object_name:BIM_SOURCE_CODE_DETAILS, status:VALID, product: BIM - Marketing Intelligence , description: All the marketing source codes and is populated by BIM_SRC_CODE_DETAILS_PKG concurrent program. , implementation_dba_data: BIM.BIM_SOURCE_CODE_DETAILS ,
-
Table: BIM_SOURCE_CODE_DETAILS
12.2.2
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_SOURCE_CODE_DETAILS, object_name:BIM_SOURCE_CODE_DETAILS, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: All the marketing source codes and is populated by BIM_SRC_CODE_DETAILS_PKG concurrent program. , implementation_dba_data: BIM.BIM_SOURCE_CODE_DETAILS ,
-
SYNONYM: APPS.BIM_SOURCE_CODE_DETAILS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BIM_SOURCE_CODE_DETAILS, status:VALID,
-
SYNONYM: APPS.BIM_SOURCE_CODE_DETAILS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIM_SOURCE_CODE_DETAILS, status:VALID,
-
VIEW: BIM.BIM_SOURCE_CODE_DETAILS#
12.2.2
owner:BIM, object_type:VIEW, object_name:BIM_SOURCE_CODE_DETAILS#, status:VALID,
-
VIEW: BIM.BIM_SOURCE_CODE_DETAILS#
12.2.2
-
VIEW: APPS.BIM_FCTV_OPPORTUNITIES
12.2.2
-
VIEW: APPS.BIM_FCTV_LEADS
12.1.1
-
TABLE: BIM.BIM_SOURCE_CODE_DETAILS
12.2.2
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_SOURCE_CODE_DETAILS, object_name:BIM_SOURCE_CODE_DETAILS, status:VALID,
-
TABLE: BIM.BIM_SOURCE_CODE_DETAILS
12.1.1
owner:BIM, object_type:TABLE, fnd_design_data:BIM.BIM_SOURCE_CODE_DETAILS, object_name:BIM_SOURCE_CODE_DETAILS, status:VALID,
-
VIEW: APPS.BIM_FCTV_OPPLINES
12.2.2
-
VIEW: APPS.BIM_FCTV_SALES_CYCLE
12.1.1
-
VIEW: APPS.BIM_FCTV_RESPONSES
12.2.2
-
VIEW: APPS.BIM_FCTV_LEADLINES
12.2.2
-
VIEW: APPS.BIM_FCTV_LEADS
12.2.2
-
VIEW: APPS.BIM_FCTV_OPPORTUNITIES
12.1.1
-
VIEW: APPS.BIM_FCTV_OPPLINES
12.1.1
-
VIEW: APPS.BIM_FCTV_LEADLINES
12.1.1
-
VIEW: APPS.BIM_FCTV_RESPONSES
12.1.1
-
VIEW: APPS.BIM_FCTV_TARGETS
12.2.2
-
VIEW: APPS.BIM_FCTV_SALES_CYCLE
12.2.2
-
VIEW: APPS.BIM_FCTV_OPPR_CYCLE
12.2.2
-
VIEW: APPS.BIM_FCTV_TARGETS
12.1.1
-
View: BIM_FCTV_SALES_CYCLE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_SALES_CYCLE, object_name:BIM_FCTV_SALES_CYCLE, status:VALID, product: BIM - Marketing Intelligence , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: APPS.BIM_FCTV_SALES_CYCLE ,
-
VIEW: APPS.BIM_FCTV_OPPR_CYCLE
12.1.1
-
View: BIM_FCTV_REV_COGS
12.1.1
product: BIM - Marketing Intelligence , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: Not implemented in this database ,
-
View: BIM_FCTV_REV_COGS
12.2.2
product: BIM - Marketing Intelligence(Obsolete) , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: Not implemented in this database ,
-
View: BIM_FCTV_SALES_CYCLE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_SALES_CYCLE, object_name:BIM_FCTV_SALES_CYCLE, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: APPS.BIM_FCTV_SALES_CYCLE ,
-
VIEW: APPS.BIM_FCTV_OPPR_CYCLE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_OPPR_CYCLE, object_name:BIM_FCTV_OPPR_CYCLE, status:VALID,
-
VIEW: APPS.BIM_FCTV_OPPORTUNITIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_OPPORTUNITIES, object_name:BIM_FCTV_OPPORTUNITIES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
View: BIM_FCTV_OPPORTUNITIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_OPPORTUNITIES, object_name:BIM_FCTV_OPPORTUNITIES, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: APPS.BIM_FCTV_OPPORTUNITIES ,
-
VIEW: APPS.BIM_FCTV_LEADS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_LEADS, object_name:BIM_FCTV_LEADS, status:VALID,
-
View: BIM_FCTV_LEADS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_LEADS, object_name:BIM_FCTV_LEADS, status:VALID, product: BIM - Marketing Intelligence , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: APPS.BIM_FCTV_LEADS ,
-
View: BIM_FCTV_NEW_CUST_ACCTS
12.1.1
product: BIM - Marketing Intelligence , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.BIM_FCTV_OPPR_CYCLE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_OPPR_CYCLE, object_name:BIM_FCTV_OPPR_CYCLE, status:VALID,
-
View: BIM_FCTV_LEADLINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_LEADLINES, object_name:BIM_FCTV_LEADLINES, status:VALID, product: BIM - Marketing Intelligence , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: APPS.BIM_FCTV_LEADLINES ,
-
View: BIM_FCTV_ORDERS
12.1.1
product: BIM - Marketing Intelligence , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: Not implemented in this database ,
-
View: BIM_FCTV_LEADLINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_LEADLINES, object_name:BIM_FCTV_LEADLINES, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: APPS.BIM_FCTV_LEADLINES ,
-
View: BIM_FCTV_ORDERS
12.2.2
product: BIM - Marketing Intelligence(Obsolete) , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.BIM_FCTV_OPPORTUNITIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_OPPORTUNITIES, object_name:BIM_FCTV_OPPORTUNITIES, status:VALID,
-
VIEW: APPS.BIM_FCTV_SALES_CYCLE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_SALES_CYCLE, object_name:BIM_FCTV_SALES_CYCLE, status:VALID,
-
VIEW: APPS.BIM_FCTV_LEADLINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_LEADLINES, object_name:BIM_FCTV_LEADLINES, status:VALID,
-
VIEW: APPS.BIM_FCTV_LEADLINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_LEADLINES, object_name:BIM_FCTV_LEADLINES, status:VALID,
-
VIEW: APPS.BIM_FCTV_SALES_CYCLE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_SALES_CYCLE, object_name:BIM_FCTV_SALES_CYCLE, status:VALID,
-
VIEW: APPS.BIM_FCTV_TARGETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_TARGETS, object_name:BIM_FCTV_TARGETS, status:VALID,
-
VIEW: APPS.BIM_FCTV_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_RESPONSES, object_name:BIM_FCTV_RESPONSES, status:VALID,
-
VIEW: APPS.BIM_FCTV_RESPONSES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_RESPONSES, object_name:BIM_FCTV_RESPONSES, status:VALID,
-
VIEW: APPS.BIM_FCTV_TARGETS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_TARGETS, object_name:BIM_FCTV_TARGETS, status:VALID,
-
View: BIM_FCTV_OPPORTUNITIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_FCTV_OPPORTUNITIES, object_name:BIM_FCTV_OPPORTUNITIES, status:VALID, product: BIM - Marketing Intelligence , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: APPS.BIM_FCTV_OPPORTUNITIES ,