How to launch a form to use a site other than the current site

@hogardy @chris_conn @hkeric.wci
Here is the code pattern that works if anyone else finds it useful

var othsession = Ice.Lib.Framework.FormFunctions.SessionCache.GetCachedSession(session.AppServer, session.CompanyID, "MFG");
LaunchFormOptions launchObject = new LaunchFormOptions()
{	IsModal = false,
	SuppressFormSearch = true,
	ValueIn = newJobNum,
};
var othlaunch = new ILauncher(othsession);
ProcessCaller.LaunchForm(othlaunch, "PJGO1010", launchObject);

Thanks for your help!

6 Likes