Hello Communuty,
I'm trying to develop an H5 script using MFormsAutomation that allows me to open a MMS025 program in create .
const auto = new MFormsAutomation();
console.log(ScriptUtil.GetUserContext("USID"))
auto.addStep(ActionType.Run, 'MMS025');
auto.addStep(ActionType.Key, 'ENTER');
auto.addField('W1ITNO', '10001');
auto.addStep(ActionType.ListOption, '2');
const uri = auto.toEncodedUri();
ScriptUtil.Launch(uri);
it doesn't work, i think because of the field identification (like W1ITNO)
Regards