
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2022 01:39 AM
Hi Experts,
I have a excel where we have projects which I want to load through transform map in Servicenow.
I am facing one issue to convert currency type from USD to CAD through transform map, Field mapping.
Please see screenshot for more information.
TIA.
Regards
Sulabh Garg
Solved! Go to Solution.
- Labels:
-
Project Portfolio Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2022 02:49 AM
I am able to resolve the issue by using below script in field maps
return source.u_project_currency + ";" + source.u_budget_cost;
Here u_project_currency contains currency type USD/CAD etc. and u_budget_cost contains currency value.
Regards
Sulabh Garg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2022 02:53 AM
Can you share the transform map script you are using for the transform.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2022 02:49 AM
I am able to resolve the issue by using below script in field maps
return source.u_project_currency + ";" + source.u_budget_cost;
Here u_project_currency contains currency type USD/CAD etc. and u_budget_cost contains currency value.
Regards
Sulabh Garg