Click or drag to resize

ProcessServicesGetOperationSteps Method

Retrieves all the steps, including the activities associated to the steps, associated to the operation.

Namespace:  FactoryLogix.xTend.ProcessDefinition
Assembly:  FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.242.0.0 (8.242.0.0)
Syntax
public IEnumerable<Step> GetOperationSteps(
	Guid sessionId,
	Guid operationId,
	Nullable<Guid> batchId
)

Parameters

sessionId
Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
operationId
Type: SystemGuid
The Id property of the Operation to be modified.
batchId
Type: SystemNullableGuid
The optional Id of the specific Batch. This is necessary for "Configure To Order" (CTO) situations where the activities are based upon configured options.

Return Value

Type: IEnumerableStep
A list of the Steps that have been defined for the Operation
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
OperationNotFoundExceptionAn existing operation with matching Id property was not found in the system.
BatchNotFoundExceptionAn existing batch with matching Id property was not found in the system.
See Also