- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2014 05:06 AM
Hi All,
I'm trying to take my source value and save it as uppercase in the target field. I have the below code, which seems to be doing nothing at the moment.
target.u_hard_disk__gb_ = source.u_hard_disk__gb_.toUpperCase();
Regards,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2014 06:02 AM
Hi Alex,
Try this
answer = source. u_hard_disk__gb_.toUpperCase();
Thanks,
Basha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2019 03:28 AM
Hi , i am trying to make Serial number(source) and save it as upper case in target but it give me undefined.
answer = (function transformEntry(source) {
answer = source.serial_number.toString().toUpperCase();
})(source);
Please help!!