CURT COMNET XML Portal

Size: px
Start display at page:

Download "CURT COMNET XML Portal"

Transcription

1 CURT COMNET XML Portal Overview Leveraging COM_Net2 s XML Portal provides CURT Customers with the ability to send and receive XML data using industry standard SOAP requests. The following transactions are supported: Placing a new order Order status Functions PlaceOrder Function This is the primary capability of XML Portal, which allows for the automated direct-entry of COM orders via XML. Any inputs that are available to COM_Net2 can be included in the XML Portal placeorder request. GetSummary Function The getsummary function provides all of the XML data that is returned from the COM_Net2 request for getsummaries (Order Header) when using the report=<report_name> parameter (i.e. clicking on the Report button). Each of the summary options that is available through COM_Net2 are also available as input parameters, including summarytype, fromorder, toorder, sortdescend, etc. The summarytype is a required value (can not do getsummary across multiple summarytype values) and if a value is not provided the default is Open Orders (summarytype=1). GetDetails Function The getdetails function provides all of the XML data that is returned from the COM_Net2 request for getdetails (Order Line Item Details) when using the report=<report_name> parameter (i.e. clicking on the order number from the COM_Net2 summary page). The only required input parameter other than the mode is the ordernumber. The summarytype is assumed to be for Open Orders (summarytype=1) unless specified otherwise in the request which is the only other available input. Communicating with XML Portal

2 XML Portal is designed to receive and respond with XML data using the SOAP (Simple Object Access Protocol) methodology. Each submission to XML Portal may contain one or more requests of differing types. For each request within the submission, XML Portal will return a response section. Each of the requests in the submission may also include a userid, password and environment combination, with all of these items being required in the first request within the submission. If the latter requests do not contain userid, password and environment information, the same combination included in the most previous request will remain active. The following sections outline the required and optional input parameters for each XML Portal function. These are presented in order of increasing complexity. GetDetails Inputs user=<user name> (required if first request) psswrd=<password> (required if first request) env=<environment> (required if first request) mode=getdetails (required) summarytype=<summary Type #> (optional see notes below) ordernumber=<order #> (required) GetSummary Inputs user=<user name> (required if first request) psswrd=<password> (required if first request) env=<environment> (required if first request) mode=getsummary (required) summarytype=<summary Type #> (optional see notes below) sortdescend=<y or N> (optional defaults to N) fromorder=<order #> (optional) toorder=<order #> (optional) fromdate=<date> (optional date format for user s group) todate=<date> (optional date format for user s group) frompo=<purchase order #> (optional) topo=<purchase order #> (optional) PlaceOrder Inputs user=<user name> (required if first request) psswrd=<password> (required if first request) env=<environment> (required if first request) mode=placeorder (required) cardcompany=<card company> (optional) cardnum=<card #> (optional) cardexpiremm=<expiration month> (optional) cardexpireyy=<expiration year> (optional) cardname=<name on card> (optional)

3 ponumber=<purchase order #> (optional based on user s account) carrierid=<shipping carrier> (optional defaults to setting in XMLPortal.ini) applicationtype=<1 or 2> (optional defaults to 1 for order {2 for quote}) contact=<contact name> (optional) suspend=<0 or 1> (optional defaults to 0 for false) specialinstructions=<shipping Instr.> (optional) ordercomments=<comments> (optional) acceptbackorders (optional true or false, defaults to setting in XMLPortal.ini) acceptpartialquantity (optional true or false, defaults to setting in XMLPortal.ini) shiptonumber=<ship to number> (optional) shiptoname=<ship to name> (optional) shiptoaddress1=<ship to address1> (optional) shiptoaddress2=<ship to address2> (optional) shiptoaddress3=<ship to address3> (optional) shiptoaddress4=<ship to address4> (optional) shiptoaddress5=<ship to address5> (optional) shiptocity=<ship to city> (optional) shiptostate=<ship to state> (optional) shiptozip=<ship to zip> (optional) shiptocountry=<ship to country> (optional) contactphone=<ship to phone> (optional) shipcontact=<ship to contact> (optional) The inputs acceptbackorders and acceptpartialquantity are settings that are unique to the XML Portal placeorder functionality. Because there is no interaction other than submission and response, each placeorder request has access to these settings which determine how insufficient inventory issues are handled. acceptbackorders acceptpartialquantity Result True True* All items processed disregarding the available quantity. True False* All items processed disregarding the available quantity. False True The order quantity is altered to the inventory available at the time of submission and processing continues. The

4 False False actual number of items ordered will be returned. Any item with insufficient inventory is not included in the order and skipped all together. *When the acceptbackorders flag is set to true the acceptpartialquantity flag is ignored. Ship to addresses are required only if there is an attempt to override any of the ship to fields and the user is permitted to override address in their profile. The required fields are based on these criteria as well as the address format assigned that customer. Below is a table of the required fields based on the user s address format. FIELD Address Format <>3 Address Format 3 shiptoname TRUE TRUE shiptoaddress1 TRUE TRUE shiptoaddress2 FALSE FALSE shiptoaddress3 FALSE FALSE shiptoaddress4 FALSE FALSE shiptoaddress5 FALSE FALSE shiptocity TRUE FALSE shiptostate TRUE FALSE shiptozip TRUE FALSE shiptocountry TRUE FALSE contactphone FALSE FALSE shipcontact FALSE FALSE A section under the heading Items contains the following information for each item that is included in the order request: itemnumber=<item #> (required) quantity=<quantity> (optional defaults to 1) comment=<line comment> (optional) requestdate=<date> (optional)

5 SOAP Examples GetDetails Example Input <?xml version='1.0' encoding='utf-8'?> <SOAP-ENV:Envelope xmlns:soap-env=" xmlns:xsi=" xmlns:xsd=" <SOAP-ENV:Body> <ns1:xmlportal xmlns:ns1=" SOAP-ENV:encodingStyle=" <request xmlns:ns2=" xsi:type="ns2:array" xmlns:ns3=" ns2:arraytype="ns3:map[1]"> <item xsi:type="ns3:map"> <key xsi:type="xsd:string">user</key> <value xsi:type="xsd:string">demo</value> <key xsi:type="xsd:string">psswd</key> <value xsi:type="xsd:string">demo</value> <key xsi:type="xsd:string">env</key> <value xsi:type="xsd:string">envgzen</value> <key xsi:type="xsd:string">mode</key> <value xsi:type="xsd:string">getdetails</value> <key xsi:type="xsd:string">summarytype</key> <value xsi:type="xsd:string">1</value> <key xsi:type="xsd:string">ordernumber</key> <value xsi:type="xsd:string"> </value> </request> </ns1:xmlportal> </SOAP-ENV:Body> </SOAP-ENV:Envelope>

