getHyperQueriesSimple() 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 hyper queries available within the system

Syntax

  • stringAry = AeXMLBridge.getHyperQueriesSimple();

Parameters

  • None

Return Value

  • Returns a string array of available hyper queries in the system

Sample Code

C#

1
2
3
4
5
6
7
8
try
{
string[] queries = ws.getHyperQueriesSimple();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
Try
Dim queries As String() = ws.getHyperQueriesSimple()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • a hyperquery is a filtered subset of employees

Possible Errors

  • None

extractEmployeeBenefitBalancesAsOfUsingHyperQuery
extractRangedSchedules2UsingHyperQuery
getEmployeesListDetail2FromHyperQuery
getEmployeesListDetail2FromHyperQueryWorkgroupFilter

Back to Top