[This is preliminary documentation and is subject to change.]

Gets all the workflow details for a particular user (if defined) corresponding to a particular application and a particular group. Currently workflow supporting applications are only timesheets and expenses.

Namespace:  OfficeClip.DBLayer.Framework
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public WorkflowDefinitionInfo GetWorkflowDefinitionInfo(
	int groupId,
	int userId,
	int applicationId
)
Visual Basic (Declaration)
Public Function GetWorkflowDefinitionInfo ( _
	groupId As Integer, _
	userId As Integer, _
	applicationId As Integer _
) As WorkflowDefinitionInfo
Visual C++
public:
WorkflowDefinitionInfo^ GetWorkflowDefinitionInfo(
	int groupId, 
	int userId, 
	int applicationId
)

Parameters

groupId
Type: System..::.Int32
Id of the group.
userId
Type: System..::.Int32
Id of the user.
applicationId
Type: System..::.Int32
Id of the application i.e. that of timesheet or expense

Return Value

Instance of workflowDefinitionInfo object containing all the details of a particular workflow. WorkflowDefinitionInfo

See Also