Click or drag to resize

ProcessServicesFindProductionProcesses Method

Retrieves a list of process definitions based on their assoicated internal part number, part revision, and process revision.

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<Process> FindProductionProcesses(
	Guid sessionId,
	string partNumber,
	string assyRevision,
	string processRevision
)

Parameters

sessionId
Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
partNumber
Type: SystemString
The part number of the internal part (assembly) associated to the process definition.
assyRevision
Type: SystemString
The revision of the internal part (assembly) associated to the process definition.
processRevision
Type: SystemString
The process revision that is being sought. This parameter may contain wildcard ("*") specifiers. It the parameter is set to "*", all process revisions associated with the specified assembly revision will be returned. If this parameter is null or an empty string, the process revision presently marked as "Latest" will be returned. If no process revision is marked as "Latest", the most recent (highest sequence) process revision will be returned.

Return Value

Type: IEnumerableProcess
A list of Process objects matching the search parameters. The total size of this list is limited to 1000 processes.
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
NotFoundExceptionAn existing part was not found in the system.
See Also