Browse By Tags

  • CRUD Operations using SOAP on sage x3

    Hi All, I was trying to delete a record from sage x3 using SOAP web service but I cannot see any online example of deleting through SOAP. Can we delete a record using SOAP web service from sage x3 ? If yes, can anybody please provide me with an example…
  • Getting stared with Sage X3 SOAP Web Services

    In this series of videos I explain how to get started integrating apps with Sage X3 using SOAP Web Services. In part one, you'll learn how to consume X3 data by extracting them and in the second part, how to import data into X3. Part 1: https://youtu…
  • Use API SOAP from .Net Core

    Hello everybody, We are making an app for the Mafesa plant and it is in .Net Core because it suited us but we find the problem that we can not make SOAP requests as we did from other apps in .Net framework. When we reference the WSDL the CAdxWebServiceXmlCCService…
  • Use API SOAP from .Net Core

    Hello everybody, We are making an app for the Mafesa plant and it is in .Net Core because it suited us but we find the problem that we can not make SOAP requests as we did from other apps in .Net framework. When we reference the WSDL the CAdxWebServiceXmlCCService…
  • Call SOAP web service within another in Sage X3

    Hello, I created a SOAP web service that calls a subprog on which I apply some logic and then call an object-based SOAP web service, like this: Subprog CONSUMED_BY_EXTERNAL_APPLICATION(SOME_PARAMETERS) #apply some logic, verifications, etc FOO …
  • X3_PUB {Web Service name} XML - No more paths available

    Hi, We have been recently receiving the following error below and it's almost all are Web Service calls to fail, can't figure out what is causing the issue, any help would be appreciated. {"code":"SAGE_X3_ERROR_MESSAGE","defaultMessage":"X3 Error…
  • SYRACUSE WS Unauthorized error

    Hi I'm trying to use X3 V12 webservices from PHP application, below the code I used to save a new order : $soapclient=new SoapClient($wsdl, $options); $callContext = array('codeLang'=>$code_lang, 'codeUser'=>$username, 'password'=>$password, …
  • AOWSIMPORT answer

    Hello, For the creation of certain documents through web services it is necessary to use the standard AOWSIMPORT method. We would need to know the id of the created document. Does anyone have any solution? Thank you very much.
  • is there a .Net automatic serialization and deserialization tool for sage x3 soap webservice?

    hello everyone i have a problem so we have a soap webservice created from sage x3 and we want to use it in another external .Net application that we are developing and we need a tool or a visual studio plugin that does the serialization and deserialization…
  • Web Service query com filtro Like?

    Saudações a todos! Estou trabalhando com Web Services e gostaria de saber se existe alguma forma de filtrar registros pelo método query da mesma forma que filtro pela left list. aqui temos um filtro pela left list e aqui estou usando a mesma…
  • The Journal Table

    I was tempted to start a new series of articles called " Mysterious Tables of Sage CRM " but since this is supposed to be a sensible library of "Hints, Tips and Tricks" I have resisted. Nevertheless, there are a few tables in the Sage CRM database that…
  • Date/Time fields, User Preferences and SOAP Web Services

    In this example, I want to explore how Sage CRM's SOAP web services interact with dates and times. The background for this article is the experience that a user may have within the main interface. As we can see in the image below this user has opted…
  • Embedding Sage CRM Screens (ASP & .NET extensions) in External Applications

    This article has been written for partners who need to be able to call Sage CRM screens in the context of external applications. This is not such a strange idea as there are several partners who have created add-ons to MS Office or to other desktop products…
  • The relationship between the SOAP Web Services and the other APIs

    A customer asked me whether the SOAP Web Services were an extension of the .Net API or a separate API built on top of the COM API. Below is a diagram that is frequently used to explain the Sage CRM Architecture. This diagram represents the hybrid…
  • UpdateRecord Example using the SOAP Web Services

    Below is some code that shows how the UpdateRecord() method can be invoked using the SOAP Web Services. I have discussed the use of the Update() method in the article " Updating Multiselect fields using the Web Service Interface " and it is import to…
  • Sage CRM 2024: A round up of articles about using SOAP Web Services

    I have recently presented a training session about Sage CRM's SOAP Web Services. I thought it would be useful if I created a list of articles that deal with aspects of using the SOAP web services interface. General An Introduction to using the SOAP…
  • Sage CRM 2021: An Introduction to using the SOAP Web Services

    In this article I want to consider how Sage CRM's SOAP based web services can be used to extend its features and integration with other systems. Sage CRM actually has two forms of web service in the current system. It offers both REST and SOAP Web Services…
  • Dropdown field settings in SOAP Web Services

    In Sage CRM you can control whether dropdown fields are handled as enumerators or as strings in code. This is an important setting of which to be aware when creating your code. I started a project this week and failed to realise that I had changed…
  • Finding Person Records by Email Address using SOAP web services in Sage CRM

    A customer had the requirement to be able to retrieve person records in Sage CRM using the SOAP web services based on their email address. On the face of it this looks like this may be a difficult job (but it isn't!). This is because of normalization…
  • Fetching data using the SOAP Web Services. Using queryid() & queryidnodate(), queryrecord() and query().

    A colleague asked me a very simple question. "I want to do a basic query with simple parameters e.g. in SQL: select * from opportunity where Oppo_ChannelId = 1 and Oppo_Product='TimEx5'. Do you have any sample web services code?" This is not such…
  • Embed Sage CRM PDF Reports in External Applications

    An external application can make use of Sage CRM reports. It is not appropriate to invoke HTML reports from a 3rd party or external application as these are designed to interact with the Sage CRM interface. You only need think about the auto hyperlinking…
  • Add an Additional Address to an Existing Company and Person using SOAP Web Services

    Below is some simple C# code that shows how to add a new Address to an existing company. The address is inserted and linked to the company and the default contact for that company. Notes : The webservice object is called CRMbinding. The Company…
  • About the SOAP Web Services

    In another article as in this article I would like to consider the SOAP based Web Services for Sage CRM. The SOAP based web services are very important because they are available to all currently supported versions of Sage CRM and they offer full CRUD…
  • Sage CRM 2021: Invoking Workflow from Self Service and Web Service (SOAP) Based Applications

    One of the challenges that a developer will face when working with Self Service or with an external Application using the SOAP Web Services interface is that workflow is not fully covered by the APIs. Self Service and Workflow Self Service uses the…
  • Library Record Creation - Sage 2017 R2 - SOAP /WEBSERVICES - Question

    All, Thanks for taking the time to read this. I have an issue with creating a library record via web services. AIM : Create a library Record -> Populate fields with data. Sample Code: ewarebase[] CRMBase = new ewarebase[1];//Allows reference…