Id
Returns the ID of the current execution record (association between audit test and IDEA table).
Compatibility
Available as of IDEA version 12.0
Syntax
Id As String
Return Value
String representation of execution record Id. If the execution record is not available, an empty string is returned.
Example
Sub Main()
Dim ac As Object
Dim atExecutor As Object
Set ac = CreateObject("SmartAnalyzer.AutomationClient")
atId = "f4d65220-77f1-5969-8943-59c7bd448460"
tblName = "Sample-Weblog"
Set atExecutor = SA.GetAtExecutor(atId, tblName)
MsgBox"Execution record Id: " + atExecutor.Id
. . .
End Sub