Search Results event_display_name
Overview
APPS.FND_SVC_COMP_REQUESTS_V is a multi-lingual (language-resolved) view in the Oracle E-Business Suite Applications schema. It presents the scheduling and execution state of Service Component Requests, which are the runtime units created and managed by the Service Component Manager (FND_SVC_COMPONENT) infrastructure. Each row represents a single scheduled request associated with a service component, combining the component's own request metadata with the corresponding job scheduler and event queue information.
Because the view is language-resolved, columns that surface translatable text (notably EVENT_DISPLAY_NAME) are returned in the session's current language, drawn from the underlying WF_EVENTS_VL language view. This makes the view suitable for both reporting and integration use, since subscribers to EBS interfaces can read a human-readable event display name without implementing their own language joins. The presence of Object Version Number indicates the row is exposed as an ORM-managed or concurrent-safe entity, useful when the view is consumed programmatically rather than only for ad hoc SQL.
The view has no dependents; it is not referenced by any other database object, so changes to it do not propagate to further database-level consumers.
Underlying Base Objects
According to the documented dependency metadata, APPS.FND_SVC_COMP_REQUESTS_V is defined over three objects:
- FND_SVC_COMP_REQUESTS (synonym) — the primary source, supplying component request identity, scheduling fields, parameters, and status counters.
- WF_ALL_JOBS (synonym) — the Workflow job scheduler table, supplying JOB_ID, LAST_DATE, NEXT_DATE, THIS_DATE, INTERVAL, and FAILURES.
- WF_EVENTS_VL (view) — the language-resolved Workflow events view, supplying EVENT_NAME and EVENT_DISPLAY_NAME.
The join permits a single query to retrieve both the "what should run" definition (component, event, parameters) and the "when did it run" scheduler state (dates and outcomes) for each request.
Key Columns
- COMPONENT_ID / COMPONENT_REQUEST_ID — identify the owning service component and the individual request instance.
- EVENT_DISPLAY_NAME (VARCHAR2, 80) — the user-facing event label resolved to the session language; the column most commonly queried by name.
- EVENT_NAME (VARCHAR2, 240) — the internal Workflow event identifier; parameterized, hence longer than the display name.
- EVENT_PARAMS (VARCHAR2, 1996) — the serialized parameter string passed to the event subscription.
- EVENT_DATE / EVENT_FREQUENCY / INTERVAL — timing definition for the schedule, including recurrence interval.
- JOB_ID, LAST_DATE, NEXT_DATE, THIS_DATE, FAILURES — scheduler state: the job identity, previous run, next scheduled run, current run, and accumulated failure count.
- REQUESTED_BY_USER (VARCHAR2, 320) — the user context that initiated the request.
- WHAT (VARCHAR2, 4000) — the executable/command payload for the scheduled job.
- CREATED_BY and OBJECT_VERSION_NUMBER — standard audit and concurrency columns.
Common Use Cases and Queries
Typical scenarios include monitoring scheduled component requests, diagnosing repeated failures, and reporting on upcoming executions for a given event.
List all requests with readable event labels:
SELECT COMPONENT_REQUEST_ID, EVENT_DISPLAY_NAME, EVENT_NAME, NEXT_DATE, FAILURES FROM APPS.FND_SVC_COMP_REQUESTS_V;
Identify requests that have failed repeatedly:
SELECT COMPONENT_ID, EVENT_DISPLAY_NAME, LAST_DATE, FAILURES FROM APPS.FND_SVC_COMP_REQUESTS_V WHERE FAILURES > 0 ORDER BY FAILURES DESC;
Retrieve a single request's full payload and schedule:
SELECT EVENT_NAME, EVENT_PARAMS, INTERVAL, THIS_DATE, WHAT FROM APPS.FND_SVC_COMP_REQUESTS_V WHERE COMPONENT_REQUEST_ID = :req_id;
-
VIEW: APPS.FND_SVC_COMP_REQUESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_REQUESTS_V, object_name:FND_SVC_COMP_REQUESTS_V, status:VALID,
-
VIEW: APPS.EDR_INTER_EVENT_TEST_EVENTS_V
12.1.1
-
VIEW: APPS.FND_SVC_COMP_REQUESTS_V
12.2.2
-
VIEW: APPS.FND_SVC_COMP_REQUESTS_V
12.1.1
-
View: FND_SVC_COMP_REQUESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_REQUESTS_V, object_name:FND_SVC_COMP_REQUESTS_V, status:VALID, product: FND - Application Object Library , description: FND_SVC_COMP_REQUESTS_V , implementation_dba_data: APPS.FND_SVC_COMP_REQUESTS_V ,
-
View: FND_SVC_COMP_REQUESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_REQUESTS_V, object_name:FND_SVC_COMP_REQUESTS_V, status:VALID, product: FND - Application Object Library , description: FND_SVC_COMP_REQUESTS_V , implementation_dba_data: APPS.FND_SVC_COMP_REQUESTS_V ,
-
View: EDR_INTER_EVENT_TEST_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EDR.EDR_INTER_EVENT_TEST_EVENTS_V, object_name:EDR_INTER_EVENT_TEST_EVENTS_V, status:VALID, product: EDR - E-Records , implementation_dba_data: APPS.EDR_INTER_EVENT_TEST_EVENTS_V ,
-
View: EDR_INTER_EVENT_TEST_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EDR.EDR_INTER_EVENT_TEST_EVENTS_V, object_name:EDR_INTER_EVENT_TEST_EVENTS_V, status:VALID, product: EDR - E-Records , implementation_dba_data: APPS.EDR_INTER_EVENT_TEST_EVENTS_V ,
-
VIEW: APPS.EDR_WFEVENT_XMLMAP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EDR.EDR_WFEVENT_XMLMAP_V, object_name:EDR_WFEVENT_XMLMAP_V, status:VALID,
-
VIEW: APPS.EDR_WFEVENT_XMLMAP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EDR.EDR_WFEVENT_XMLMAP_V, object_name:EDR_WFEVENT_XMLMAP_V, status:VALID,
-
VIEW: APPS.EDR_INTER_EVENT_TEST_EVENTS_V
12.2.2
-
VIEW: APPS.FND_SVC_COMP_REQUESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_REQUESTS_V, object_name:FND_SVC_COMP_REQUESTS_V, status:VALID,
-
View: EDR_WFEVENT_XMLMAP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EDR.EDR_WFEVENT_XMLMAP_V, object_name:EDR_WFEVENT_XMLMAP_V, status:VALID, product: EDR - E-Records , description: View containing X-ref of ERES event name and its XML gateway map code , implementation_dba_data: APPS.EDR_WFEVENT_XMLMAP_V ,
-
View: EDR_WFEVENT_XMLMAP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EDR.EDR_WFEVENT_XMLMAP_V, object_name:EDR_WFEVENT_XMLMAP_V, status:VALID, product: EDR - E-Records , description: View containing X-ref of ERES event name and its XML gateway map code , implementation_dba_data: APPS.EDR_WFEVENT_XMLMAP_V ,
-
VIEW: APPS.EDR_INTER_EVENT_TEST_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EDR.EDR_INTER_EVENT_TEST_EVENTS_V, object_name:EDR_INTER_EVENT_TEST_EVENTS_V, status:VALID,
-
VIEW: APPS.EDR_INTER_EVENT_TEST_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EDR.EDR_INTER_EVENT_TEST_EVENTS_V, object_name:EDR_INTER_EVENT_TEST_EVENTS_V, status:VALID,
-
APPS.EDR_PSIG SQL Statements
12.1.1
-
APPS.EDR_PSIG SQL Statements
12.2.2
-
eTRM - EDR Tables and Views
12.1.1
description: eRecords Reports Temporary Table ,
-
eTRM - EDR Tables and Views
12.2.2
description: eRecords Reports Temporary Table ,
-
PACKAGE BODY: APPS.EDR_PSIG
12.2.2
-
PACKAGE BODY: APPS.EDR_PSIG
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,