getFirstDateOfACAServiceHours 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 starting date of ACA Service Hours

Syntax

  • String = AeXMLBridge.getFirstDateOfACAServiceHours(Filekey);

Parameters

  • Integer - employee filekey

Return Value

  • Returns a string containing the ACA Service Hours starting date

Sample Code

C#

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

try
{
string serviceDate = ws.getFirstDateOfACAServiceHours(filekey);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

Sample Code

VB.Net

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

Try
Dim serviceDate As String = ws.getFirstDateOfACAServiceHours(filekey)
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
getEmployeeACADateRange
getEmployeeACAPeriods
getEmployeeEarliestStabilityPeriodStart
getEmployeeMeasurementPeriodRecommendation
getEmployeeMeasurementPeriodWasClosed
getEmptyEmployeeACA
getExpiredUnaddressedMeasurementPeriods
restartEmployeeACAPeriods
reverseClosedEmployeeMeasurementPeriod
revertEmployeeACAAssignments
setEmployeeACA
submitEmployeeEarnings

Back to Top