Standard change template value mandatory issue

Pari5
Tera Contributor

Hi Team,

When creating standard change proposal, 'Change request values' field should be mandatory. But due to default values (as per standard change properties), it can be submitted without completing this field and the mandatory field check is not working as expected as technically there is text in these field. Please see attachment below for reference. 

find_real_file.png

Your assistance would be highly appreciated!

Thanks in Advance!

4 REPLIES 4

Harish KM
Kilo Patron
Kilo Patron

You can remove the default values by right click on change request values--configure dictionary..

Once you remove this . There will be no default values

find_real_file.png

Regards
Harish

Pari5
Tera Contributor

Hi Harish,

Thanks for your reply! But actually we need those values as something like 'placeholder'/help text to guide users.

Is that possible to make it in this case?

Those default values are cmg from that script include..If values are present. It cant be made mandatory. that doesnt make sense too

Regards
Harish

If you still want to make those fields to be changed  by user. You can manipulate by writing client script

var sd = g_form.getValue('template_value');
;
if(sd.indexOf("Include a title for your change no greater than 100 characters Describe what you plan to do")==-1)
{
alert("Default value contains");

//do something
}

Regards
Harish