"Status" attribute for QM Test Result with LQE data source shows "com.ibm.rqm.execution.common.state.xxxx", working as designed?
Accepted answer
Brett, use the verdict property (see LQE Report: Test Plan Results Report: Status Column shows "com.ibm.rqm.execution.common.state.passed" (144023)).
One other answer
Hi Brett,
That is how the value is returned from RQM's API. In RPE, we use script expression to change it:
var mystate = _value;
mystate = mystate.replace("com.ibm.rqm.execution.common.state.","");
mystate = mystate.substr(0, 1).toUpperCase() + mystate.substr(1);
mystate
Seems like we cannot use script expression / string functions in JRS. You can use verdict instead of status.