6 GetSummary Example Input <?xml version='1.0' encoding='utf-8'?> <SOAP-ENV:Envelope xmlns:soap-env=" xmlns:xsi=" xmlns:xsd=" <SOAP-ENV:Body> <ns1:xmlportal xmlns:ns1=" SOAP-ENV:encodingStyle=" <request xmlns:ns2=" xsi:type="ns2:array" xmlns:ns3=" ns2:arraytype="ns3:map[1]"> <item xsi:type="ns3:map"> <key xsi:type="xsd:string">user</key> <value xsi:type="xsd:string">demo</value> <key xsi:type="xsd:string">psswd</key> <value xsi:type="xsd:string">demo</value> <key xsi:type="xsd:string">env</key> <value xsi:type="xsd:string">envgzen</value> <key xsi:type="xsd:string">mode</key> <value xsi:type="xsd:string">getsummary</value> <key xsi:type="xsd:string">summarytype</key> <value xsi:type="xsd:string">1</value> <key xsi:type="xsd:string">sortdescend</key> <value xsi:type="xsd:string">y</value> <key xsi:type="xsd:string">fromorder</key> <value xsi:type="xsd:string"> </value> <key xsi:type="xsd:string">toorder</key> <value xsi:type="xsd:string"> </value> </request> </ns1:xmlportal> </SOAP-ENV:Body> </SOAP-ENV:Envelope>

7 PlaceOrder Example Input <?xml version='1.0' encoding='utf-8'?> <SOAP-ENV:Envelope xmlns:soap-env=" xmlns:xsi=" xmlns:xsd=" <SOAP-ENV:Body> <ns1:xmlportal xmlns:ns1=" SOAP-ENV:encodingStyle=" <request xmlns:ns2=" xsi:type="ns2:array" xmlns:ns3=" ns2:arraytype="ns3:map[1]"> <item xsi:type="ns3:map"> <key xsi:type="xsd:string">user</key> <value xsi:type="xsd:string">demo</value> <key xsi:type="xsd:string">psswd</key> <value xsi:type="xsd:string">demo</value> <key xsi:type="xsd:string">env</key> <value xsi:type="xsd:string">envgzen</value> <key xsi:type="xsd:string">mode</key> <value xsi:type="xsd:string">placeorder</value> <key xsi:type="xsd:string">applicationtype</key> <value xsi:type="xsd:string">1</value> <key xsi:type="xsd:string">suspend</key> <value xsi:type="xsd:string">0</value> <key xsi:type="xsd:string">ponumber</key> <value xsi:type="xsd:string">123456</value> <key xsi:type="xsd:string">carrierid</key> <value xsi:type="xsd:string">airborne </value>

8 (more on next page) <key xsi:type="xsd:string">items</key> <value xsi:type="ns2:array" ns2:arraytype="ns3:map[2]"> <item xsi:type="ns3:map"> <key xsi:type="xsd:string">itemnumber</key> <value xsi:type="xsd:string">abc</value> <key xsi:type="xsd:string">quantity</key> <value xsi:type="xsd:string">3</value> <key xsi:type="xsd:string">requestdate</key> <value xsi:type="xsd:string">08/15/2002</value> <item xsi:type="ns3:map"> <key xsi:type="xsd:string">itemnumber</key> <value xsi:type="xsd:string">911</value> <key xsi:type="xsd:string">quantity</key> <value xsi:type="xsd:string">9</value> <key xsi:type="xsd:string">comments</key> <value xsi:type="xsd:string">911 comments</value> <key xsi:type="xsd:string">acceptbackorders</key> <value xsi:type="xsd:string">false</value> <key xsi:type="xsd:string">acceptpartialquantity</key> <value xsi:type="xsd:string">true</value> </value> </request> </ns1:xmlportal> </SOAP-ENV:Body> </SOAP-ENV:Envelope>

9 Understanding XML Portal Response Data For each request included in an XML Portal submission, COM_Net2 will provide the appropriate response data or error information detailing why the request was unsuccessful. When multiple requests are embedded in a single submission, the response data will be in the same order as the requests were included in the input data. For each XML Portal function, a corresponding.xml file is included to filter the data that is returned in the response. These files are located in the COM_Net2 directory, with the naming convention XMLPortal-<function name>.xml where <function name> is either getsummary, getdetails or placeorder. These files are specially formatted xml data files that control what information is returned for each of the different request types. Detailing Response Data This section includes details about important data fields for each of the XML Portal functions and are also the fields included in the distributed XMLPortal-<function name>.xml files. GetDetails Response Data The getdetails request contains relevant information in several locations of the response data. Information related to the order resides in the OutputParm section, item specific information can be found in the Records/LineItems/htRecordx section where x is the line item indicator and shipping information can be found within Records/Shipments/htRecordx where x is the shipment identifier. Some of the relevant fields used by COM_Net2 directly are documented below: OutputParm Section shiptoaddressx ordertotal currencydescription ponumber shipinstructions specialinstructions Various lines of the shipto address. Also see shiptoname, shiptocity, shiptostate, shiptozip and shiptocountry. The total amount of this order. Currency identifier for all values in this response. Purchase order number for this order. Shipping instructions for this order. Order comments for this order. Records/LineItems/htRecordx Section itemnumber Product item number. description linespecialinstruct requestdate Product description. Line item comments. Request date for this line item.

10 promisedate quantity quantityship quantitybo price extendedprice Promise date for this line item. Quantity ordered for this line item. Current shipped quantity for this line item. Current back ordered quantity for this line item. Line item price. Total price for line item ((quantity * price) any manual discout) Records/Shipments/htRecordx Section shipmentnumber Shipment identifier. probillno trackingurl1 shipdate Tracking number. URL containing tracking information. Ship date for this shipment line item. shipstatus Ship status for this shipment line item. GetSummary Response Data The getsummary request contains relevant information primarily in the Records/htRecordx section where x is the line item indicator with the currencydescription for all values located in the OutputParm section. All of the fields used by COM_Net2 directly are documented below: OutputParm Section currencydescription Records/htRecordx Section ordernumber ponumber enterdate contact ordertotal orderstatus Currency identifier for all values in this response. Order number identifier. Purchase order number for this order. Date this order was entered. Contact name for this order. Order total. This order s current status (only available on open and back orders). PlaceOrder Response Data The placeorder request returns the ordernumber and currencydescription in the OutputParm section and all other data in the Records/htRecordx section where x is the line item indicator. All of the fields used by COM_Net2 directly are documented below:

11 OutputParm Section ordernumber currencydescription Records/htRecordx Section pdb.itemno pdbkey display.unitofmesaure display.description itemcomments requestdate quantity display.price display.extprice Order number assigned by COM_Net2 to this order. Currency identifier for all values in this response. This is the item number as stored in the Product database. The item number returned from Mapics for this item. (This could be pdb.itemno or pdb.orditmno) The COM_Net2 configured unit of measure for this item. The COM_Net2 configured description for this item. This item s comments. This item s request date. Order quantity for this item. The COM_Net2 configured price for this item. The extended price for this line item.

