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

Have more questions? Submit a request

Comments

0 comments

Please sign in to leave a comment.