Questions tagged [dynamics-gp]

Microsoft Dynamics GP is one of several ERP (Enterprise Resource Planning, or accounting software) solutions offered by Microsoft under their Dynamics brand.

Microsoft Dynamics GP is one of several ERP (Enterprise Resource Planning, or accounting software) solutions offered by Microsoft under their Dynamics brand. The application was originally developed by Great Plains Software, of Fargo, ND, which was acquired by Microsoft in late 2000 / early 2001. The application is typically self-hosted, with the primary means of end-user interaction being a native Windows application which communicates via ODBC with a single instance of Microsoft SQL Server. Most of the business logic is embedded in the client application, and there is no "middle tier", or dedicated application server between the client(s) and the database. Extensions to the application (such as Microsoft Business Portal for Dynamics GP) extend the interaction surface to Microsoft SharePoint, SQL Server Reporting Services, and Microsoft Excel.

The application is a popular solution for what Microsoft refers to as "SMB" (Small and Medium Business) clients, and is positioned above applications such as QuickBooks, and below the ERP suites sold by (e.g.) Oracle and SAP. There is a rich ecosystem of applications and tools, both from Microsoft and ISVs (Independent Software Vendors) that extend the base offering.

Most development work related to GP involves customization of the application for specific clients/industries, reporting, business intelligence, and integration.

This tag should be used for:

  • any questions relating to the development of applications, integrations, and reporting solutions for Dynamics GP
  • questions about applications which directly extend Dynamics GP, such as eConnect, or Dynamics GP web services
  • questions about the underlying technology stack (such as Microsoft SQL Server, or SharePoint) as it specifically relates to Dynamics GP

More information about Microsoft Dynamics GP:

141 questions
0
votes
1 answer

PaymentAmount does not match line deposit plus +credit card payment total

Using the Dynamics GP Web Service API on GP 2013, how do I apply payments to a Sales Invoice? I receive the error in the subject line. Here is my code: static void CreateInvoice() { CompanyKey companyKey; Context…
Joseph Anderson
  • 4,114
  • 4
  • 45
  • 99
0
votes
1 answer

Microsoft Dynamics GP 10.0: Where is the "business object"/stored procedure documentation?

I've been looking at, among other things, the "eConnect Programmer's Guide Release 10.0" for Microsoft Dynamics GP. There are stored procedures (termed "Business Objects") referred to in this document that I can call to get/modify data in the…
0
votes
1 answer

Great Plains Find Sales Orders

I have created sales orders in Great Plains, however, I cannot find them in the right place in the system. Although my code executes without any errors, I do not find this transaction under Sales > All Sales Transactions. Instead, I see them under…
Joseph Anderson
  • 4,114
  • 4
  • 45
  • 99
0
votes
1 answer

Debug GP AddIn DLL on system w/out Full VS?

I have an AddIn DLL for Dynamics GP and I have an issue I can only reproduce on a client's server. As such I thought I would simply install Visual Basic Express 2010 on their server so I could do an "attach to process" and debug my DLL code. Then I…
CodenameCain
  • 573
  • 1
  • 9
  • 22
0
votes
2 answers

Create Customer No Address - Dynamics GP

I am trying to create a customer in MS Dynamics GP. Here is my code: public void CreateGPCustomer(JMAOrder jd) { Customer cu = new Customer(); cu.ModifiedDate = DateTime.Now; cu.IsActive = true; cu.Name = "Joseph…
Joseph Anderson
  • 4,114
  • 4
  • 45
  • 99
0
votes
1 answer

MS Dynamics Great Plains Authentication - No Connection Could Be Made

I am trying to pull a list of vendors from my local instance of Great Plains. When I visit http://localhost:48620/DynamicsGPWebServices/DynamicsGPService.asmx I am asked to login. I enter my windows credentials, then I see endpoint not found. I…
Joseph Anderson
  • 4,114
  • 4
  • 45
  • 99
0
votes
1 answer

Updated Dynamics GP AddIn Duplicates Menu Item

I am working with a GP add-in created in visual studio and deployed to the AddIns folder - note this is not originally my project. The add-in places a menu item on the Payables Batch Entry window's Additional menu to open a custom window. I changed…
CodenameCain
  • 573
  • 1
  • 9
  • 22
0
votes
2 answers

Approve Purchase Orders in eConnect?

I am looking for the capability to approve a Purchase Order in Dynamics GP using eConnect. I do not see this capability when reviewing the eConnect Programmer's Guide, but I would like someone with more experience to verify that I am not missing it,…
CodenameCain
  • 573
  • 1
  • 9
  • 22
0
votes
1 answer

BalanceType in Dynamics GP Web Services, How to use?

I am trying to create a Customer in GP Web Services and I came across the BalanceType property on the Customer class and I do not know how to set its value. I was expecting it to be an integer of a value 0 or 1, however I receive a "cannot…
CodenameCain
  • 573
  • 1
  • 9
  • 22
0
votes
1 answer

Microsoft Dynamic GP extension assembly

I have created a Dynamic GP extension method to spec following the MSDN guidelines Dynamics GP Extension Assembly Here is the code for my custom extension assembly: namespace MyGPService { public static class GPExtensions { public static…
devHead
  • 794
  • 1
  • 15
  • 38
0
votes
1 answer

eConnect XML file detail for GLTransaction using arrays in Dynamics GP

I am looking to enter a single gltransaction in Dynamics GP using econnect. My code below does generate an XML file. However, it places three identical GL line items for $25 dollars each in the XML file leaving an unbalanced entry. What I would…
MSS
  • 91
  • 8
0
votes
1 answer

Microsoft Dynamics GP 10 uninstall artifacts

When Microsoft Dynamics GP 10 is uninstalled, what artifacts does it leave behind? I'm asking because I'm experiencing strange focus-related behaviors in GP 2010 on computers that previously had GP 10 installed but the strange behaviors don't occur…
Alkini
  • 1,449
  • 2
  • 12
  • 26
0
votes
1 answer

eConnect 10.0 SLPRSNID & SALSTERR not importing in new line items

The following code helps to import a sales line to an invoice: Dim LineItems(dtItem.Rows.Count) As taSopLineIvcInsert_ItemsTaSopLineIvcInsert Dim salesLine As New taSopLineIvcInsert_ItemsTaSopLineIvcInsert 'Create Invoice…
Kenmeister
  • 504
  • 2
  • 9
  • 9
0
votes
1 answer

How can I get a list of Credit Cards from Dynamics GP?

Is there a way to get a list of existing credit cards in GP using eConnect? Current implementation uses the .NET serialization approach mentioned in the eConnect documentation, though I haven't been able to find any information about how to get a…
Maixy
  • 1,151
  • 2
  • 12
  • 27
0
votes
1 answer

Can Great Plains + Smartconnect integrate with cXML files?

I need to upload data from cXML files to Great Plains system. We use SmartConnect for GP tool to integrate data into Dynamics GP. Is this integration possible?
rahul
  • 1
  • 1
1 2 3
9
10