Search Results inbound_agent_name




Overview

FND_SVC_COMPONENTS_V is a reporting and inquiry view in the APPS schema belonging to the FND — Application Object Library product. It presents the configuration and runtime state of Oracle EBS Service Components, which are the managed, container-hosted services registered with the Service Component Container framework. Each row represents a single service component, combining its identity, type, status, container binding, agent routing, and queue assignment into a single denormalized result set.

The view exists to provide a human-readable, display-ready projection of the underlying FND_SVC_COMPONENTS synonym. Rather than requiring callers to resolve lookup codes and join to agent, queue, and component-type metadata manually, the view performs those joins internally and exposes paired code/display columns. This design makes it suitable for concurrent program output, OAF-based administrative pages, diagnostic queries, and integration extracts that need component state without embedding lookup-resolution logic. The user search term "startup_mode" maps directly to the STARTUP_MODE column and its companion STARTUP_MODE_DISPLAY_NAME, which resolves the code against the WF_SVC_COMP_STARTUP_MODE lookup type.

Underlying Base Objects

The view is defined over the following documented base objects:

Because the joins to queue and type metadata are outer where noted, components that are not yet bound to a concurrent queue still appear, with queue columns null.

Key Columns

Common Use Cases and Queries

Typical uses include auditing component startup configuration, monitoring component health, and reporting queue-to-component mappings.

  • Review startup modes across components:
    SELECT component_name, component_type_display_name,
           startup_mode, startup_mode_display_name
      FROM fnd_svc_components_v
     WHERE startup_mode = 'AUTOMATIC';
  • List components by status with queue and agent detail:
    SELECT component_name, component_status_display_name,
           concurrent_queue_name, inbound_agent_display_name
      FROM fnd_svc_components_v
     WHERE component_status <> 'RUNNING';
  • Identify components with no queue binding (outer-join nulls):
    SELECT component_id, component_name
      FROM fnd_svc_components_v
     WHERE concurrent_queue_id IS NULL;