12 Full Sample Result Data The following samples are shown in standard XML format for ease of viewing and include ALL of the fields available via the XML Portal (not just the fields which are included in the distributed XMLPortal-<function name>.xml files). Several lengthy blank fields were truncated for display purposes. GetDetails Sample Full Output <getdetails> <InputParm> <user>demo</user> <env>envgzen</env> <mode>getdetails</mode> <summarytype>2</summarytype> <ordernumber> </ordernumber> </InputParm> <OutputParm> <shiptoaddress>hughston Clinic 1000 E. 133rd Street Suite 100 Columbus GA United States of America</shipToAddress> <user.shiptoaddress4 /> <orderstatus>complete</orderstatus> <user.shiptoaddress3 /> <user.shiptoaddress2>suite 100</user.shipToAddress2> <messagenumber> </messagenumber> <user.shiptoaddress1>1000 E. 133rd Street</user.shipToAddress1> <user.shipvia2>airborne</user.shipvia2> <printshipto>hughston Clinic 1000 E. 133rd Street Suite 100 Columbus GA United States of America</printShipTo> <user.shiptocountry>usa</user.shiptocountry> <specialinstructions /> <expectdate> </expectdate> <shiptonumber> </shiptonumber> <boqty>0</boqty> <contact /> <description /> <user.shipvia>best way</user.shipvia> <user.taxsuffix /> <ordernumber> </ordernumber> <userline /> <ponumber>eee</ponumber> <user.specialinstructions /> <cardnumber /> <shipdate> </shipDate> <user.shiptoname>hughston Clinic</user.shipToName> <shiptostate>ga</shiptostate> <lastkeydt /> <cardname /> <shipinstructions>best way</shipinstructions> <user.shiptozip>30025</user.shiptozip> <enterdate> </enterdate> <user.shiptocity>columbus</user.shiptocity> <taxsuffix />

13 <invoicenumber /> <user.contactphone /> <requestdate> </requestdate> <user.contact /> <diagnostictext /> (more on next page)

14 <user.shiptostate>ga</user.shiptostate> <rc> </rc> <contactphone /> <shiptoaddress5 /> <shiptoname>hughston Clinic</shipToName> <shiptoaddress4 /> <lastkeyshp>end OF FILE</lastKeySHP> <shiptoaddress3 /> <errorelementinopt> </errorelementinopt> <shiptoaddress2>suite 100</shipToAddress2> <shiptoaddress1>1000 E. 133rd Street</shipToAddress1> <itemnumber /> <user.ponumber>eee</user.ponumber> <cardexpireyy /> <shiptocity>columbus</shiptocity> <ordertotal> </ordertotal> <cardexpiremm /> <shiptozip>30025</shiptozip> <trackingurl1 /> <shiptocountry>usa</shiptocountry> <waybill /> <cardcompany /> <shipcarrierid>airborne</shipcarrierid> <user.shiptoaddress5 /> </OutputParm> <Records> <LineItems> <Record> <quantityship>1.000</quantityship> <itemnumber>abc</itemnumber> <configureproduct /> <currency /> <linestatus /> <linespecialinstruct /> <pdbkey /> <hostlinenumber>100</hostlinenumber> <quantity>1.000</quantity> <quantitybo /> <unitofmeasure>ea</unitofmeasure> <notes /> <extendedprice> </extendedprice> <productsummary /> <snumber /> <price> </price> <requestdate> </requestdate> <description>abc PART</description> <promisedate> </promisedate> <orderwarehouse>1</orderwarehouse> <manufacturer /> <restockdate> </restockdate> </Record> </LineItems> <Shipments> <Record> <unitofmeasure>lb</unitofmeasure> <backordereditems>0</backordereditems> <userfieldswitcha /> <userfieldcodec /> <userfieldcodeb /> <userfieldcodea /> (more on next page)

15 <picklistnumber> </picklistnumber> <shipmentnumber> </shipmentnumber> <shipdeliverydate> </shipdeliverydate> <packinglistno> </packinglistno> <probillno /> <shipmentid> </shipmentid> <shipleadtime>01</shipleadtime> <shiptime>102916</shiptime> <userfielddate2> </userfielddate2> <userfielddate1> </userfielddate1> <shiptotype /> <weightqualifier /> <shipdate> </shipdate> <shiptostate>ga</shiptostate> <shipinstructions>best way</shipinstructions> <taxsuffix>notax</taxsuffix> <invoicenumber>000150</invoicenumber> <warehouse>1</warehouse> <truckno /> <shipstatus>50</shipstatus> <warehousedescription>main PLANT (NBR 1)</warehouseDescription> <shiptoaddress5 /> <shiptoaddress4 /> <shiptoname>hughston Clinic</shipToName> <userfieldtext /> <shiptoaddress3 /> <invoicesequence> </invoicesequence> <shiptoaddress2>suite 100</shipToAddress2> <shiptoaddress1>1000 E. 133rd Street</shipToAddress1> <trailerno /> <shipmentheadernumber> </shipmentheadernumber> <shiptocity>columbus</shiptocity> <shipweightoverride>0.0</shipweightoverride> <shiptozip>30025</shiptozip> <trackingurl1 /> <shiptocountry>united States of America</shipToCountry> <shipweight>5.0</shipweight> <billofladingno> </billofladingno> <shipcarrierid>airborne</shipcarrierid> </Record> </Shipments> </Records> </getdetails>

16 GetSummary Example Full Output <getsummary> <InputParm> <toorder> </toorder> <user>demo</user> <env>envgzen</env> <mode>getsummary</mode> <sortdescend>n</sortdescend> <fromorder> </fromorder> <summarytype>1</summarytype> </InputParm> <OutputParm> <lastkeysm>end OF FILE</lastKeySM> <currencydescription>us DOLLARS</currencyDescription> <diagnostictext> </diagnostictext> <messagenumber> </messagenumber> <rc> </rc> <errorelementinopt> </errorelementinopt> </OutputParm> <Records> <htrecord0> <ordernumber> </ordernumber> <orderstatus>open</orderstatus> <trackingurl1 /> <ordertotal> </ordertotal> <enterdate> </enterdate> <boqty>0</boqty> <ponumber>123456</ponumber> <contact>cmn-</contact> <invoicenumber> </invoicenumber> <itemnumber /> <shipdate> </shipdate> <waybill /> <description /> <expectdate> </expectdate> </htrecord0> <htrecord1> <ordernumber> </ordernumber> <orderstatus>open</orderstatus> <trackingurl1 /> <ordertotal> </ordertotal> <enterdate> </enterdate> <boqty>0</boqty> <ponumber>1111</ponumber> <contact>cmn-</contact> <invoicenumber> </invoicenumber> <itemnumber /> <shipdate> </shipdate> <waybill /> <description /> <expectdate> </expectdate> </htrecord1> </Records> </getsummary>

17 PlaceOrder Sample Full Output <placeorder> <InputParm> <carrierid>airborne </carrierid> <user>demo</user> <applicationtype>1</applicationtype> <mode>placeorder</mode> <suspend>0</suspend> <ponumber>123456</ponumber> <env>envgzen</env> <acceptbackorders>false</acceptbackorders> <acceptpartialquantity>true</acceptpartialquantity> </InputParm> <OutputParm> <ordernumber> </ordernumber> <currencydescription>us DOLLARS </currencydescription> </OutputParm> <Records> <htrecord0> <display.price> </display.price> <alternatestocknum> </alternatestocknum> <orderwarehousealt> </orderwarehousealt> <pdb.keywords></pdb.keywords> <pdb.lastupdt>2002/04/22 16:21:23</pdb.lastupdt> <descriptionalt> </descriptionalt> <productimageurl> </productimageurl> <unitofmeasure>ea </unitofmeasure> <itemnumberalt> </itemnumberalt> <pdb.cattext>this year's custom glasses provide 100% UV protection as well as improved wind blocking for downhill riding.</pdb.cattext> <requestdate> </requestdate> <pdb.addinfourl></pdb.addinfourl> <messagenumber> UPS </messageNumber> <productspecurl> </productspecurl> <configurableproductflag>n</configurableproductflag> <pdbkey>gl10 </pdbkey> <pdb.picparturl></pdb.picparturl> <pdb.itemno>gl10</pdb.itemno> <pdb.defaultqty>1</pdb.defaultqty> <description>bicycle GLASSES </description> <pdbkeyalt> </pdbkeyalt> <quantity>10</quantity> <restockdatealt> </restockdatealt> <configurableproductflagalt> </configurableproductflagalt> <productspecurlalt> </productspecurlalt> <price> </price> <substitutealt> </substitutealt> <inventoryavailablealt> </inventoryavailablealt> <diagnostictext> </diagnostictext> <notes> </notes> <rc> </rc> <inventoryavailable> </inventoryavailable> <itemnumber>gl10 </itemnumber> <multipleunitsflag> </multipleunitsflag> <display.description>bicycle Glasses NEW</display.description> (more on next page)

