Search Results oppr_creation_date
Overview
APPS.BIM_FCTV_OPPR_CYCLE is an internal Oracle EBS view owned by the APPS schema and registered under FND Design Data as BIM.BIM_FCTV_OPPR_CYCLE. It is classified in the ETRM metadata as an Internal view type, and Oracle explicitly flags it as "Oracle Internal Use Only," noting that Oracle Corporation does not support direct access to applications data through this object except from standard Oracle Applications programs. The view presents a fact-style, cycle-oriented dataset that links marketing campaign and channel activity to opportunities and, ultimately, to sales orders. Its name reflects a "fact" (FCTV) structure over an opportunity cycle (OPPR_CYCLE), making it a reporting and analytics building block rather than a transactional entry point.
In Oracle EBS 12.1.1 and 12.2.2, objects of this nature typically feed marketing and order-cycle analytics — for example, tracing which campaign, media, channel, segment, and geography combination produced an opportunity, and whether that opportunity converted to an order. The user search term "oppr_creation_date" maps directly to the OPPR_CREATION_DATE column exposed by this view, which is the anchor for any time-based analysis of the opportunity cycle.
Underlying Base Objects
The documented dependencies show that BIM_FCTV_OPPR_CYCLE is defined over the following base objects:
- AMS_PARTY_MARKET_SEGMENTS (SYNONYM) — marketing segment membership, supplying MARKET_SEGMENT_ID.
- ASO_I_ORDER_HEADERS_V (VIEW) — the order header interface view, supplying order context such as ORDER_HEADER_ID and ORDERED_DATE.
- ASO_QUOTE_RELATED_OBJECTS (SYNONYM) — links quotes to related objects, contributing to the opportunity-to-order linkage.
- AS_LEADS_ALL (SYNONYM) — the leads/opportunities base, the principal source of OPPORTUNITY_ID and OPPR_CREATION_DATE.
- BIM_SOURCE_CODE_DETAILS (SYNONYM) — source code detail information used to resolve campaign, media, and channel attributes.
- HZ_LOCATIONS (SYNONYM) — the Trading Community Architecture location table, supplying geography data such as GEOGRAPHY_CODE.
The view itself is not referenced by any other database object, confirming it functions as a terminal reporting object. The join across AMS, ASO, AS, HZ, and BIM schemas demonstrates that it consolidates marketing, quoting, order, and location dimensions into a single denormalized cycle fact.
Key Columns
- CAMPAIGN_ID (NUMBER) — identifies the marketing campaign associated with the opportunity.
- MEDIA_ID (NUMBER) — the media through which the campaign was delivered.
- CHANNEL_ID (VARCHAR2, 80) — the channel identifier for the activity.
- MARKET_SEGMENT_ID (NUMBER) — the market segment targeted, sourced from AMS_PARTY_MARKET_SEGMENTS.
- GEOGRAPHY_CODE (VARCHAR2, 246) — the location/geography of the opportunity, derived from HZ_LOCATIONS.
- SALES_CHANNEL_CODE (VARCHAR2, 30) — the sales channel classification.
- OPPORTUNITY_ID (NUMBER) — the opportunity/lead identifier from AS_LEADS_ALL.
- OPPR_CREATION_DATE (DATE) — the date the opportunity was created; the primary time dimension for cycle analysis.
- ORDER_HEADER_ID (NUMBER) — the resulting order header, when the opportunity converted.
- ORDERED_DATE (DATE) — the date the order was placed, supporting cycle-duration calculations against OPPR_CREATION_DATE.
Common Use Cases and Queries
Typical scenarios include measuring campaign-to-opportunity conversion, computing the elapsed time between opportunity creation and order placement, and analyzing pipeline performance by segment, geography, or sales channel. The following query aggregates opportunity counts and average cycle time by campaign:
SELECT CAMPAIGN_ID
, COUNT(OPPORTUNITY_ID) AS OPPS
, AVG(ORDERED_DATE - OPPR_CREATION_DATE) AS AVG_CYCLE_DAYS
FROM APPS.BIM_FCTV_OPPR_CYCLE
WHERE OPPR_CREATION_DATE >= :from_date
GROUP BY CAMPAIGN_ID
ORDER BY OPPS DESC;
Because this is an internal view, direct SQL should be restricted to diagnostic or controlled reporting use, and production integrations should rely on Oracle-supported APIs and standard concurrent programs.
-
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_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: 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.2.2
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_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: 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, product: BIM - Marketing Intelligence , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: APPS.BIM_FCTV_OPPR_CYCLE ,
-
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: 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, product: BIM - Marketing Intelligence(Obsolete) , description: Used by the concurrent programs to load the summary tables. , implementation_dba_data: APPS.BIM_FCTV_OPPR_CYCLE ,
-
VIEW: APPS.BIM_FCTV_SALES_CYCLE
12.1.1
-
VIEW: APPS.BIM_FCTV_SALES_CYCLE
12.2.2
-
VIEW: APPS.BIM_FCTV_OPPR_CYCLE
12.2.2
-
VIEW: APPS.BIM_FCTV_OPPR_CYCLE
12.1.1
-
eTRM - BIM Tables and Views
12.2.2
description: Target segment level table . ,
-
eTRM - BIM Tables and Views
12.1.1
description: Target segment level table . ,