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

Gets all the case information, this combines the normal case list information and also the Description, Resolution and Comments

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

Syntax

C#
public DataSet GetCaseListInfoAll(
	int projectId,
	string sortField,
	string sortState,
	int filterValue,
	ArrayList searchAL,
	string searchStr,
	bool showAll,
	int currentUserId,
	int currentGroupId
)
Visual Basic (Declaration)
Public Function GetCaseListInfoAll ( _
	projectId As Integer, _
	sortField As String, _
	sortState As String, _
	filterValue As Integer, _
	searchAL As ArrayList, _
	searchStr As String, _
	showAll As Boolean, _
	currentUserId As Integer, _
	currentGroupId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetCaseListInfoAll(
	int projectId, 
	String^ sortField, 
	String^ sortState, 
	int filterValue, 
	ArrayList^ searchAL, 
	String^ searchStr, 
	bool showAll, 
	int currentUserId, 
	int currentGroupId
)

Parameters

projectId
Type: System..::.Int32
The unique id of the Project.
sortField
Type: System..::.String
The field on which the cases will be sorted on.
sortState
Type: System..::.String
The sort State, A-Ascending, D-Descending, otherwise no sort.
filterValue
Type: System..::.Int32
The filter string to filter the output.
searchAL
Type: System.Collections..::.ArrayList
The search arraylist that consists of all the fields to be searched.
searchStr
Type: System..::.String
The user entered search string.
showAll
Type: System..::.Boolean
If all the cases are required to be shown
currentUserId
Type: System..::.Int32
The unique id of the current user
currentGroupId
Type: System..::.Int32
The id of the current organization

Return Value

The output dataset consists of two tables data and dataExt and a relation between them based on the field cid (case id) in both the tables.

See Also