18 <requestdatealt> </requestdatealt> <pdb.price>99.99</pdb.price> <unitofmeasurealt> </unitofmeasurealt> <gstflag> </gstflag> <substitute>0</substitute> <gstflagalt> </gstflagalt> <display.image>\gl-10.jpg</display.image> <productimageurlalt> </productimageurlalt> <netpricealt> </netpricealt> <errorelementinopt> </errorelementinopt> <pdb.lastupu>lexeladmin</pdb.lastupu> <marketing> </marketing> <manufactureralt> </manufactureralt> <advprodconfurl> </advprodconfurl> <restockdate> </restockdate> <notesalt> </notesalt> <orderwarehouse>1 </orderwarehouse> <pdb.itemum></pdb.itemum> <multipleunitsflagalt> </multipleunitsflagalt> <commissionlevel> </commissionlevel> <commissionlevelalt> </commissionlevelalt> <typeitem>4</typeitem> <pdb.canorder>1</pdb.canorder> <pdb.extprice>999.9</pdb.extprice> <extpricealt> </extpricealt> <display.unitofmeasure></display.unitofmeasure> <pdb.itmpicurl>\gl-10.jpg</pdb.itmpicurl> <currency> </currency> <marketingalt> </marketingalt> <currencyalt> </currencyalt> <customeritemnumberflagalt> </customeritemnumberflagalt> <pdb.itmdesc>bicycle Glasses NEW</pdb.itmDesc> <extprice> </extprice> <pdb.thumburl>\gl-10.jpg</pdb.thumburl> <display.extprice> </display.extprice> <manufacture> </manufacture> <customeritemnumberflag> </customeritemnumberflag> <pdb.orditmno><pdb.orditmno> </htrecord0> </Records> </placeorder>

D&H U.S. Customer XML Integration DH.IS.WEB.XML.1 June 5, 2017

D&H U.S. Customer XML Integration DH.IS.WEB.XML.1 June 5, 2017 D&H U.S. Customer XML Integration A reference detailing the intended methods for customer XML integrations with D&H. The contents of this manual are intended for the use of U.S. D&H customers only. This

More information

Objective: Review how to use access the Bulkvs.com Origination and 911 SOAP API using SOAP UI

Objective: Review how to use access the Bulkvs.com Origination and 911 SOAP API using SOAP UI Objective: Review how to use access the Bulkvs.com Origination and 911 SOAP API using SOAP UI Perquisites: 1. Have access to your bulkvs.com API ID 2. Have an MD5 equivalent of your bllkvs.com password

More information

City/Zip Lookup Web Service Implementation Guide Version 1.00

City/Zip Lookup Web Service Implementation Guide Version 1.00 City/Zip Lookup Web Service Implementation Guide Version 1.00 Revised: 10/04/2016 SECTION 1 - NARRATIVE... 1 SECTION 2 - INPUT PARAMETERS... 2 SECTION 3 - OUTPUT PARAMETERS... 3 SECTION 4 - SOAP XML EXAMPLES...

More information

Introduction to the Cisco ANM Web Services API

Introduction to the Cisco ANM Web Services API 1 CHAPTER This chapter describes the Cisco ANM Web Services application programming interface (API), which provides a programmable interface for system developers to integrate with customized or third-party

More information

SOAP Introduction Tutorial

SOAP Introduction Tutorial SOAP Introduction Tutorial Herry Hamidjaja herryh@acm.org 1 Agenda Introduction What is SOAP? Why SOAP? SOAP Protocol Anatomy of SOAP Protocol SOAP description in term of Postal Service Helloworld Example

More information

SWCS 4.2 Import Utility User s Guide Revision /16/2012 Solatech, Inc.

SWCS 4.2 Import Utility User s Guide Revision /16/2012 Solatech, Inc. SWCS 4.2 Import Utility User s Guide Revision 22 12/16/2012 Solatech, Inc. Contents Introduction... 3 Installation... 3 Running the Import Utility... 3 Using the Import Utility... 3 Converting QuickBooks

More information

Asynchronous Multi- Order Processing (AMoP)

Asynchronous Multi- Order Processing (AMoP) Asynchronous Multi- Order Processing (AMoP) OVERVIEW allows you to receive and process large numbers of orders via FTPS rather than processing orders online. You can download the order file from AbeBooks,

More information

Intermatic, Inc. Partner Portal User Guide

Intermatic, Inc. Partner Portal User Guide Intermatic, Inc. Partner Portal User Guide Index Introduction.......................... 2 Requesting Access.................... 3 Updating Profile....................... 8 Order Status.........................

More information

Networks and Services (NETW-903)

Networks and Services (NETW-903) Networks and Services (NETW-903) Dr. Mohamed Abdelwahab Saleh IET-Networks, GUC Fall 2018 Table of Contents 1 XML Namespaces 2 XML Schema 3 The SOAP Protocol and RPC 4 SOAP Messages Name Conflicts A name

More information

Why SOAP? Why SOAP? Web Services integration platform

Why SOAP? Why SOAP? Web Services integration platform SOAP Why SOAP? Distributed computing is here to stay Computation through communication Resource heterogeneity Application integration Common language for data exchange Why SOAP? Why SOAP? Web Services

More information

Marketing Portal User s Guide. Buy A List Orders

Marketing Portal User s Guide. Buy A List Orders Marketing Portal User s Guide Buy A List Orders page 1 Marketing Portal User s Guide 1. Welcome to AdVestors Marketing Portal User s Guide! Please enter: hvamarketing.com into your browser s URL address

More information

Data Transport. Publisher's Note

Data Transport. Publisher's Note Data Transport Publisher's Note This document should be considered a draft until the message formats have been tested using the latest release of the Apache Foundation's SOAP code. When those tests are

More information

Real-Time Inquiry Connectivity Specifications

Real-Time Inquiry Connectivity Specifications Real-Time Inquiry Connectivity Specifications Highmark, Inc. 2008 Contents 1. Real-Time Overview 2. Requirements 3. SOAP Messages 4. SOAP Faults 5. Highmark EDI WebServices Certificate 1. Overview Real-time

More information

City of Aurora. Development Review Plans Submission and Referral Website. Public and Agency Referral Instruction Guide

