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;