
Contributor
2022-08-05
02:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Cannot invoke Doublevalue() on the primitive type int
Hi Everyone,
I am trying to convert "qty" (Integer type) to QuantityOnHand (Double type) in tMAp talend and
encountered error "Cannot invoke Doublevalue() on the primitive type int
row8
Out
Anyone got any ideas how this issue can be resolved ? Thanks.
The purpose is to use double field format of QuantityOnHand to update SF ProductItem.
1,196 Views
1 Solution
Accepted Solutions

Master
2022-08-05
03:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @gordon foo , use Double.valueOf(row8.qty) method instead.
Send me love and kudos
1,196 Views
2 Replies

Master
2022-08-05
03:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @gordon foo , use Double.valueOf(row8.qty) method instead.
Send me love and kudos
1,197 Views

Contributor
2022-08-05
04:13 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much !! Double.valueOf(row8.qty) seemed to work perfectly!
1,196 Views
