• SDK use while company sharing is turned on

    While trying to write an integration for sage 50, I am encountering an error whenever I try to connect to a sage 50 instance if it has sharing enabled. With this setting, I get Unexpected Remote Data Access return value: SLALockFailure ---> Sage.SBD…
  • How to get SDK for Sage 50 Desktop ?

    Hi I'm a software developer and my client uses your Sage 50 Desktop software. I have task to add some wrapper around SDK which allow client to add data into Sage 50 from third party software. I am looking for SDK. I discovered this page : https://support1…
  • Sage 50 2023.0 SDK Php Integration

    Hi, We are tasked to develop a middleware using Sage 50 2023.0 SDK and Php. Is this possible using the COM implementation? Appreciate if you can provide samples. TA
  • Ooops! Did you forget something?

    Just got my invitation the new Sage Developer portal and it looks like they've forgotten to add all versions of the Sage 50 under the 'Small Business' section. https://developer.sage.com/ Hopefully, this is a simple oversight and not some ominous…
  • How to create unposted invoice and receipt?

    We have developed a .Net Windows application to connect with SAGE and create Invoice and Receipt programmatically, these invoices and receipts are in Posted Status. But our client want to create it unposted. We tried but couldn't get any way to make it…
  • Integration with SAP business Bydesign solution

    Tittle : Checking possibility that integrating with SAP business Bydesign ERP solution Hi, I'm one of members that working at a business partner company in Korea that builds an ERP solution called SAP business bydesign, named BeaconKorea,.Ltd Currently…
  • Sage50 Third party integration

    Hello, I am looking for help with the integration of Sage50 and a third-party software. Can anyone help me?
  • Integration of our Shopify sites and our Sage accounting system.

    I would like to explore the integration of our Shopify sites and our Sage accounting system. Could you please let us know more about this such as integration capabilities, including any existing connector’s or applications.
  • Looking for developers for Sage 50 US integration

    Hello there - my company is starting an integration with Sage 50 on behalf of clients, and we are looking for a skilled developer / development team to help with scoping the integration. Please let me know and reach out if you know any good resources…
  • How to check if SalesInvoice is printed and get the Invoice No.

    Hello. Is there a way using the SDK/API in .NET, to determine if a SalesInvoice has been printed and assigned an Invoice No.? And where in the API can I find the Invoice No.? These seem like common questions, so I feel sure I must be overlooking something…
  • SAGE 50 SDK - Company Open Works on Server but not on Workstation

    I have written an application to post general journals to SAGE 50 using data from a point of sale application. The program works fine on the server where the company files are located but when we moved the application to a workstation where the accounting…
  • Can you create and save a Purchase Invoice using the SAGE 50 2022 SDK?

    I'm getting a "read-only" error when attempting to save a Purchase Invoice in SAGE 50 using the 2022 SDK. I need to to know if this is supported or if I might be missing something that is causing this error.
  • Sage50 integration

    Hi I’m in the process of getting software integrated with sage50 , however they have some questions: Connection to your Sage50 instance Is there a public API available (Sage50 cloud?) If yes: what are the specific connection details? XML? JSON? Authentication…
  • Setting shipping/mailing addresses in Sales Orders and Purchase Orders

    I feel like there's something I'm missing. I can successfully create a Sales Order and a Purchase Order with line items in Sage50 using the .NET API (not ODBC). The issue I'm having is that while the correct vendor/customer are set, the address for…
  • Error when using UNC Network path to connect via latest .NET SDK (2021.1)

    Hello: I have been experimenting with the latest version of the .NET SDK (2021.1). My configuration uses UNC network paths and not mapped drives. When I try to run any of the sample applications, I get the following error: Object must be a root directory…
  • The entity is read-only

    I am currently developing an app with the .net sdk and am trying to input a sales invoice. All seems well until I call the .Save() method on my invoice. I get the error that the entity is read only. Based on a previous search through the forum, If I go…
  • The company could not be opened because the file COMPANY.DAT is missing or damaged.

    I have a third party application that integrates with Sage 50. After a client has copied their sandbox company to a new file for their production company, I am no longer able to open the Sage 50 company and receive the following error: I have seen…
  • Application Id

    We are an ISV looking to provide integrations to a number of clients. If we obtain a developer's license and application id, how does that work with customer installs? Also, will a single application Id be valid for any Sage desktop applications? …
  • Is there a way to receive qty on a Purchase Order?

    Is there a way to receive qty on a Purchase Order Line? These are non inventory items. Using .Net SDK or COM SDK.
  • Using SDK can I add Telephone 1 for a Vendor which comes under General Tab in Sage 50 US

    Using SDK can I add Telephone 1 for a Vendor which comes under General Tab in Sage 50 US. Please assist.
  • How can we support multiple versions of Sage50

    We are a POS system using the COM component to integrate to Sage50. We have some stores that use Sage50 2020 (which is the version of our COM component) and this works fine. We have some that just installed the Sage50 2021 version, and our integration…
  • COM based GetApplication not allowing login?

    We have a client that has used our COM API based interface application with Sage since 2011. They have just upgraded to Sage 50 2021, we have recompiled our application against this PAWLegacy.dll to maintain binary compatibility, but at the Login.GetApplication…
  • Sage 50 SDK Com - GetApplication returns null

    I am using the SDK Com interface. Below when I call the GetApplication with the com username and password I get back a null value. Under Sage Partners in Sage 50 the setting is medium. -------------- Login _peachtreeLogin = _peachtreeLoginSelector…
  • Import Unit Cost for Inventory Adjustments with the COM API

    I'm trying to import the Unit Cost field among others for Inventory adjustments via the COM Interface. For some reason this one field likes to remain at 0.00 even when making a positive adjustment with a value greater than 0.00. Here is an example of…
  • 'Non-zero amount must be rounded to whole currency' Sage 50 SDK

    When trying to save a sales order using the Sage 50 SDK, I get the error: ``` 'Non-zero amount must be rounded to whole currency'...``` I've been able to save them using something like `_.Amount = _.CalculateAmount(_.Quantity, _.UnitPrice);` which…