0

I have been searching for hours on Google and Microsoft to find a code example of how to collect a list of active vendors from Microsoft Dynamics Great Plains 9 via eConnect.

I have downloaded 3 SDKs, multiple snippets, and an obscene amount of documents, to no avail.

How would I do this?

Jeremy Holovacs
  • 22,480
  • 33
  • 117
  • 254

1 Answers1

1
VendorCriteria x = new VendorCriteria();
x.IsActive = new RestrictionOfNullableOfboolean();
x.IsActive.EqualValue =true ;
VendorSummary []=wsDynamicsGP.GetVendorList(x,context);
Zia
  • 921
  • 5
  • 14