getExpiredUnaddressedMeasurementPeriods 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 a list of expired measurement periods by employee that have not been closed

Syntax

  • AeEmployeeACAAry := AeXMLBridge.getExpiredUnaddressedMeasurementPeriods(HyperQueryName);

Parameters

  • String - valid hyper query name

Return Value

Sample Code

C#

1
2
3
4
5
6
7
8
9
10
string[] queries = ws.getHyperQueriesSimple();

try
{
TAeEmployeeACA[] empACA = ws.getExpiredUnaddressedMeasurementPeriods(queries[0]);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

Sample Code

VB.Net

1
2
3
4
5
6
7
Dim queries As String() = ws.getHyperQueriesSimple()

Try
Dim empACA As TAeEmployeeACA() = ws.getExpiredUnaddressedMeasurementPeriods(queries(0))
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

Possible Errors

  • HyperQueryName does not exist

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

Back to Top