• How do I Delete complete vendor, purchases and payments to start over.

    How do I Delete complete vendor, purchases and payments to start over. I added a new vendor Jan 1, 2024 and added purchases (pay later) and then payments. For some reason it is not working out and I want to delete the whole thing and restart. Can this…
  • Cannot post an account code in our General Journal - that we have been able to in past.

    Since the latest 2024.1 update, We cannot enter a Ledger Code into the General Journal that we used to be able to all the time. Does anyone know how to fix this? I have read previous QAs on this subject, but none of them answer my question, as it was…
  • Sage 50 CA Error with SDK "Customer Ofen pay late. see the advice topic Handling Overdue accounts" for suggestion

    hi all, I am getting this error while importing Orders. can anyone suggest how to resolve it?? Sage 50 CA Error with SDK "Customer Ofen pay late. see the advice topic Handling Overdue accounts" for suggestion Thanks, SF
  • setting up auto back up

    Hi, I'm trying to set up an auto back up in sage 50, i only see a regular a regular back up and not automatic back up. can someone kindly assist. thanks. Richard
  • "Unable to open company file" message returned

    Hi all, We're developing a COM-aware .Net assembly that is used in a legacy VB6 app and keep getting the above message when opening a connection via SDKInstanceManager.Instance.OpenDatabase. When we call our method from inside another .Net assembly…
  • Sage 50 Sales Invoice Columns

    I am importing data into Sage from a 3rd party software. Each of the transactions has a BOL# associated to it. When the data is imported, the quantity, product, price, etc. all import correctly - but I am unable to find a field in Sage 50 for a transaction…
  • Sage Drive

    I used to use Sage Drive to share access with the accountant, now I cannot add the updated backup to the Drive. Do I have to set up a new user directly in SAGE 50 Can. Ed.? I also used to use the Drive as an extra backup location, but I can no longer…
  • TotalTaxAmount SetTaxAmountByRow not working

    Hi, I am trying to update invoice's total tax using below code TaxSummaryInfo taxSummaryInfo = journal.GetTotalTaxAmountInfo(); if (taxSummaryInfo.GetCount() > 0) { double totalTax = 10; taxSummaryInfo.SetTaxAmountByRow(1, totalTax); taxSummaryInfo…
  • SDKInstanceManager OpenDatabase always returns false and has no error messages

    Hi, I'm trying to work through the C# sample project in the Sage 50 Accounting SDK (Simply) but for some reason I can't get the opendatabase connection to let me access the database. I have set up my user in the Sage app and I know my username and password…
  • Where payment terms are stored for the customer in Sage 50 CA Edition?

    I'm working on extracting data from the database sage 50 CA, but in the documentation containing the data definition , I have not found the relationship of the payment terms with customers, or where it is stored ( table). Here is the information that…
  • Exist the price levels in Sage 50 CA?

    I'm working on the integration of Sage 50 CA with a third party application with .NET. And price levels are within the required information extracted from the database Sage 50 CA, but so far I have not found any information to verify the existence of…
  • Where stored the data returned by the function wSDBFetchRecord ?

    I'm trying to extract data from tables in the database Sage 50 CA 2016, with a Visual Basic application that uses the SDK Sage 50 CA (Simply.ConnectionManagerService.dll). I'm using the function "wSDBSelectRecords" to extract the data And then I 'm…
  • How to capture the data returned wSDBSelectRecords in sage 50 2016 CA SDK with Visual Basic .NET?

    I´m using ConnectionManagerService.dll and I am using the function wSDBSelectRecords with this syntax: Call wSDBSelectRecords(iDBLink, iTBLink, "", 0, True) But I do not know how to capture the data you are going to select in a DataTable. I´m Working…