I would like to use an action button to open a FORM COMPONENT with the curser to activate at a multiline edit field half way down the form. Can anyone help me with the syntex to tab down into the form?
like this ==
{OPEN_FORM_COMP(
"Enterprise\CCC\CPOE A&P-CCC")}
tab
tab
tab
tab
{ccc_Fx_extr(
"BOM3")}
Thank,
mkelley
As far as I am aware there is no function to move a cursor, you can open forms and navigate pages but not fields. But it looks like you might be trying to fill a field with the contents of {ccc_Fx_extr("BOM3")}, you can do that by one of the following
If the connection type is document variable then
{DOCUMENT.VARIABLE_NAME = ccc_Fx_extr("BOM3")}
If the connection type is observation then
{OBSNOW("VARIABLE_NAME",ccc_Fx_extr("BOM3"))}
But the cursor will not move