We're reclaiming inactive PDIs to keep them available foractive builders.Learn what's changing, who's affected, and how to protect your work. Read More
Hi @Are Kaveri Try this var duration = new GlideDateTime(current.glidefieldonform.getValue()); // getting duration and converting to GlideDateTime
duration = duration.getNumericValue()/1000/60; // calculating the total duration in minutes
gs....
@Gurpreet Kaur5 : Create UI policies on Change table.Condition 'Is Security Impacted?' is 'Yes' UI Policy Action : Field you want to make visible and mandatory, Make Visible and Mandatory True and Read Only as Leave alone Kindly mark the answer ✔️ C...
@Hi @Are Kaveri : yes best way is to convert all in minutes, will be easy for other system to receive in same format that is in minutes. Kindly mark my response Helpful. Thanks.
Hi @nikhitha24 If your conditions are very specific and based on certain fields in the table, you might consider having a client script at the table level.Sample. (you can consider one more condition to check the Catalog Item as well)var sd = g_form...
Hi, You can do is split 3 from the duration. Use this script for doing the same.var actualDuration;actualDuration = duration.split(" "); // duration which has value 3 minutesvar result = actualDuration[0]; // should have 3 as required Kindly mark...