I need to get the value of RowsComplete property in Transform Data Task. I use the following code,
[font="Courier New"]Set pkg = DTSGlobalVariables.Parent
lngRowsComplete = pkg.Tasks("04: Transfer Data from ODS to DCSA").RowsComplete[/font]
But I get following error message when I execute the package,
[font="Courier New"]Object doesn't support this property or method : 'pkg.Tasks(...).RowsComplete[/font]
Is there any other way to solve this problem?