Need to remove the toggle currency for the total planned cost

Sanjeeva Nagend
Tera Contributor

Need to remove the Toggle currency

 

SanjeevaNagend_0-1756107776368.png

 

1 REPLY 1

pavani_paluri
Giga Guru

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 it helpful if this helps you to understand. Accept solution if this give you the answer you're looking for
Kind Regards,
Pavani P