Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Design:

Image Removed

View file
nameConcur Role Request Flow_20200430.vsdx
height250
View file
nameAdditional Concur Roles Process Flow v2.0.pdf
height250
View file
nameConcur Roles for Concur Role Request Form.xlsx
height250

...

-Updated form to route to delegates (President) if needed

 

-Added a listener for the Supervisor Review Web Service Call to check to see if the supervisor and department head are the same.  

-Updated email routing for the interim solution with skipping CPO review and going to the Controller.

-added a new check for supervisor vs department head.  Since delegates could potentially be used, new code has been added to check for if the designee is the same as the supervisor.  

//onItemChange of designee table

var reviewerNetId = [];

var table = BO.F_DesigneeTable;
for (var i = 0; i < table.getLength(); i++) {

reviewerNetId.push(get(table.get(i),"F_DesigneeNetId").getValue());
}

BO.F_supervisornetidcheck.setValue(reviewerNetId.join(", "));

//code is placed onItemChange of new field for Designee NetIds

value = BO.F_supervisornetidcheck.getValue()
SupervisorNetId = BO.F_SupervisorNetId.getValue()

if (value.indexOf(SupervisorNetId) !== -1) {
BO.F_SupervisorException.setValue(true)
}
else { BO.F_SupervisorException.setValue(false)
}

 

Migrated to Leap.

 (not in production)

Updated Controller approval to check for approve or deny before creating new form in System Review App.  If Deny, no form is created.