Hi Sekhan,
Take help of "ActionIteration" environment variable. It returns the action iteration number.
As for your emample, put the code below in the first line of the action in which you want to import value to DataTable.
You can make use of this condition at any point of any action
Hope it will help you
Take help of "ActionIteration" environment variable. It returns the action iteration number.
As for your emample, put the code below in the first line of the action in which you want to import value to DataTable.
Code:
If Environment("ActionIteration") = 1 Then
DataTable.Import.......
End If
You can make use of this condition at any point of any action
Hope it will help you