extractNewDBElements() 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

  • Extracts new database elements by element state

Syntax

  • AeNewDBElementAry = AeXMLBridge.extractNewDBElements(ElementState);

Parameters

  • Integer - element state

Return Value

Sample Code

C#

1
2
3
4
5
6
7
8
9
10
11
int elementState = 0;                                                      
// 0 = Open, 1 = All

try
{
TAeNewDBElement[] elements = ws.extactNewDBElements(elementState);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
6
7
8
Dim elementState As Integer = 0                                                      
' 0 = Open, 1 = All

Try
Dim elements As TAeNewDBElement() = ws.extactNewDBElements(elementState)
Catch ex as Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • elementState parameter values are 0 = Open, 1 = All

Possible Errors

  • Invalid element state

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

Back to Top