getEmployeeEarliestStabilityPeriodStart 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 employee’s earliest stability start date

Syntax

  • String = AeXMLBridge.getEmployeeEarliestStabilityPeriodStart(Filekey);

Parameters

  • integer - employee filekey

Return Value

  • Returns the Earliest Stability Period start date in yyyy-MM-dd format

Sample Code

C#

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

try
{
string startDate = ws.getEmployeeEarliestStabilityPeriodStart(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 startDate As String = ws.getEmployeeEarliestStabilityPeriodStart(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
getEmployeeACAByIDNum
getEmployeeACADateRange
getEmployeeACAPeriods
getEmployeeMeasurementPeriodRecommendation
getEmployeeMeasurementPeriodWasClosed
getEmptyEmployeeACA
getExpiredUnaddressedMeasurementPeriods
getFirstDateOfACAServiceHours
restartEmployeeACAPeriods
reverseClosedEmployeeMeasurementPeriod
revertEmployeeACAAssignments
setEmployeeACA
submitEmployeeEarnings

Back to Top