Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I am trying to do something like this.
MapCustomerTable:
Mapping Load
KeyField,
CustName
from Customer.xls;
TransactionTable:
Load
KeyField1,
Applymap('MapCustomerTable',KeyField) as CustName
from.....;
I am getting the right output in some place. But when Keyfield1 is not matching to KeyField, It returns the KeyField1 Instead of null or a CustName.
How can I set default value if some of the key field of main table do not match the key field of Mapping table.
Hello,
try with
applymap('MapCustomerTable',KeyField,'DefaultValue') as CustName
Hope this helps!
Hello,
try with
applymap('MapCustomerTable',KeyField,'DefaultValue') as CustName
Hope this helps!
Thanks