extractDeptXlateItems() 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

  • Retrieve a list of Mapped Department Translations which were used during AutoBuild

Syntax

  • AeDeptXlateItemAry = ws.extractDeptXlateItems(Alias);

Parameters

  • String - Alias (External ID) Note: Alias is the ExtID field in the TAeDeptXlateItem structure

Return Value

Sample Code

C#

1
2
3
4
5
6
7
8
9
10
string externalID = "HR";

try
{
TAeDeptXlateItem[] deptXlateItems = ws.extractDeptXlateItems(externalID);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
6
7
Dim externalID As String = "HR"

Try
Dim deptXlateItems() As TAeDeptXlateItem = ws.extractDeptXlateItems(externalID)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • None

Possible Errors

  • Alias/External ID not found

addDeptXlateItem
removeDeptXlateItem
updateDeptXlateItem

Back to Top