Hi
I'm migrating DTS packages to SSIS. In one of the packages there is a lookup query in lookup tab of the data driven query task of DTS package . That lookup tab in the data driven query task has the following lookups 'ReferenceExtra' and 'ReferenceChar'.
And those lookups are used in the ActiveX script as following
DTSDestination("vchUser7") = DTSLookups("ReferenceExtra").Execute(67,DTSSource("mr_type")) 'MR Type
DTSDestination("vchUser8") = DTSLookups("ReferenceChar").Execute(68,DTSSource("dunbrdst")) 'Corp Acct
How can i write equivalent script in the Script component of SSIS.
Please help me out.