How do you get the Choice Value from a Choice field? (not a trick question!)
Assume a GlideRecord, 'gr', with choice field 'os' (operating system).How do I get the value?gr.os.getChoiceValue() returns the 'choice label'gr.os.getDisplayValue() returns the 'choice label'gr.os.getElementValue() returns the 'choice label'gr.os.ge...