Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to convert String to Bigdecimal

Hi All,

How can I convert string to bigdecimal in Tmap.I am reading text file from tfileinputdeilimited where data is tagged with doublequotes i.e "8976.3546" .Thus I am reading this data as tring in tfileinputdelimited then trying to convert into bigdecimal in tmap component.Once conversion is done in tmap .bigdecimal data will be inserted into target tables through toracleinput component.Below is screenshot for your reference.

Please assist on this issue asap.

 

 0683p000009LtnK.png

 

 

Thamks.

 

Regards,

Vivek

 

 

 

 

 

 

 

Labels (2)
1 Solution

Accepted Solutions
vapukov
Master II
Master II

Hi Vivek

 

try use this

new BigDecimal(row1.string_column)

0683p000009Lu99.png 

View solution in original post

2 Replies
vapukov
Master II
Master II

Hi Vivek

 

try use this

new BigDecimal(row1.string_column)

0683p000009Lu99.png 

Anonymous
Not applicable
Author

Thanks,That worked...