Hi, I have a JavaScript function on Case form in which I am fetching BPF's active stage using XRM object. Below is skeleton of my code: var activeStage = getActiveStage(); //Identify if (activeStage === "Identify") { //perform some operations } It is working fine for English language, but when I change the language to another language, the condition fails. Any solution ? In worst case, I will have to create an array and based on language id I will pass the value. Thanks in advance.
↧