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

Checks the group Delete status and returns a list of things that need to be deleted from the group before it can be deleted.

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

Syntax

C#
public SqlDataReader ChkDeleteStatus(
	int groupId
)
Visual Basic (Declaration)
Public Function ChkDeleteStatus ( _
	groupId As Integer _
) As SqlDataReader
Visual C++
public:
SqlDataReader^ ChkDeleteStatus(
	int groupId
)

Parameters

groupId
Type: System..::.Int32

Return Value

SqlDataReader containing the id (of enum DeleteGroupAppType) and the count for each type. The SqlDataReader has the following columns.
  • id (System.Int32) Id indicating where all the group dependent data is present. 1 = Departments within the organization. This will only be valid if we are trying to Delete the organization. 2 = Registered users in this group. 3 = Unregistered users in the group. 4 = Events 5 = Group Alerts 6 = Documents 7 = Document Folders 8 = Application Documents 9 = Application Document Folders 10 = Reservations 11 = Resources 12 = Group Bookmars 13 = Tracker Projects 14 = Polls 15 = Photo Allbum 16 = Announcements. 17 = Forums 18 = Topics 19 = Timesheets 20 = Expenses 21 = Group Address Book
  • cnt (System.Int32)Count indicating how many items are dependent on this group.

See Also