getClustersSimple() Method

Table of Contents

  1. Function
  2. Syntax
  3. Parameters
  4. Return Value
  5. Sample Code
  6. Remarks
  7. Possible Errors
  8. Related Methods

Function

  • Returns a list of Clusters available within the system

Syntax

  • AeBasicDataItemsAry = AeXMLBridge.getClustersSimple();

Parameters

  • None

Return Value

Sample Code

C#

1
2
3
4
5
6
7
8
try
{
TAeBasicDataItem[] clusters = ws.getClustersSimple();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
6

Try
Dim clusters As TAeBasicDataItem() = ws.getClustersSimple()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • This call can return an empty list if no clusters are assigned

Possible Errors

  • None

ClientServerDateTime
extractNewDBElements
getActiveStatusConditions
getBaseClientData
getBrowserProfilesSimple
getClockGroupsSimple
getClockGroupStationsSimple
getClusterStationsSimple
getCompanyName
getCurrentBrowserProfileMenuItems
getHourlyStatusTypesSimple
getInactiveStatusConditions
getManuallySelectedSetupData
getPayClassesSimple
getPayDesignationsSimple
getPayPeriodClassData
getPayPeriodClasses
getPayTypes
getReasonCodesSimple
getSiteEnvironment
ServerUTCDateTime
setBaseClientData
updateNewDBElement

Back to Top