Updateable BAQ

Can I call an updateable BAQ from a customization on the job entry form?

Yes. I use this code to trigger my UBAQ custom action.

	 void BAQRunCustomAction(EpiDataView iEdv, string iActionID)
	{
	    BAQDataView BAQView = (BAQDataView)iEdv;
	    Assembly assembly = Assembly.LoadFrom("Ice.Lib.EpiClientLib.dll");
	    Type t = assembly.GetType("Ice.Lib.Framework.BAQUpdater");
	    MethodInfo mi = t.GetMethod("BAQRunCustomAction", BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy);
		mi.Invoke("Ice.Lib.Framework.BAQUpdater", new object[]{BAQView, iActionID});
	}

@klincecum pointed out that I don’t need to do it this way, but it has always worked for me. Check out this other thread where he gave me a slightly cleaner approach to try (I haven’t tried it yet).
Add or Edit any Operation - My Custom Dashboards - ERP 10 - Epicor User Help Forum (epiusers.help)