GetInstanceId method: RCService class

Syntax

GetInstanceId(service_ID)

Description

Use the GetInstanceId method to return an array of integer representing the instance IDs associated with the specified service_ID parameter.

Parameters

Parameter Description

service_ID

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

Returns

An array of integer.

Example

Local array of integer &instArr = &pgRFFlRcService.GetInstanceId("APPTEST_UTIL_SERVID");
If All(&instArr) Then
   For &i = 1 To &instArr.Len
      /* do something */
   End-For;
End-If;