getEmployeeACAByFilekey Method

Table of Contents

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

Function

  • Returns employee ACA data

Syntax

  • AeEmployeeACA = AeXMLBridge.getEmployeeACAByFilekey(Filekey);

Parameters

  • integer - employee filekey

Return Value

Sample Code

C#

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

try
{
TAeEmployeeACA empACA = ws.getEmployeeACAByFilekey(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 employeeACA As TAeEmployeeACA = ws.getEmployeeACAByFilekey(filekey);
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • None

Possible Errors

  • No Such Employee Filekey

Alternate Methods

getEmployeeACAByBadge
getEmployeeACAByIDNum
getEmployeeACABySSN

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

Back to Top