getGlobalPayDesMappingsSimple() 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 Global Pay Designation Mapping definitions

Syntax

  • StringAry = AeXMLBridge.getGlobalPayDesMappingsSimple();

Parameters

  • None

Return Value

  • Returns a string array containing the names of the available Global Pay Mappings, if any

Sample Code

C#

1
2
3
4
5
6
7
8
9

try
{
string[] mappingSets = ws.getGlobalPayDesMappingsSimple();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

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

Remarks

  • A Pay Designation Mapping is a set of mapping relationships that can be used with some web service calls that extract employee Pay Designation summaries. When Pay Designation Mapping is used, these summaries are not returned in their native format, but summarized by the definitions specified within the Pay Designation Mapping rules established for the defined Pay Designation Mapping set.
  • Not all companies/clients have pay designation mapping sets.

Possible Errors

  • None

Related Methods

appendGlobalPayDesMappingSetMapping
getGlobalPayDesMappingSet
getGlobalPayDesMappingSetMappings
removeGlobalPayDesMappingSet

Back to Top