getEmployeeACABySSN 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.getEmployeeACABySSN(SSN);

Parameters

  • string - employee ssn

Return Value

Sample Code

C#

1
2
3
4
5
6
7
8
9
10
11
string ssn = "123-45-6789";                                                      
// using employee with SSN 123456789

try
{
TAeEmployeeACA empACA = ws.getEmployeeACABySSN(ssn);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

Sample Code

VB.Net

1
2
3
4
5
6
7
8
Dim ssn As String = "123-45-6789"
' using employee with ssn 123456789

Try
Dim employeeACA As TAeEmployeeACA = ws.getEmployeeACABySSN(ssn);
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • None

Possible Errors

  • No Such Employee SSN

Alternate Methods

getEmployeeACAByBadge
getEmployeeACAByFilekey
getEmployeeACAByIDNum

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

Back to Top