Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: NeilN
  • Content: Threads
  • Order by date
  1. NeilN

    Connecting to Sage 300 ACCPAC

    A client recently had their ACCPAC 5.5 moved and upgraded to Sage 300 v2016. Now I'm getting an error on the last line: accSession.Init "", "AS", "AS1000", "60A" accSession.Open "ADMIN", "xxx", "CBCRA", Date, 0, "" MsgBox accSession.AppVersion Dim mDBLinkCmpRW As...
  2. NeilN

    Invalid Tax Class When Inserting Invoice Detail

    I've got a VBA script which inserts A/R invoices into ACCPAC 5.5. Works fine over the last four years for two databases (was tweaked as ACCPAC was updated). Now a third database has been set up and I get this error when inserting an invoice detail line: Tax class 0 is not in the range of 1...
  3. NeilN

    Getting Invoice Balances

    ACCPAC 5.5 - Is there a field I can query or an API call I can make which will give me the balance (total charged - payments, write offs, etc) for every invoice?
  4. NeilN

    Aged Trial Balances in 5.5

    One of my clients has upgraded to 5.5 and is complaining about how slow the Aged Trial Balances (among other reports) is to run. I've checked in SQL Server 2005 box and the processor barely hits 10% and there's plenty of spare RAM for caching. Their ACCPAC integrator states, "...Aged Trial...
  5. NeilN

    Upgrade to ACCPAC 5.5

    One of our clients is upgrading from v5.3B to 5.5. Has the COMAPI changed in any way (specifically the functions used to insert A/R customers and invoices)?
  6. NeilN

    Pulling Data From Pervasive Database

    For one of our clients we need to pull data out of their Pervasive ACCPAC db and into a SQL Server db on a different server (Windows 2003). What's the best way to do this? Do we need to install the entire ACCPAC client to get access to the ODBC driver?
  7. NeilN

    Connecting to ACCPAC via COMAPI

    This code has worked on two different clients' ACCPAC systems (with appropriate db/user/pw changes). Dim accSession As New AccpacCOMAPI.AccpacSession On Error GoTo ACCPACErrorHandler accSession.Init "", "AS", "AS1000", "53A" accSession.EnforceAppVersion = False...
  8. NeilN

    Getting Oustanding A/R Balance

    Is there a API function that I can call that will give me the current A/R balance for a customer ID? If not, any suggestions as to how to get this info?
  9. NeilN

    Opening View in VBscript

    What's the proper syntax for opening a view with COMAPI and VBScript? This works in VBA: Dim mDBLinkCmpRW As AccpacCOMAPI.AccpacDBLink Set mDBLinkCmpRW = accsession.OpenDBLink(DBLINK_COMPANY, DBLINK_FLG_READWRITE) Dim ARCUSTOMER1 As AccpacCOMAPI.AccpacView mDBLinkCmpRW.OpenView...
  10. NeilN

    Two Way Integration with ACCPAC 5.2

    One of our clients wants us to integrate a custom application (SQL Server back end) with ACCPAC Advantage 5.2 (also a SQL Server back end). Basically we need to send customer info and invoices to ACCPAC and retrieve cash receipts info from ACCPAC. Doing straight SQL inserts is probably a bad...

Part and Inventory Search

Back
Top