GetServiceInfo method: RCService class

Syntax

GetServiceInfo(service_ID)

Description

Use the GetServiceInfo method to return all service configurations for the given service_ID parameter as an array of PTCS_SRVCONFIG:RCServiceConfig objects.

Parameters

Parameter Description

service_ID

Specifies a string value representing the service ID of an existing related content service definition.

Returns

An array of PTCS_SRVCONFIG:RCServiceConfig objects.

Example

Local array of PTCS_SRVCONFIG:RCServiceConfig &rcServCfg = &pgRFFlRcService.GetServiceInfo("APPTEST_UTIL_SERVID");
If All(&rcServCfg) Then
   For &i = 1 To &rcServCfg.Len
      /* do something */
   End-For;
End-If;