Related Articles
Is there a way to set the parameters of a Javascript dynamically when using Javascript Task.
When using JavaScript Task, sometime you create parameters in your JavaScripts, like you see here in the screen capture. You may want to set their values dynamically using variables in the variables window. From the documentation: Under the hood, in ...
REST Destination: How to modify the [REST Destination].[Parameter] property dynamically at runtime
The [REST Destination].[Parameter] property is available in the data flow properties list. Follow these steps to set up an expression: Create a variable that can be loaded with the desired additional parameters for data insertion. Right-click on the ...
How to sort parameters
To sort parameters according to a custom defined order, specify the SortProperties attribute on the parameters class. 1 2 3 <SortProperties(New String() {"Connection", "TargetFile", "Database"})> _ Public Class ScriptMain …
How to filter parameters
To filter parameters based on the current state, specify the FilterProperties attribute on the parameters class. Specify the method name as attribute parameter. The specified method is dynamically called every time the class parameters are refreshed. ...
How to validate parameters
To validate parameters, specify ValidateProperties attribute on the parameters class. Specify method name as attribute parameter. The specified method will be called when the user presses OK in the dialog. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 ...