Hi Community
We want to fill in column header filter values with the help of mforms automation. I've already created an Infor support incident, however they told me to ask this question here in the Infor Community.
A simple example: Select a customer order line in OIS302 and click on the mforms automation shortcut link. Now OIS300, sorting order 1 should open up and the selected customer order number from OIS302 should be filled in the customer order number column header filter in OIS300.
XML:
<?xml version="1.0" encoding="utf-8"?>
<sequence>
<step command="RUN" value="OIS300"/>
<step command="KEY" value="ENTER">
<field name="WWQTTP">1</field>
</step> <step command="KEY" value="ENTER">
<field name="OAORNO">OBORNO</field>
</step>
</sequence>
mforms automation link:
mforms://_automation?data=%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csequence%3E%0A%3Cstep%20command%3D%22RUN%22%20value%3D%22OIS300%22%2F%3E%0A%3Cstep%20command%3D%22KEY%22%20value%3D%22ENTER%22%3E%0A%3Cfield%20name%3D%22WWQTTP%22%3E1%3C%2Ffield%3E%0A%3C%2Fstep%3E%0A%3Cstep%20command%3D%22KEY%22%20value%3D%22ENTER%22%3E%0A%3Cfield%20name%3D%22OAORNO%22%3E<OBORNO>%3C%2Ffield%3E%0A%3C%2Fstep%3E%0A%3C%2Fsequence%3E

In the Dev tools it seems to take the selected customer order number from OIS302, but it doesn't fill in the value on the column filter header.
