Need to remove the toggle currency for the total planned cost
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2025 12:47 AM
Please help me to remove the toggle currency from the total planned cost
- Labels:
-
Service Portfolio Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2025 01:15 AM
Hi @Sanjeeva Nagend ,
Option 1: Just Hide the Toggle (UI-only)
Add a UI Policy or Client Script to hide the currency element (the little drop-down).
Example (Client Script onLoad):
function onLoad() {
var currencyElement = g_form.getElement('planned_cost');
if (currencyElement) {
// Hide only the currency selector part
var currencySelector = currencyElement.querySelector('.currency_selector');
if (currencySelector) {
currencySelector.style.display = 'none';
}
}
}
This way, users still see the numeric value but cannot change the currency.
Option 2: Change the Field Type (No Currency at All)
Go to System Definition > Dictionary.
Find the field planned_cost (or your custom cost field).
Change the Type from Currency → Decimal/Double/Integer.
This removes the toggle completely, but You lose multi-currency support.
You must update any calculations or reports depending on that field.
Option 3: System Property (Global Setting)
There’s also a property:
glide.ui.currency_selector.enabled
If set to false, the currency selector toggle is hidden system-wide.
But this affects all currency fields across ServiceNow, not just Planned Cost.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2025 02:30 AM
Hi Pavani,
Thanks for the reply,
toggle currency is visible on the list view not on the form.