I have a BO that has to show in a Query. It relates to a line on a bank statement. I want to edit the statement line to associate it with a Contact.
I could edit the form but that seems like at least 1 step to many.
I thought about using inline editing but that won't commit until the user focus blurs from the record which is counter intuitive as the user's next step is to expand the row, which doesn't cause the focus to change necessarily.
Also using a button operation would place the button at the opposite end of the field that is relevant.
Then I thought about using
<a href=”#” onclick=”AwareApp.startProcess('TEST_DELETE_MESSAGE','main')” >Show Message</a>
inside a text field to run a process to PICK ONE FROM and then insert that Contact into the statement line and replace the text field with the Contact name.
Rather than build everything I wanted to test it with the process above TEST_DELETE_MESSAGE which is just DISPLAY MESSAGE'Hello'.
The output from this is not positive:
HTTP Status 404 - /AwareIM/%E2%80%9D
type Status report
message /AwareIM/%E2%80%9D
description The requested resource is not available.
Apache Tomcat/8.0.14
I have looked at all the AwareApp.function options and none of them seemed more appropriate.
Am I attempting to do something ridiculous or am I doing it wrong?