Browse By Tags

  • 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, …
  • Persistent connection to Sage BOI with PHP?

    Our company is working on a locally hosted PHP web-server that connects with our local Sage 100 instance for our internal use. So far it's working pretty well, but it takes about 10 seconds to open up a session in Sage 100 with the BOI and execute a script…
  • Cannot connect to Sage50cloud with ODBC and PHP PDO

    Hi, I have recently upgraded Sage50cloud Accounts to v28.1.404.0 from an earlier v28 installation and my ODBC Connection now fails from my PHP SOAP Server using PDO. The connection worked perfectly with the previous v28 and my ODBC Connection for…
  • Base de datos de un grupo actual

    Buenas tardes. Voy a atacar a los datos de Sage 50c y me encuentro con el siguiente problema. Corregidme si me equivoco pues soy novato con Sage 50c. Con Sage 200c si lo hago sin problema alguno. Me encuentro que por grupo y ejercicio hay una base de…
  • Connect Sage 100 with customized web app

    Hello Everyone, I'm currently working on a customized web app with PHP and MySQL backend for remote field services of a company. Since the company ERP is Sage 100, has anyone ever tried connecting Sage database with such customized web app? Appreciate…
  • developing php app from example, need template for access_token.yml

    I'm new as Sage developer for accounting. I've taken sample reference from github. I'm missing file "access_token.yml", any idea how to configure this file? or where to get it from? I've API key and app credentials, which is updated in client_application…
  • Web services in other Programming Languages

    Sage CRM's documentation for SOAP web services contains examples mainly written in C#, but for people who are interested in using other programming languages, the guide also has examples of some typical SOAP messages that we can use. If you decide to…
  • Sage X3 V7 Update8 SOAP Webservice

    Hi eveybody, I want to call webservices to interact with Sage using PHP. I was not able to do it even using SoapUI this is the code that I sent: <soapenv:Envelope xmlns:xsi=" ">www.w3.org/.../XMLSchema-instance" xmlns:xsd=" ">www.w3.org/...…
  • Web services php code to add a lead fails silently

    I'd appreciate some help to identify why this php code fails silently. try { //define connection options, this allows for recording messages sent and received $options = array('trace' => 1); $client = new SoapClient(" ">cloud.eu.sagecrm.com/.../webservice…
  • Get All Companies

    Hi I have a question. How can I get lists of all companies using web-service in PHP? Should I use query function? Is there any example of using query function? Thanks Kris
  • Access violation at address 1A10D74C when trying to login using the WebService

    Hi, We have a situation where we are trying to login using the soap web service call from a PHP application. After the login request have been sent we get an Access violation at address 1A10D74C. We are still running version 7.0 d, on MS Server…
  • Update Multiselect field using PHP via SOAP

    I'm creating a PHP application that adds and updates data in CRM (version 7.1). Here is the code snippet that I'm using for updating fields: $update_data = array("personid"=>$person_id_in_crm, "interestedin"=>$product); $update_var = new SoapVar($update_data…
  • Installing / Setting Up SAGE 300 Web API

    I am new in SAGE 300. My client just upgraded to SAGE 300 2019 version. I want to deploy Web API so I can link it to our E-Procurement system that is PHP based. In summary, the E-Procurement creates Purchase Orders and captures supplier invoices. I want…
  • Beginner SAGE 100 ODBC Questions

    I have inherited a project that requires some querying to a SAGE 100 database. I would like to do this from a PHP script. I have read a number of questions/articles about connecting to SAGE 100 ODBC via PHP and it seems straightforward. However, this…
  • Sage 100c v3 PHP Tutorial

    Hello everyone, Is there anyone who would be kind enough to provide us with a tutorial to link Sage 100c (Cloud) v3 to PHP? Thank you.
  • No Such Operation 'read' or 'modify'

    Work with X3 using PHP. I am able to create a customer account but when I try to read or modify I receive a 'No Such Operation 'read'' error message The code I am using is below: $keys = array(); $keys[0] = array("key" => "BPCNUM", "value" => $sageCustomer…
  • Sage Webservices using SOAP

    Hi, Did anyone have a example of using the Sage webservices SOAP with SOAP UI or PHP for example ? I need the correct syntax (XML) for a method (read, modify, insertLines or delete..). Thanks in advance Best regards
  • Sage X3 V7 Update8 SOAP Webservice Using PHP

    Hi eveybody, I want to call webservices to interact with Sage using PHP. I have this error : Il n'y a pas de Header element [http://www.adonix.com/WSS][CAdxCallingContext] dans le message Soap. I can have the Object WSDL and the listing of methods…
  • Need to get Invoices/Contacts data from sage 100 directly in website

    Hi, I am developing website using Laravel frame work (PHP) which is invoice management system and we are giving facility to our customers to fetch Invoices/Contacts from their ERP. For sage, I have setup API based import system for Xero, Sage and Quick…
  • PHP ODBC Connection not pulling results

    I'm new to Sage and ODBC connections in general, so I'm looking for a bit of help here. I have set up a System DSN on the server, and am able to get a successful connection using PHP. However, whenever I try to run any sort of query, it doesn't pull any…
  • Web Services Configuration

    So I've installed web services, have PHP5 installed. I can query my shopping cart no problem, and can get to my web services basic wsdl url no problem. I've used the provided PHP 5 SO insert example from the Sage documentation and substituted all of…