Dynamics GP is an ERP solution from Microsoft - the overview page is http://www.microsoft.com/en-us/dynamics/products/gp-overview.aspx.
3
votes
5answers
815 views
Generic Exception over webservices
I am integrating with MS Dynamics GP WebServices from C# and I am not sure how to handle exception.
If I do a GetCustomer with a inexistant ID, the web services return me a "generic" SoapException ...
2
votes
2answers
310 views
What are the similarities or differences between Dynamics CRM vs Dynamics GP (Great Plains)
I am doing research about integrating a product into Dynamics Great Plains. I have worked with Dynamics CRM before but not with Great Plains. I have heard that GP is a different animal than CRM, ...
1
vote
1answer
24 views
+50
Great Plains eConnect Issue, FileNotFoundException… what am I missing?
I am trying to invoke a call to Dynamics Great Plains, and am getting a very frustrating error.
I call the code:
eConnectMethods eConCall = new eConnectMethods();
and I immediately trap the ...
1
vote
0answers
36 views
SQL query to match payments to invoices in Microsoft Dynamics GP (Great Plains)
How do you match payment information from an external source to invoices in Microsoft Dynamics GP (Great Plains)?
I found this post, but it doesn't go into detail about the actual query to use:
...
1
vote
1answer
185 views
Dynamics GP Web Service — Returning list of sales order based on specific criteria
For a web application, I need to get a list or collection of all SalesOrders that meet the folowing criteria:
Have a WarehouseKey.ID equal to "test", "lucmo" or "Inno"
Have Lines that have a ...
1
vote
1answer
83 views
GP Webservices and Adding Notes to Invoice
We use webservices to integrate our Dynamics CRM 4.0 with GP 10.0. We do alot of integration using GP webservices like creating invoices, customers and vendors.
However, we just faced a problem. We ...
0
votes
0answers
15 views
Microsoft Dynamics GP SUTA Report Running Slowly
We are running Microsoft Dynamics GP version 11.00.1860 (SP2) and we're having issues running our SUTA report for this past quarter (10/01/2011 - 12/31/2011). It's running incredibly slowly. The ...
0
votes
0answers
10 views
Can Dynamics GP 2010 call an external Web Service / Plugin?
Can MS Dynamics GP 2010 call an external web service or execute some custom plugin class (that would then call the web service) when a specific action is performed?
For example, I'd like to trigger ...
0
votes
0answers
19 views
How to link a button in Microsoft Dynamics Great Plains
This is probably the grandfather of easy questions. But I am just starting out in modifying this system and I have received zero training. For whatever reason, I am finding it incredibility difficult ...
0
votes
0answers
29 views
Is there an eConnect for Microsoft Dynamics GP 8
I have a question regarding eConnet does GP8 already have this, if it does can I use Visual Basic 6 as a tool to integrate system to GP.
0
votes
0answers
11 views
How to Delete an Item using the Dynamics GP Web Services
It appears there is not a DeleteItem or UpdateItem function for Items in Microsoft Dynamics GP Web Services. Is there a way that you can preform either operation using the Web Services?
0
votes
1answer
78 views
First call to Dynamics GP 2010 Web Services takes 10+ seconds
I have a web site that communicates with a .NET 4 WCF web services. That WCF service connects to Dynamics GP Web Services on a remote server. Both Web Services are self-hosted (no IIS).
The first ...
0
votes
0answers
93 views
Dynamics GP 2010 Web Service Question
I am trying to create a purchase order in Dynamics GP 2010 using the webservices. I get the following error VendorItemNumber not setup for ItemKey First off, I am not sure what that error actually ...
0
votes
1answer
78 views
Create a purchase order in Dynamics GP
My main question is what fields are required for creating a PO using the web services. I keep getting an exception, so I feel like im leaving some info out. Any ideas? Here is my code:
Public Sub ...
0
votes
0answers
21 views
How can I find my CompanyKey.Id in Microsoft Dynamics GP
New to Microsoft Dynamics GP 2010. I am programming using the web services. Many of them require you to create a CompanyKey object and set its Id property. How can I figure out what my company Id is?
...
0
votes
0answers
75 views
Dynamics GP Web Service — Creating a custom Update Policy for UpdateSalesOrder()
Is it possible to create a new Policy that I can use when trying to update Sales Orders that will bypass credit check and alow me to modify back order, fulfilled and shipped quantites regardless of ...
0
votes
0answers
67 views
Dynamics GP Web Services: Associate SalesInvoice with SalesOrder
While using Dynamics GP Web Services to create a SalesInvoice, I've run across a problem which prevents me from associating my successfully created SalesInvoice with the SalesOrder that it was based ...
0
votes
1answer
157 views
Dynamics GP Web Services: SalesInvoice Creation with Lot Allocation
I'm trying to use the following code to create a new SalesInvoice based on an existing SalesOrder:
SalesInvoice invoice = new SalesInvoice();
invoice.DocumentTypeKey = new SalesDocumentTypeKey { ...
0
votes
0answers
67 views
Do I have to recompile my application for GP 2010's Web Service when it already worked with GP 10?
We have integration points into Dynamics GP and have clients looking to upgrade to the 2010 version. Our clients are currently running GP 10 and our application uses the provided GP Web Services to ...
0
votes
1answer
90 views
synchronizing Microsoft Dynamics GP database to the application
I have integrated our application with Microsoft Dynamic GP. If any of the user in Dynamics GP has updated any customer/vendor/other, then we need to update those data in our application.
How can we ...
0
votes
1answer
244 views
MSMQ Transaction with COM (python)?
I'm attempting to use MSMQ from Python using the win32com library, similar to this example. I'm able to put messages onto the queue, but in this case it's a transactional queue, so I need to create a ...
0
votes
0answers
262 views
In order to use eConnect 11.0 for Dynamics GP 2010, does the eConnect windows service have to be installed on the client computer?
I am working on a Windows Forms app that will integrate with Dynamics GP 2010, using the eConnect WCF service.
The eConnect Windows service is defaulted to only have the net.pipe binding, which would ...
0
votes
1answer
132 views
Dynamics Great Plains Web Services: Is there a way to retrieve a user's company permissions?
Basically is there a call I can make through the GP web services to retrieve what companies a user has access to within Great Plains?
0
votes
1answer
156 views
Refactoring an eConnect method that uses a single stored procedure
I'm writing a program to modify some invoices in GP10 using eConnect. Some of the invoices require the distributions to be reset because the totals do not add up correctly due to various other (not ...
0
votes
1answer
190 views
Want to learn MS Dynamics(Confused between ERP and CRM)
I am confused about MS Dynamics.I am having 7 years of experience in MS technology (asp.net, C#, vb.net, Sql 2005/2008, WCF, SharePoint 3.0) and Crystal report 10.0.
I want to learn MS Dynamics but ...
0
votes
2answers
113 views
How do I create and synchronize a combined reporting-only db from two live dbs?
I need to quickly implement a read-only database containing data pulled from two identically structured live databases.
The live dbs are actually company dbs from a Dynamics accounting system so I'm ...