Hello guys,
I’m trying to Launch the MES Start Production Activity screen from a UD screen (UD20), but I’m getting an error after opening the base Standard Production Activity screen.
private void btnStartActivity_Click(object sender, System.EventArgs args)
{
LaunchFormOptions lfo = new LaunchFormOptions();
//lfo.ValueIn = “105”;
lfo.IsModal = true;
lfo.SuppressFormSearch = true;
ProcessCaller.LaunchForm(oTrans, “Erp.UI.StartProductionActivityEntry”, lfo);
}
I believe I’m missing certain parameter?
Thanks