if a tablename was set to the table on YourTableVar.TableName then it can be used.
But this tablename has actively to be set eg by
new DataTable(“YourTableName”)
YourTableVar.TableName
the fasted way to check the current is situation is to check the tablename within locals / watch / immediate panel during a debugging paused by a breakpoint
you will decide when to do, directly on initialization or later via: YourDataTableVar.TableName
but the tablename is to set actively otherwise we do see a default name or null
Okay…
Adding ‘new DataTable(“YourTableName”)’ in variable panel is not working for me.
Assign tablename using assign activity works for me. (YourDataTableVar.TableName = “TableName”)