City of Aurora. Development Review Plans Submission and Referral Website. Public and Agency Referral Instruction Guide City of Aurora Development Review Plans Submission and Referral Website Public and Agency Referral Instruction Guide Table of Contents Introduction... 3 Project Search (Public only)... 4 Project Search

More information

Table of Contents Account Registration... 2 Extended Registration... 3 Password Reset... 4 Updating Profile Information...

Table of Contents Account Registration... 2 Extended Registration... 3 Password Reset... 4 Updating Profile Information... MYHU R R H Quick information on capitalizing the capabilities of MyHubbell.com with Hubbell Power Systems, Chance Civil Construction and Hubbell Lenoir City INTRO TO MYHUBBELL MyHubbell is our customer

More information

The contents of this publication the specifications of this application are subject to change without notice.

The contents of this publication the specifications of this application are subject to change without notice. V.1.0. Publication Notice The contents of this publication the specifications of this application are subject to change without notice. GFI Software reserves the right to make changes without notice to

More information

Outline. Internet Services Introduction. The Promise. Web Service Overview

Outline. Internet Services Introduction. The Promise. Web Service Overview Outline Internet Services Introduction Introduction What are web services The vision The nay sayers Example using Google s web service 1 2 Web Service Overview The Promise Definition: A set of representations

More information

ECT Business Interface System Instructions

ECT Business Interface System Instructions 1.) STARTING SCREEN From this Screen select Customer Interface System to access Souriau s new web based customer interface. Souriau.com Links to Souriau s Corporate web site. Other Options: News Will keep

More information

Real-Time Claim Adjudication and Estimation Connectivity Specifications

Real-Time Claim Adjudication and Estimation Connectivity Specifications Real-Time Claim Adjudication and Estimation Connectivity Specifications Mountain State Blue Cross Blue Shield June 18, 2009 Contents 1. Real-Time Overview 2. Connectivity Requirements 3. SOAP Request Message

More information

Network-centric Middleware for Service Oriented Architectures across Heterogeneous Embedded Systems

Network-centric Middleware for Service Oriented Architectures across Heterogeneous Embedded Systems Network-centric Middleware for Service Oriented Architectures across Andreas Wolff, Jens Schmutzler, Andreas.Wolff@uni-dortmund.de IEEE International EDOC conference, Workshop on Middleware for Web-Services,

More information

Coreflex Inventory Systems. Standard Order Export Item - Transaction Release Coreflex Inc.

Coreflex Inventory Systems. Standard Order Export Item - Transaction Release Coreflex Inc. Coreflex Inventory Systems Standard Order Export Item - Transaction Release 3.0.0 Dated May 12, 2011 Revised August 8, 2011 Revision 3 Coreflex Inc. A-130 North Drive, Oaks, PA 19456 Phone: 610 757 1100,

More information

User Documentation. t-commerce User s Guide

User Documentation. t-commerce User s Guide User Documentation t-commerce User s Guide TRIBUTE INC. USER DOCUMENTATION t-commerce User s Guide Copyright Notice and Trademarks 2000-2007 Tribute, Inc. All rights reserved t-commerce is a registered

More information

TRAINING GUIDE - REGISTERED SUPPLIER GUIDE Lamprell Energy Limited Procurement and Supply Chain. Version: 1.0

TRAINING GUIDE - REGISTERED SUPPLIER GUIDE Lamprell Energy Limited Procurement and Supply Chain. Version: 1.0 TRAINING GUIDE - REGISTERED SUPPLIER GUIDE Lamprell Energy Limited Procurement and Supply Chain Version: 1.0 Table of Contents Introduction... 3 Login... 3 Login Assistance... 3 Homepage... 4 Sourcing...

More information

JD Edwards World. User Defined Data for Distribution Guide Release A9.3 E

JD Edwards World. User Defined Data for Distribution Guide Release A9.3 E JD Edwards World User Defined Data for Distribution Guide Release A9.3 E21563-03 April 2013 JD Edwards World User Defined Data for Distribution Guide, Release A9.3 E21563-03 Copyright 2013, Oracle and/or

More information

SOAP API. The correct URL has been hidden. Please contact your account manager for the full URL information.

SOAP API. The correct URL has been hidden. Please contact your account manager for the full URL information. SMS Help Guides TNZ Group Limited sales@tnz.co.nz +64 9 9293000 +64 9 522 8839 SOAP API SOAP is a simple way of sending SMS/TXT messages via the internet. It is a great solution for integration into existing

More information

Preliminary. Document Transforms Service Protocol Specification

Preliminary. Document Transforms Service Protocol Specification [MS-DOCTRANS]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Mosaico E-Business - User Guide

Mosaico E-Business - User Guide Mosaico E-Business - User Guide Contents 1. Log In... 2 1.1. Modifying the on-line password... 4 2. APP Product Configurator... 6 2.1. On-line Help functions... 10 2.2. Download Technical Drawing function...

More information

Data Import Guide DBA Software Inc.

Data Import Guide DBA Software Inc. Contents 3 Table of Contents 1 Introduction 4 2 Data Import Instructions 5 3 Data Import - Customers 10 4 Data Import - Customer Contacts 16 5 Data Import - Delivery Addresses 19 6 Data Import - Suppliers

More information

Signing on to Smartstream

Signing on to Smartstream Signing on to Smartstream To access Smartstream: Open the Internet Explorer homepage. Click on Staff Applications Under Staff Applications, scroll to the "Smartstream" option. Click on that option. 1 Signing

More information

Web Services Hope or Hype? Richard P. Martin Rutgers University

Web Services Hope or Hype? Richard P. Martin Rutgers University Web Services Hope or Hype? Richard P. Martin Rutgers University 1 Outline Introduction Promise and vision Description and example Our Experiences Security Future Directions 2 Web Service Overview Definition:

More information

!!!!! Westcon!Web!Services! Developer s!guide!!sap!order!status! Revision History Document Version. Publication Date 1.0 5/20/2015 Chakravarthy Sayani

!!!!! Westcon!Web!Services! Developer s!guide!!sap!order!status! Revision History Document Version. Publication Date 1.0 5/20/2015 Chakravarthy Sayani !!!!! Westcon!Web!Services! Developer s!guide!!sap!order!status! Revision History Document Version Publication Date Author 1.0 5/20/2015 Chakravarthy Sayani Record Description First Draft Page 1 of 17

More information

TATWEER PETROLEUM BAHRAIN FIELD DEVELOPMENT COMPANY W.L.L ( TATWEER ) Instructions to complete a Commercial Evaluation RFQ - Quick Reference

TATWEER PETROLEUM BAHRAIN FIELD DEVELOPMENT COMPANY W.L.L ( TATWEER ) Instructions to complete a Commercial Evaluation RFQ - Quick Reference IMPORTANT: TATWEER PETROLEUM BAHRAIN FIELD DEVELOPMENT COMPANY W.L.L ( TATWEER ) Instructions to complete a Commercial Evaluation RFQ - Quick Reference Please note that isupplier Portal registration, access

More information

Distributed Internet Applications - DIA. Web Services XML-RPC and SOAP

Distributed Internet Applications - DIA. Web Services XML-RPC and SOAP Distributed Internet Applications - DIA Web Services XML-RPC and SOAP Introduction A few years ago, most application were: non-distributed, running in an almost homogeneous environment developed with a

More information

