How access table fields using a script activity on Advanced Designer

Question

How to access the table fields using a script activity in Vantage Advanced Designer?

Answer

To access the fields of a table in the script activity of the Advanced Designer, the following sample code can be used as a reference:

var column1 = Context.GetFields("New Table/column1");
Context.GetField("TheName1").Value = column1[0].Value //access the 1st row of the column

Was this article helpful?

0 out of 0 found this helpful

Have more questions? Submit a request