Setting Priority by FaFR doesn't work anymore (Change Module)

Setting Priority by FaFR doesn't work anymore (Change Module)

Since 14505 this code doesn't work (doesn't work on 14600 either)

OnValueChange for Impact and Urgency
  1. var Priority_Matrix = {
  2.     "4. University": {
  3.       "4. Very High": "1",
  4.       "3. High": "2",
  5.       "2. Medium": "3",
  6.       "1. Low": "4"
  7.     },
  8.     "3. Institution / Computer Lab": {
  9.       "4. Very High": "2",
  10.       "3. High": "3",
  11.       "2. Medium": "4",
  12.       "1. Low": "5"
  13.     },
  14.     "2. Department": {
  15.       "4. Very High": "3",
  16.       "3. High": "4",
  17.       "2. Medium": "5",
  18.       "1. Low": "6"
  19.     },
  20.     "1. Person": {
  21.       "4. Very High": "4",
  22.       "3. High": "5",
  23.       "2. Medium": "6",
  24.       "1. Low": "7"
  25.     }
  26. };
  27. var impact = $CS.getText("IMPACT");
  28. var urgency = $CS.getText("URGENCY");
  29. var priority = Priority_Matrix[impact][urgency];//only for debugging
  30. $CS.setText("PRIORITY",Priority_Matrix[impact][urgency]);
  31. $CS.setValue("TITLE",impact+ " "+ urgency + " = " + priority);  //only for debugging

The Values print Ok in the title but doesn't set the priority anymore.

                  New to ADSelfService Plus?