Microsoft Dynamics GP. This paper provides guidance for ISV products that integrate with Inventory transaction posting.

Microsoft Dynamics GP. This paper provides guidance for ISV products that integrate with Inventory transaction posting. INTEGRATE Microsoft Dynamics GP Integrating with the Historical Inventory Trial Balance White Paper This paper provides guidance for ISV products that integrate with Inventory transaction posting. Date:

More information

ECE450H1S Software Engineering II Tutorial I Web Services

ECE450H1S Software Engineering II Tutorial I Web Services Tutorial I Web Services 1. What is a Web Service? 2. An example Web Service 3. OmniEditor: Wrapping a text editor into a WS 4. OmniGraphEditor: supporting a graphic editor References Gustavo Alonso, Fabio

More information

New Dealer Portal DOOBIZ Training Parts Sales 07/25/11

New Dealer Portal DOOBIZ Training Parts Sales 07/25/11 New Dealer Portal DOOBIZ Training Parts Sales 07/25/11 The DOOBIZ Dealer Portal As Doosan strives to achieve its status as a top level global leader in the construction equipment industry, it is making

More information

SPARROW Gateway. Developer API. Version (Build 7373)

SPARROW Gateway. Developer API. Version (Build 7373) SPARROW Gateway Developer API Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2016 02 26 2.0 Initial document created Alexandra Blinova 2 Table of Contents

More information

Client Access and Log In... CUSTOMER CENTER: Overview... 3 Home Links Quick Search... 5 Settings... 5

Client Access and Log In... CUSTOMER CENTER: Overview... 3 Home Links Quick Search... 5 Settings... 5 Table of Contents WWW.LABELKINGS.COM Client Access and Log In....... Page 2 CUSTOMER CENTER: Overview.... 3 Home Links... 4 Billing, Orders, Support Quick Search...... 5 Settings.... 5 ENTERING NEW ORDERS......

More information

I Supplier Portal Supplier User Guide King Faisal Specialist Hospital & Research Centre. Sourcing Supplier User Guide KFSH&RC 1

I Supplier Portal Supplier User Guide King Faisal Specialist Hospital & Research Centre. Sourcing Supplier User Guide KFSH&RC 1 I Supplier Portal Supplier User Guide King Faisal Specialist Hospital & Research Centre KFSH&RC 1 Submitting Quote Supplier can submit his quote online through the system KFSH&RC 2 For acknowledge Negotiation

More information

Warranty, Parts and Sales Data Entry System Operations Manual

Warranty, Parts and Sales Data Entry System Operations Manual Winnebago Industries Warranty, Parts and Sales Data Entry System Operations Manual Winnebago Industries Part Number 701674-51-000 Revised 10-02 TABLE OF CONTENTS TOPIC PAGE # SECTION A - General Information

More information

Seller & Seller Administrator Manual

Seller & Seller Administrator Manual Seller & Seller Administrator Manual BuySpeed Online 8.2 1 BSO Seller Manual Copyright 2009 Periscope Holdings, Inc. All rights reserved. Information in this document is subject to change without notice.

More information

CKO2 - XML Protocols. CKO2 outputs - A2A general description. NBB - IT Department. IT Applications - PRSM. Date: 12/05/2011. Document version: V0.

CKO2 - XML Protocols. CKO2 outputs - A2A general description. NBB - IT Department. IT Applications - PRSM. Date: 12/05/2011. Document version: V0. CKO2 outputs - A2A general description Author: Service: NBB - IT Department IT Applications - PRSM Date: 12/05/2011 Document version: V0.4 Table of Contents 1. Introduction 3 1.1 Document history 3 1.2

More information

Memphis Light Gas and Water Division s isupplier User Guide

Memphis Light Gas and Water Division s isupplier User Guide Scope: Memphis Light Gas and Water Division s isupplier User Guide In order to conduct business with Memphis Light Gas and Water Division, a user guide has been developed to outline steps for suppliers

More information

ASP Vendor received RFx and create a RFx Response for FPP and DPP

ASP Vendor received RFx and create a RFx Response for FPP and DPP QUICK GUIDE 1 (5) ASP Vendor received RFx and create a RFx Response for FPP and DPP This quick guide is used when vendor (ASP) received an RFx and submits RFx Response for FPP (Fixed Price Package) items.

More information

South Dakota Board of Regents Human Resources/Finance Information Systems. Fastenal Punchout Training Guide Version Number 2.

South Dakota Board of Regents Human Resources/Finance Information Systems. Fastenal Punchout Training Guide Version Number 2. South Dakota Board of Regents Human Resources/Finance Information Systems Version Number 2.0 Date: 2/4/2015 Table of Contents Purchasing Page Introduction 2 Overview 2 Intended Audience 2 Documentation

More information

Internet Data Exchange - General Navigation - View and Confirm Purchase Orders and Scheduling Agreements

Internet Data Exchange - General Navigation - View and Confirm Purchase Orders and Scheduling Agreements Internet Data Exchange - General Navigation - View and Confirm Purchase Orders and Scheduling Agreements Table of Contents Page 3 What is Internet Data Exchange (IDE) Page 4 - Benefits / Access Page 5

More information

Search. Google Search. Google SOAP Search CHAPTER 19.

Search. Google Search. Google SOAP Search CHAPTER 19. 1 CHAPTER 19 Search This chapter shows how to use the Google, Yahoo, and live.com search APIs, as well as configuring searchable websites for access as search plugin in Firefox 2.0 or IE 7 using OpenSearch.

More information

esupplier Connection

esupplier Connection esupplier Connection Manual Supply Management October 2016 Rev. 04 1 Table of Contents I. esupplier Connection Overview... 3 II. Work Instructions... 3 A. Getting Started... 3 1. Log In... 3 B. Navigating

More information

Section I Agent Network

Section I Agent Network Section I Agent Network Revised Section I, Page 1 I. AGENT NETWORK Page 3 TOOLS> Agent Page 3 iseries Page 4 NVL Available Tonnage Page 5 NFC Available Tonnae Page 6 B/L Inquiry Page 16 Order for Service

More information

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS RESOLV EDI CONTROL User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS Copyright 2011-2016 by Achieve IT Solutions These materials are subject to change without notice. These materials are

More information

Requisition Entry Guide. Direct questions to Procurement & Contract Services, x5134

Requisition Entry Guide. Direct questions to Procurement & Contract Services, x5134 Requisition Entry Guide Direct questions to Procurement & Contract Services, x5134 Requisition Entry Guide Refer to Log into PeopleSoft Financials guide for login instructions. Once logged in, click on

More information

How to Create a Blanket Order

How to Create a Blanket Order How to Create a Blanket Order Description: This form consists of a main window and eight additional windows, which you use to enter information to create or modify (in-process), blanket orders. You must

More information

CONTENTS. How do I... Supplier Self Service (SUS) Portal User Guide

CONTENTS. How do I... Supplier Self Service (SUS) Portal User Guide Supplier Self Service (SUS) Portal User Guide CONTENTS Page Title 1 Access the Supplier Self Service (SUS) Portal 2 View My Purchase Orders 6 Check whether goods have been receipted by JLR 8 Use the Find

More information

New BoundTree.com User Guide Fall Version 6

