Search Results fnd_svc_comp_params_b
Overview
The FND_SVC_COMP_PARAMS_B table is a core repository for service component parameter definitions within the Oracle E-Business Suite Application Object Library (FND). It functions as the base table for storing the technical metadata that defines configurable parameters for various service components in the system. These service components are typically part of the underlying service-oriented architecture (SOA) or integration infrastructure of EBS. The table's role is to provide a centralized, parameterized control mechanism, allowing administrators and the application itself to manage component behavior, connectivity, and operational characteristics without direct code modification.
Key Information Stored
While the provided metadata does not list specific columns, the table's primary key and foreign key relationships indicate its critical structure. The central column is PARAMETER_ID, the unique identifier for each parameter definition. The COMPONENT_TYPE column is a foreign key linking the parameter to a specific service component type defined in the FND_SVC_COMP_TYPES_B table. Other columns typically found in such a definition table would include the parameter name, data type, default value, whether it is required or optional, and potentially validation rules. This structure allows the system to associate a set of configurable properties with a reusable component type.
Common Use Cases and Queries
This table is primarily accessed for configuration management and diagnostic reporting of EBS service components. Common scenarios include auditing all parameters available for a specific component type or troubleshooting configuration issues by examining parameter values set for active service instances. A typical query would join to the component types table to get a readable list.
- List Parameters for a Component Type:
SELECT p.parameter_id, p.parameter_name, t.type_name
FROM fnd_svc_comp_params_b p, fnd_svc_comp_types_b t
WHERE p.component_type = t.component_type
AND t.type_name = '<Your_Component_Type>'; - Audit All Parameter Definitions:
SELECT t.type_name, p.parameter_name, p.data_type, p.default_value
FROM fnd_svc_comp_params_b p
JOIN fnd_svc_comp_types_b t ON p.component_type = t.component_type
ORDER BY t.type_name, p.parameter_name;
Related Objects
The table is central to a small hierarchy of objects managing service component metadata, as evidenced by its documented foreign key relationships.
- FND_SVC_COMP_TYPES_B: This is the parent table. The FND_SVC_COMP_PARAMS_B.COMPONENT_TYPE column is a foreign key to FND_SVC_COMP_TYPES_B, defining the component type to which a parameter belongs.
- FND_SVC_COMP_PARAMS_TL: This is the child translation table. The FND_SVC_COMP_PARAMS_TL.PARAMETER_ID column is a foreign key to FND_SVC_COMP_PARAMS_B.PARAMETER_ID. This relationship provides translated, user-friendly names and descriptions for the parameters in multiple languages.
In practice, actual parameter values for specific service component instances are likely stored in a separate table that references these definitions via the PARAMETER_ID.
-
Table: FND_SVC_COMP_PARAMS_B
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_PARAMS_B, object_name:FND_SVC_COMP_PARAMS_B, status:VALID, product: FND - Application Object Library , description: Service Component Parameter Definitions , implementation_dba_data: APPLSYS.FND_SVC_COMP_PARAMS_B ,
-
Table: FND_SVC_COMP_PARAMS_B
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_PARAMS_B, object_name:FND_SVC_COMP_PARAMS_B, status:VALID, product: FND - Application Object Library , description: Service Component Parameter Definitions , implementation_dba_data: APPLSYS.FND_SVC_COMP_PARAMS_B ,
-
Table: FND_SVC_COMP_PARAMS_TL
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_PARAMS_TL, object_name:FND_SVC_COMP_PARAMS_TL, status:VALID, product: FND - Application Object Library , description: MLS table for the FND_SVC_COMP_PARAMS_B table , implementation_dba_data: APPLSYS.FND_SVC_COMP_PARAMS_TL ,
-
Table: FND_SVC_COMP_PARAMS_TL
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_PARAMS_TL, object_name:FND_SVC_COMP_PARAMS_TL, status:VALID, product: FND - Application Object Library , description: MLS table for the FND_SVC_COMP_PARAMS_B table , implementation_dba_data: APPLSYS.FND_SVC_COMP_PARAMS_TL ,
-
Table: FND_SVC_COMP_TYPES_B
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_TYPES_B, object_name:FND_SVC_COMP_TYPES_B, status:VALID, product: FND - Application Object Library , description: Service Component-Types , implementation_dba_data: APPLSYS.FND_SVC_COMP_TYPES_B ,
-
Table: FND_SVC_COMP_TYPES_B
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_TYPES_B, object_name:FND_SVC_COMP_TYPES_B, status:VALID, product: FND - Application Object Library , description: Service Component-Types , implementation_dba_data: APPLSYS.FND_SVC_COMP_TYPES_B ,
-
View: FND_SVC_COMP_PARAM_VALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_PARAM_VALS_V, object_name:FND_SVC_COMP_PARAM_VALS_V, status:VALID, product: FND - Application Object Library , description: FND_SVC_COMP_PARAM_VALS_V , implementation_dba_data: APPS.FND_SVC_COMP_PARAM_VALS_V ,
-
View: FND_SVC_COMP_PARAMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_PARAMS_VL, object_name:FND_SVC_COMP_PARAMS_VL, status:VALID, product: FND - Application Object Library , description: FND_SVC_COMP_PARAMS_VL , implementation_dba_data: APPS.FND_SVC_COMP_PARAMS_VL ,
-
View: FND_SVC_COMP_PARAMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_PARAMS_VL, object_name:FND_SVC_COMP_PARAMS_VL, status:VALID, product: FND - Application Object Library , description: FND_SVC_COMP_PARAMS_VL , implementation_dba_data: APPS.FND_SVC_COMP_PARAMS_VL ,
-
View: FND_SVC_COMP_PARAM_VALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_PARAM_VALS_V, object_name:FND_SVC_COMP_PARAM_VALS_V, status:VALID, product: FND - Application Object Library , description: FND_SVC_COMP_PARAM_VALS_V , implementation_dba_data: APPS.FND_SVC_COMP_PARAM_VALS_V ,