Hi,
I have following Requirement in CRM:
I should show an error Message on Order Form as soon as the status of Order is "submitted".
I have tried to solve this with javascript but I've got an error:
var StateCodeValue = formContext.getAttribute ("statecode").getValue();
if(StateCodeValue == 1){
formContext.setNotification("xy ", "WARNING");
Can anybody say how can I get the value of Statecode?
Thanks in advance!