Search Results wf_svc_comp_status




Overview

APPS.FND_SVC_COMPONENTS_V is a reporting and integration view in the Oracle E-Business Suite service-oriented framework. It exposes the runtime configuration of Service Components, the agent-based building blocks that support Business Event System messaging, Workflow background processing, and other Service-oriented architecture (SOA) infrastructure. Rather than querying the base configuration table directly, the view joins component definitions to their type definitions, concurrent queue assignments, and translated lookup descriptions, presenting a human-readable, denormalized projection of each Service Component instance.

In the EBS 12.1.1 and 12.2.2 releases, this view is central to administrator-facing forms and diagnostic queries that need to display component status, queue binding, and agent assignments without performing the multi-table joins themselves. It is read-only from a reporting perspective; the underlying writable table remains FND_SVC_COMPONENTS.

Underlying Base Objects

The view is owned by APPS and is defined over the following documented objects:

Key Columns

Common Use Cases and Queries

Administrators query this view to audit which Service Components are active, confirm their queue and agent wiring, and diagnose messaging failures. A typical status report:

  • SELECT component_name, component_type_display_name, component_status_display_name FROM fnd_svc_components_v;
  • SELECT component_name, concurrent_queue_name, inbound_agent_display_name, outbound_agent_display_name FROM fnd_svc_components_v WHERE component_status = 'RUNNING';
  • SELECT component_name, container_type_display_name, startup_mode FROM fnd_svc_components_v WHERE inbound_agent_name IS NOT NULL;

Because the view resolves the WF_SYSTEM_GUID internally, callers do not need to supply it themselves when tracing agent assignments — which is precisely the lookup the user was investigating.