extractACAEmployeesFTStatusAsOf 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

  • Extracts a list of employees whose PPACA Full Time Status was “Full Time” as of the date passed.

Syntax

  • EmployeeACAAry = AeXMLBridge.extractACAEmployeesFTStatusAsOf(AsOfDate);

Parameters

  • String - “as of” date in yyyy-MM-dd format

Return Value

Sample Code

C#

1
2
3
4
5
6
7
8
9
10
11
12
var now = DateTime.Now;
string asOfDate = new DateTime(now.Year, now.Month, 1).ToString("yyyy-MM-dd");
// get first day of current month

try
{
TAeEmployeeACA[] empsACA = ws.extractACAEmployeesFullTimeStatusAsOf(asOfDate);
}
catch
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
6
7
8
Dim now = DateTime.Now
Dim asOfDate As String = New DateTime(now.Year, now.Month, 1).ToString("yyyy-MM-dd")

Try
Dim empsACA As TAeEmployeeACA() = ws.extractACAEmployeesFullTimeStatusAsOf(asOfDate)
Catch
MessageBox.Show(ex.Message)
End Try

Remarks

  • This date is expected to be the first of a month in preparation of extracting information.
  • This method is provided to assist in collecting the data necessary to prepare IRS Form 1095-c.

Possible Errors

  • Invalid date format

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

Back to Top