Hello,
How do I assign a value to a property in a Task in VBSCRIPT?
I have a dts package. The final tasks is an "analysis services processing task" that I named "processCube".
I would like to programmatically set the property "ProcessOption" of the task.
I get an error though.."Object doesnt support this property or method 'oPKG.Tasks(...).ProcessOption'
Thanks.
How do I assign a value to a property in a Task in VBSCRIPT?
I have a dts package. The final tasks is an "analysis services processing task" that I named "processCube".
I would like to programmatically set the property "ProcessOption" of the task.
Code:
v_process_option = 1
Dim oPKG
Set oPKG = DTSGlobalVariables.Parent
oPKG.Tasks("processCube").ProcessOption = v_process_option
I get an error though.."Object doesnt support this property or method 'oPKG.Tasks(...).ProcessOption'
Thanks.