My incoming field -->double datattype (veeva)--> for eg.s, 134.0 , 45.4,61.234 My output needs to be always 2 places of decimal --->file ---> field value: 134.00, 45.40, 61.23
I have tried creating an expression on informatica cloud:
TO_DECIMAL( IN_TAX, 2 )
but its not giving the expected output.
Keep the data type to double with decimal point =2 and use
round()
. I am assuming your target is a flat file.create an out port in exp transformation like below -
Link this port to target.