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

Gets a list of all the expense types defined in the Active expense types for a particular group.

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

Syntax

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

Parameters

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

Return Value

DataSet containing all the expense type information. This DataSet consists of a single DataTable with the following columns.
  • expenseTypeId (System.Int32)Id of the expense type.
  • expenseName (System.String)Name of the expense.
  • isDetailMandatory (System.String)Flag (Y/N) indicating whether details should be mandatorily provided if the user selects this expense type.
  • isBillable (System.String)Flag (Y/N) indicating whether this expense type is billable.
  • allowBillableModify (System.String)Flag (Y/N) indicating whether the user creating the expense can change the billable option other than the default set by the group administrator.

See Also