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.245.0.0 (8.245.0.0)
Syntax public IEnumerable<Process> FindProductionProcesses(
Guid sessionId,
string partNumber,
string assyRevision,
string processRevision
)
Public Function FindProductionProcesses (
sessionId As Guid,
partNumber As String,
assyRevision As String,
processRevision As String
) As IEnumerable(Of Process)
public:
virtual IEnumerable<Process^>^ FindProductionProcesses(
Guid sessionId,
String^ partNumber,
String^ assyRevision,
String^ processRevision
) sealed
abstract FindProductionProcesses :
sessionId : Guid *
partNumber : string *
assyRevision : string *
processRevision : string -> IEnumerable<Process>
override FindProductionProcesses :
sessionId : Guid *
partNumber : string *
assyRevision : string *
processRevision : string -> IEnumerable<Process>
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:
IEnumerableProcessA list of
Process objects matching the search parameters.
The total size of this list is limited to 1000 processes.
Exceptions See Also