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

Returns the information related to What's new for a particular user.

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

Syntax

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

Parameters

userId
Type: System..::.Int32
The unique id for the group.
groupId
Type: System..::.Int32
The unique id of the organization

Return Value

DataView consisting of all the What's New information. This DataView consists of the collowing columns.
  • Count (System.Int32)Number of items created of a particular type.
  • Type (System.String)Type of the item created in OfficeClip for e.g. Timesheets, Documents, Tracker cases etc.
  • ApplicationId (System.Int32)The applicationId of the document.
  • SecondaryName (System.String)Name of the Project if the item is a tracker case.
  • SecondaryId (System.Int32)Id of the Project if the item is a tracker case.

See Also