
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2019 11:25 PM
Without changing the configuration to single currency, is it possible to change the default currency from USD to AED.
I am looking at the contract module (ast_contract).
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2019 12:05 AM
for global changes, kindly refer the below blog.
https://community.servicenow.com/community?id=community_blog&sys_id=f1bcea25dbd0dbc01dcaf3231f96193b
let me check if it can be done for one table only.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2019 11:45 PM
Just confirming here, do you want the changes only for "ast_contract" table records or global changes ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2019 12:02 AM
Ideally we would like to do global.
Is there an option to do it per table also ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2019 12:05 AM
for global changes, kindly refer the below blog.
https://community.servicenow.com/community?id=community_blog&sys_id=f1bcea25dbd0dbc01dcaf3231f96193b
let me check if it can be done for one table only.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2019 12:09 AM
try with below onload client script on your form.
instead of EUR , you can use AED
function onLoad() {
//Type appropriate comment here, and begin script below
if (g_form.getValue("payment_amount").indexOf("USD") != -1) {
g_form.setValue("payment_amount", g_form.getValue("payment_amount").replace(/\bUSD\b/g, 'EUR'));
}
}