New BoundTree.com User Guide Fall Version 6 New BoundTree.com User Guide Fall 2016 Version 6 Table of Contents Overview Navigating the Home Page Creating an Account Logging into an Existing Account Forgot Your Password? Reviewing Your Account Editing

More information

Welcome to the Vale Vendor Portal Guide

Welcome to the Vale Vendor Portal Guide Welcome to the Vale Vendor Portal Guide 1. Introductory 1.1 How to access? 1.2 Presenting the Portal 2. Onboarding Process 3. Negotiate Module 4. Purchase Module 5. Payment Module 1. Introductory Main

More information

R98306 SNC-Lavalin ProFac Inc. 5/22/ :58: Override Next Status. 7. Override Transaction Unit of Measure

R98306 SNC-Lavalin ProFac Inc. 5/22/ :58: Override Next Status. 7. Override Transaction Unit of Measure Title 1 Defaults 1. Order Type (Required) SO 2. Line Type 3. Beginning Status 520 4. Override Next Status 5. Line Number Increment 0 6. Reason Code 7. Override Transaction Unit of Measure 8. Default Transaction

More information

DEA Licensing WDNSW DC P21 DEA LICENSING

DEA Licensing WDNSW DC P21 DEA LICENSING DEA Licensing WDNSW DC P21 DEA LICENSING This manual contains information about software products from Epicor Software Corporation. The software described in this manual and the manual itself are furnished

More information

Scholastic Oracle Cloud Supplier Portal User Guide

Scholastic Oracle Cloud Supplier Portal User Guide Scholastic Oracle Cloud Supplier Portal User Guide Table of Contents Introduction to the Supplier Portal... 3 What is the Supplier Portal?... 3 Navigating the Supplier portal... 3 Logging in... 3 Homepage

More information

GEDI (Graco Extranet for Distributor Information) Order File Transfer Conduct Your Graco Business Online at in GEDI

GEDI (Graco Extranet for Distributor Information) Order File Transfer Conduct Your Graco Business Online at  in GEDI GEDI (Graco Extranet for Distributor Information) Order File Transfer Conduct Your Graco Business Online at www.graco.com in GEDI AUTOMATICALLY UPLOAD YOUR GEDI Orders! Fast, Easy, & Simple! Attach your

More information

Conveyorware API User Guide Application Program Interface

Conveyorware API User Guide Application Program Interface Conveyorware Business distribution software Conveyorware API User Guide Application Program Interface RESTful (Representational state transfer) API to submit orders, submit new inventory items, submit

More information

EDI PROCESSING INTERFACE MODULE... 1

EDI PROCESSING INTERFACE MODULE... 1 Table of Contents... 1 EDI PROCESSING OVERVIEW... 3 TRANSACTIONS PROCESSED:... 3 PRODUCT REQUIREMENTS:... 3 CUSTOMER TRANSACTION FLOW:... 3 VENDOR TRANSACTION FLOW... 4 SETUP PROCEDURE... 5 TRANSFER PROCEDURE...

More information

Your leads. Your way. Lead delivery options for BuyerZone clients and partners.

Your leads. Your way. Lead delivery options for BuyerZone clients and partners. Your leads. Your way. Lead delivery options for BuyerZone clients and partners. Lead delivery from BuyerZone We know how important quality and timely leads are for your business. That s why we offer a

More information

MP2 Label Designer Guide

MP2 Label Designer Guide MP2 Label Designer Guide Complete the following steps to print labels using the MP2 software package. Use your favorite Label Design software to design your labels. Products like Label Matrix, Bartender,

More information

How to Import Part Numbers to Proman

How to Import Part Numbers to Proman How to Import Part Numbers to Proman This is a brief document that outlines how to take an Excel spreadsheet and either load new parts numbers into Proman or update data on existing part numbers. Before

More information

Quick Setup Guide BY: AEXXIS LLC

Quick Setup Guide BY: AEXXIS LLC Quick Setup Guide BY: AEXXIS LLC The following is a quick setup guide for OrangeCRM. It is intended as a basic outline of a simple OrangeCRM setup. It may not cover every detail of your specific setup.

More information

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of MageMob Admin... 1 Installation & Activation... 2 Pre-requisite... 2 Installation Steps... 2 Installation via Composer... 4 Extension Activation...

More information

People. Processes. Integrating Globally.

People. Processes. Integrating Globally. People. Processes. Integrating Globally. Course: isupplier for Suppliers Table of Contents Table of Contents Course Introduction...4 L1: Vendor Registration... 6 Register for isupplier using SteelTrack

More information

Scholastic Oracle Cloud Supplier Portal User Guide

Scholastic Oracle Cloud Supplier Portal User Guide Scholastic Oracle Cloud Supplier Portal User Guide Table of Contents Introduction to the Supplier Portal... 3 What is the Supplier Portal?... 3 Navigating the Supplier portal... 3 Logging in... 3 Homepage

More information

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373)

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373) SPARROW Gateway Custom Payment Redirect Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2015 06 09 1.0 Initial document created Blinova Alexandra 2 Table

More information

Documentation Cendris Web Services Version July 2015

Documentation Cendris Web Services Version July 2015 Documentation Cendris Web Services Version 21 24 July 2015 Document: Documentation Cendris Webservices.docx blz 1 van 38 Index 1 Introduction... 3 2 Webportal Cendris Web services... 4 3 Implementation

More information

Amicus Link Guide: Timeslips

Amicus Link Guide: Timeslips Amicus Link Guide: Timeslips Applies to: Amicus Attorney Premium 2015 Synchronize your Amicus and Timeslips matter files/clients, and dynamically exchange your Amicus time entries and expenses to Timeslips.

More information

Contents. ARSXML... 1 Purpose... 1 Syntax... 1 Description... 2 Parameters for ARSXML [add update delete]... 2 Parameters for ARSXML export...

Contents. ARSXML... 1 Purpose... 1 Syntax... 1 Description... 2 Parameters for ARSXML [add update delete]... 2 Parameters for ARSXML export... ARSXML ii ARSXML Contents ARSXML.............. 1 Purpose................ 1 Syntax................ 1 Description............... 2 Parameters for ARSXML [add update delete]... 2 Parameters for ARSXML export........

More information

SMS Aggregation - API Documentation

SMS Aggregation - API Documentation SMS Aggregation - API Documentation Wireless Logic Version - 2.0 Issue Date - 20th February 2014 Wireless Logic Ltd Grosvenor House Horseshoe Crescent Beaconsfield, Buckinghamshire HP9 1LJ Tel: +44 (0)1494

More information

Lizzy API. Introduction: Available REST Methods

Lizzy API. Introduction: Available REST Methods Lizzy API Last Modified By: Glenn Hancock Last Modified: 08/14/2017 Version: 2.0.0.11 Introduction: This document covers the use of the Lizzy API, this API is a REST interface. The Lizzy API makes use

More information

SAP Business Connector SOAP Programming Guide

SAP Business Connector SOAP Programming Guide SAP Business Connector SOAP Programming Guide SAP SYSTEM Release 48 SAP AG Dietmar-Hopp-Allee 16 D-69190 Walldorf SAP BC Soap Programming Guide 48 1 CHAPTER 1 SAP AG Copyright Copyright 2008 SAP AG All

More information

Android Programming Lecture 14 10/26/2011

