ProcessServicesGetProcessApprovals Method |
Retrieves a list of the approvals associated with the specified process.
This includes the historical records of actions taken by individual users
against these approvals.
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<ApprovalItem> GetProcessApprovals(
Guid sessionId,
Guid processId
)
Public Function GetProcessApprovals (
sessionId As Guid,
processId As Guid
) As IEnumerable(Of ApprovalItem)
public:
virtual IEnumerable<ApprovalItem^>^ GetProcessApprovals(
Guid sessionId,
Guid processId
) sealed
abstract GetProcessApprovals :
sessionId : Guid *
processId : Guid -> IEnumerable<ApprovalItem>
override GetProcessApprovals :
sessionId : Guid *
processId : Guid -> IEnumerable<ApprovalItem>
Parameters
- sessionId
- Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method. - processId
- Type: SystemGuid
The unique identifier (ID) of the process whose approvals are being requested.
Return Value
Type:
IEnumerableApprovalItemA list
ApprovalItem objects representing the approvals associated with the specified process definition.
Exceptions See Also