1.2k questions
1.4k answers
361 comments
339 users
While there are other ways to return a differnt ACK message, the easist way is to use the qie post message response function in the Source Node Response Script.
qie.postMessageResponse('true');
Another way would be to return a csv message. In this example we are returning just one row and one column but you could build a larger csv message model.
message = qie.createCSVMessage(); message.setNode('1[1]', 'true');
message = qie.createCSVMessage();
message.setNode('1[1]', 'true');
Or you could build a csv message pulling data from the source message and parse it as csv and return.
var patientId = source.getNode('1'); var patientName = source.getNode('2'); message = qie.parseCSVString(patientId + ',' + patientName);