Android Programming Lecture 14 10/26/2011 Android Programming Lecture 14 10/26/2011 Review returned tests Test Review Web Service Communication To obtain information from the City of Winston- Salem about open work orders, we will request information

More information

USER GUIDE. June 2012 VERSION 1.0. Supplier Portal. Kimberly-Clark. E-sourcing

USER GUIDE. June 2012 VERSION 1.0. Supplier Portal. Kimberly-Clark. E-sourcing USER GUIDE June 2012 VERSION 1.0 Supplier Portal Kimberly-Clark E-sourcing Copyright 2005, Kimberly-Clark Worldwide, Inc. All rights reserved. This document and its associated training materials are proprietary

More information

4 Using Web Services and SOAP

4 Using Web Services and SOAP last updated: November 18, 2002 2:45 pm The SOAP Conduit, part of the Modulant Contextia Interoperability Server, makes data transformations available using Web Services technology. Client programs can

More information

What is Web Service. An example web service. What is a Web Service?

What is Web Service. An example web service. What is a Web Service? What is Web Service Tutorial I Web Services 1. What is a Web Service? 2. An example Web Service 3. OmniEditor: Wrapping a text editor into a WS 4. OmniGraphEditor: supporting a graphic editor References

More information

What's New: Release to

What's New: Release to 26-Apr-2016 Page : 1 14:47:43 Report Group: DEVMODS Modification and Development Release Notes, new development and modifications completed in release version range included on report. Please review and

More information

1. About AP Invoice Wizard

1. About AP Invoice Wizard 1. About AP Invoice Wizard Welcome to AP Invoice Wizard. We have developed this tool in response to demand from Oracle Payables users for a user friendly and robust spreadsheet tool to load AP Invoices

More information

Notes. IS 651: Distributed Systems 1

Notes. IS 651: Distributed Systems 1 Notes Case study grading rubric: http://userpages.umbc.edu/~jianwu/is651/case-study-presentation- Rubric.pdf Each group will grade for other groups presentation No extra assignments besides the ones in

More information

COTY PROJECT USER MANUAL

COTY PROJECT USER MANUAL COTY PROJECT USER MANUAL _EN_GLO_YYYYMMDD FUNCTION: Supply Chain Planning TOPIC Confirmation through the portal a. Order Status b. Response Options c. Submitted confirmation Confirmation through Excel

More information

Cisco CallManager 4.1(2) AXL Serviceability API Programming Guide

Cisco CallManager 4.1(2) AXL Serviceability API Programming Guide Cisco CallManager 4.1(2) AXL Serviceability API Programming Guide This document describes the implementation of AXL-Serviceability APIs that are based on version 3.3.0.1 or higher. Cisco CallManager Real-Time

More information

Business Register Web Services XML Services (v6 adapter)

Business Register Web Services XML Services (v6 adapter) Business Register Web Services XML Services (v6 adapter) Last modification: 13. September 2018 Business register web services XML services Introduction:... 3 1. Simple company data query (status query)...

More information

A Tutorial for Excel 2002 for Windows

A Tutorial for Excel 2002 for Windows INFORMATION SYSTEMS SERVICES Data Manipulation with Microsoft Excel 2002 A Tutorial for Excel 2002 for Windows AUTHOR: Information Systems Services DATE: August 2004 EDITION: 1.0 TUT 130 UNIVERSITY OF

More information

Change Discovery Service

Change Discovery Service HEDNA White Paper: Change Discovery Service EXECUTIVE SUMMARY Change Discovery is a fairly new concept to the hotel distribution industry. The various implementations thus far have created a need to define,

More information

FINANCE MANAGER. Bidding Manual Finance Manager.

FINANCE MANAGER. Bidding Manual Finance Manager. FINANCE MANAGER Bidding Manual 2009 Finance Manager Table of Contents Start Page... 5 Setup Which Files Should Be Completed First?... 7 Item Categories... 8 Unit of Measure... 11 Buildings... 13 Requestors...

More information

Multi SO Data Loader User Guide

Multi SO Data Loader User Guide Multi SO 7.1.1 Data Loader User Guide v.1 32Soft.com Multi SO 7.1.1 User Guide Thank you for your interest in 32 Soft s productivity solutions for QAD. You are on the path to improved data management and

More information

Lead Delivery Options. Your leads sent your way. Lead delivery options for clients and partners.

Lead Delivery Options. Your leads sent your way. Lead delivery options for clients and partners. Lead Delivery Options Your leads sent your way. Lead delivery options for clients and partners. Introduction We know how important quality and timely leads are for your business. That s why we offer a

More information

isupplier User Guide

isupplier User Guide isupplier User Guide isupplier User Guide Last Update 02032017 PURCHASING DEPARTMENT MARK A. BOOKER, DIRECTOR 501 S. JUPITER ROAD GARLAND, TEXAS 75149 972-487-3009 Garland Independent School District isupplier

More information

Sage 300. Sage CRM 2018 Integration Upgrade Guide. October 2017

Sage 300. Sage CRM 2018 Integration Upgrade Guide. October 2017 Sage 300 Sage CRM 2018 Integration Upgrade Guide October 2017 This is a publication of Sage Software, Inc. 2017 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product

More information

ICON Laboratory Services, Inc. isite User Guide

ICON Laboratory Services, Inc. isite User Guide ICON Laboratory Services, Inc. isite User Guide TABLE OF CONTENTS Section 1 Introduction and Creating an Account in isite... 2 Section 2 Log In... 3 2.1 Selecting a Study... 3 Section 3 Viewing Lab Reports...

More information

How to obtain log-in Information. How to log-in to FNB Online Catalog

How to obtain log-in Information. How to log-in to FNB Online Catalog Table of Contents 1. How to obtain log-in information and log-in pg. 2 2. Start your order pg. 3 3. Choose product details, confirm and check-out pg. 4 4. Select Purchase Type: Affiliate or Personal pg.

More information

Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual

Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual CONTENTS Revision History... 2 1 Introduction... 4 1.1 Overview... 4 1.2 Supporting documents... 4 2 Getting Started... 4 3 GetOrderDetails

More information

RPC. Remote Procedure Calls. Robert Grimm New York University

RPC. Remote Procedure Calls. Robert Grimm New York University RPC Remote Procedure Calls Robert Grimm New York University Assignments! You need (more) time for interoperability testing!! Your server should be running by midnight Sunday! Assignment 3 test case posted!

More information

Web Services. Grid Computing (M) Lecture 6. Olufemi Komolafe 19 January 2007

Web Services. Grid Computing (M) Lecture 6. Olufemi Komolafe 19 January 2007 Web Services Grid Computing (M) Lecture 6 Olufemi Komolafe (femi@dcs.gla.ac.uk) 19 January 2007 UDDI registry retrieved from a DTD WSDL service definition XML schema definition is a describes structure

More information

7.0 Web Services Guide

7.0 Web Services Guide 7.0 Web Services Guide Copyright 2010 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,

More information

COMSGATE Payment Form Specifications

COMSGATE Payment Form Specifications COMSGATE Payment Form Specifications Document ID: CS_PF-1.5.0 Version: v1.5.0 Prepared for: CHARGE Anywhere 4041B Hadley Rd South Plainfield, NJ 07080 Phone + 1 (800) 211-1256 Fax + 1 (732) 417-4448 1

More information