Getting data and populating on FormLoad

I am trying to read in some data and populate an EpiUltraGrid. I’ve done this other places and it worked well but on this screen it won’t work on the form load. It compiles so I shouldn’t be missing a reference.Does anyone know some ideosyncracy that I may have missed?

bool bMorePages = false;

	var session = (Ice.Core.Session)oTrans.Session; 
	using (var svc = WCFServiceSupport.CreateImpl<Erp.Proxy.BO.JobEntryImpl>(session, Epicor.ServiceModel.Channels.ImplBase<Erp.Contracts.JobEntrySvcContract>.UriPath))
	{
		var tsJobList = svc.GetList("(Plant = 'MfgSys') AND PersonID = 'SalusAsy' BY JobNum", 100, 0, out bMorePages);
	
		eugJobList.DataSource = tsJobList;

I would highly recommend you take a look at the BAQView. There are quick a few articles here on accomplishing it.
Someday Epicor may even make a wizard for Kinetic… Maybe?

Thank you. I will take a look at it.