- 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
10-01-2014 05:25 AM
var input= source.u_hard_disk__gb_+"";
var res = input.toUpperCase();
target.u_hard_disk__gb_ = res;
This will work, try it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2014 05:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2014 05:58 AM
Target field is an integer field? You are trying to put a string in it. Or did you create your own RAM field?
- 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