Are there any stored procedure to create/update customer and customer contact?

SOLVED

I recently started working with sage 500 api which is really a set of stored procedures. At this stage, I want to create/update a customer as well as the corresponding contact. Does anyone have any idea of what stored procedures to use for this purpose or please point me in a good direction to kick-start this process? 

Will appreciate any kind of help because I can't find any documentation or useful stored procedures yet!

Parents Reply Children
  • 0 in reply to Sneha Pathak
    Having worked with Sage 500 for many years, the current Data Migrator APIs are much better than the originals provided with the Sage 500 SDK and in my humble opinion are very versatile. You have to remember they were written for Data Migrator specifically and not 3rd party developers.

    As a developer, I understand this and fill in any gaps to complete the solution the customer is looking for. As I mentioned we have built SSIS packages around these APIs that integrate to other systems, read XML files, and pull files from FTP sites, but we have also created WCF Web Services as well for some of these APIs that populate the staging tables and execute the API so other systems (Web sites, mobile applications, etc.) can import data to Sage 500 in real time.

    I understand your frustration, but the API is already doing much of the work for you. As I recommended, you simply need to understand how the API is currently working and what gaps you might need to fill in. One way to do this is to simply build a simple T-SQL script that populates the staging tables, executes the API, and reads the results from tdmMigrationLogWrk to better understand what the API is doing based on the data you are providing it.

    Good Luck