Hello Experts,
I have a OLE DB command with following select in Sqlcommand
SELECT ISNULL(UOM_RID, 'NULL') PRC_UNIT FROM T_UOM where UOM_COD = ?
above select is like a lookup to fetch a price unit based on the currency code, for example above expression will evaluate to, as follows...
SELECT ISNULL(UOM_RID, 'NULL') PRC_UNIT FROM T_UOM where UOM_COD = 'CAD', where CAD is coming from transformation just above to this with other columns too...it is basically every row coming from source db, has to look up in another database to find PRC_UNIT and all columns from source and PRC_UNIT will go to new database table...question is...
I am not sure how to reference PRC_UNIT column name that I gave in OLE DB sql command, to my destination transformation...hope it make sense....??? I can see all columns coming from Source DB, but dont know about PRC_UNIT!!!
Thanks,
Suresh