Hi All,
I have two source tables and as per the requirement i need to convert char to num and keep the values as 01 insted of 1.
for that i have written below query and executed in Enterprise guide and its running successfully.
The problem is whan i executing same job in IDPortal it is getting error:
please take alook on below query and error:
PROC SQL; CREATE TABLE st.Final (DROP= _NAME_ ACTUAL LOWER UPPER ERROR STD _RECONSTATUS_ prebfovr lowbfovr uppbfovr stdbfovr sProject) as select * from stg.final_CREAM as a left join in.GROUP_LOAD as b on a.sBrand=b.sBrand and a.sFSGroup =b.sFSGroup and scan(a.CL4_NAME,1,'_')=b.CL4_NAME and a.Dist_Channel =INPUT(b.DISTR_CHAN,Z2.);
ERROR: The informat Z was not found or could not be loaded.
looking forward for your help and support.
... View more