I am having my source data dml as packed decimal data type and i want to reformat it as only decimal data type.
eg.
original DML :- packed decimal(5,2) Salary
Reformated DML:- decimal(",") salary
packed decimal(5,2) Salary => decimal(",") salary
How can i type cast this packed decimal with decimal in AB initio ?