Customer Search Adapter

I am using the Search On Customer Adapter. I am returning the customer city, state, zip. Any ideas of why the Address lines aren’t available or how I make them available?

What method are you calling?
Edit: I actually am not sure what you’re talking about, but I assume you’re talking about using the Customer…

If the native search adapter doesn’t return the columns you want you will need to use a BAQ and quick search

If I may, this seems like a great use for BOReader

Ice.Proxy.Lib.BOReaderImpl _bor = WCFServiceSupport.CreateImpl<Ice.Proxy.Lib.BOReaderImpl>((Ice.Core.Session)oTrans.Session, Epicor.ServiceModel.Channels.ImplBase<Ice.Contracts.BOReaderSvcContract>.UriPath);
string whereClause = "";
DataSet ds2 = _bor.GetList("Ice:BO:UD39", whereClause, "Key1,Key2,Key3,Key4,Number01");  //namespace,whereclause,columns you want
dataGridView1.DataSource = ds2.Tables[0];

I think for your usage you want Erp:BO:Customer. Dont forget to import the reference DLL.