evalEmpTemplateEligByFilekey() Method

Table of Contents

  1. Function
  2. Syntax
  3. Parameters
  4. Return Value
  5. Sample Code
  6. Remarks
  7. Possible Errors
  8. Alternate Method
  9. Related Methods

Function

  • evaluates the employee to see if they have any schedules or templates that need to be updated based on the employees current characteristics

Syntax

  • AeXMLBridge.evalEmpTemplateEligByFilekey(filekey);

Parameters

  • Integer - employee filekey

Return Value

  • None

Sample Code

C#

1
2
3
4
5
6
7
8
9
10
11
int filekey = 1234; 
// using employee "1234"

try
{
ws.evalEmpTemplateEligByFilekey(filekey);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
6
7
8
9
10
Dim filekey as Integer = 1234
' using employee "1234"

Try
ws.evalEmpTemplateEligByFilekey(filekey)

Catch ex As Exception
MessageBox.Show(ex.Message)

End Try

Remarks

  • None

Possible Errors

  • Unable to locate employee with identifier

Alternate Methods

evalEmpTemplateEligByIDNum

  • None

Back to Top