extractACALEDSummaries 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

  • Will extract 12 months of employee measurement values, typically used in the “Large Employer Designation” calculation, to determine if an employer is an “Applicable Large Employer” for PPACA purposes. This method is provided to assist in collecting the data necessary to prepare an IRS form 1094-c.

Syntax

  • AeACALEDMonthSummAry := AeXMLBridge.extractACALEDSummaries(Year, ControlGroupID);

Parameters

  • Integer - Year to extract from
  • Integer - control group ID

Return Value

Sample Code C

1
2
3
4
5
6
7
8
9
10
11
12
TAeControlGroup[] groups = ws.getControlGroups();                          
// retrieve a list of control groups

int yearToUse = DateTime.Now.Year - 1;
// use last year

try {
ws.extractACALEDSummaries(yearToUse, groups[0]);
}
catch (Exception ex) {
MessageBox.Show(ex.Message);
}

Sample Code VB.Net

1
2
3
4
5
6
7
8
9
10
11
Dim groups As TAeControlGroup() = ws.getControlGroups()
' retrieve a list of control groups

Dim yearToUse As Integer = DateTime.Now.Year - 1
' use last year

Try
ws.extractACALEDSummaries(yearToUse, groups(0))
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • This method is provided to assist in collecting the data necessary to prepare an IRS Form 1094-c
  • Use getControlGroup to retrieve a list of control groups and codes if needed
  • Year parameter can be set to 0 for current year or 1 for previous calendar year

Possible Errors

  • Invalid Control Group ID

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

Back to Top