getEmployeeACADateRange 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 the ACA begin and end dates based on the date value passed to it

Syntax

  • AeDateRange = AeXMLBridge.getEmployeeACADateRange(Filekey, DateRangeEnum);

Parameters

Return Value

Sample Code

C#

1
2
3
4
5
6
7
8
9
10
11
12
13
14
int filekey = 1234;                                                        
// using employee 1234

TDateRangeEnum dateRange = TDateRangeEnum.drCurrMonth;
// using current month

try
{
TAeDateRange dr = ws.getEmployeeACADateRange(filekey, dateRange);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

Sample Code VB.Net

1
2
3
4
5
6
7
8
9
10
11
Dim filekey As Integer = 1234
' using employee 1234

Dim dateRange As TDateRangeEnum = TDateRangeEnum.drCurrMonth
' using current month

Try
Dim dr As TAeDateRange = ws.getEmployeeACADateRange(filekey, dateRange)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • None

Possible Errors

  • No Such Employee with Filekey

changeEmployeeACAFullTimeStatus
closeEmployeeMeasurementPeriod
extractACAEmployeesFTStatusAsOf
extractACALEDSummaries
getClosedEmployeeMeasurementPeriods
getControlGroups
getEmployeeACAByIDNum
getEmployeeACAPeriods
getEmployeeEarliestStabilityPeriodStart
getEmployeeMeasurementPeriodRecommendation
getEmployeeMeasurementPeriodWasClosed
getEmptyEmployeeACA
getExpiredUnaddressedMeasurementPeriods
getFirstDateOfACAServiceHours
restartEmployeeACAPeriods
reverseClosedEmployeeMeasurementPeriod
revertEmployeeACAAssignments
setEmployeeACA
submitEmployeeEarnings

Back to Top