OpenPro XML SOAP API information. OpenPro ERP software is a fully integrated business application that includes the following modules.

Size: px
Start display at page:

Download "OpenPro XML SOAP API information. OpenPro ERP software is a fully integrated business application that includes the following modules."

Transcription

1 OpenPro XML SOAP API Talbert Ave Suite 200 Fountain Valley, CA Telephone Fax Last Updated October 2017

2 OpenPro XML SOAP API information. OpenPro ERP software is a fully integrated business application that includes the following modules. This package has integrated sql data base that can be used for reporting and or communicate to other system via SOAP xml. 2

3 Because OpenPro is fully integrated you need to know that the transactions you process with in OpenPro will not affect another module, so by using the SOAP xml interface this will verify the data is correct. 3

4 XML General Information OpenPro XML SOAP Interface general information. SOAP, originally defined as Simple Object Access Protocol, is a protocol specification for exchanging structured information in the implementation of Web Services in computer networks. It relies on Extensible Markup Language (XML) for its message format, and usually relies on other Application Layer protocols, most notably Remote Procedure Call (RPC) and Hypertext Transfer Protocol (HTTP), for message negotiation and transmission. SOAP can form the foundation layer of a web services protocol stack, providing a basic messaging framework upon which web services can be built. This XML based protocol consists of three parts: an envelope, which defines what is in the message and how to process it, a set of encoding rules for expressing instances of applicationdefined data types, and a convention for representing procedure calls and responses. OpenPro designed its XML interface to run in three different modes, batch xml processing, where you can run this process in batch php processing, interactive select a file and import, or using the SOAP communications method. This document goes into details of the SOAP interface and transactions that can be processed. 1. Batch Processing, (ftp a file to OpenPro includes/import folder,) run the program from the command prompt. Php program name with parameters. 2. Interactive, have the file on you local machine, select the program and import into the system 3. Communications SOAP interface, you have a program the communications and send the files thru that communication method. 4

5 XML General Informaton The updated xml interface uses a WSDL to make it easier for the web services. OpenPro SOAP xml interface can connected using many different clients, for this review we will use the following client: It can be tested using a 3 rd party SOAPUI This is an Open source SOAP interface. The WSDL is located at the following location. the WSDL location is: 5

6 URL the WSDL location is: Connect to the SOAP project Transaction types: Sql transaction used for any sql select call for OpenPro data. Ap_entry transaction this processes payables entry in OpenPro Ar entry transaction this processes ar invoice summary transactions Inventory transactions this will do a inventory receipt of material, adjustment of inventory and or move order from one location to another. Record_receipt_transaction this will do a purchase order receipt of inventory Sales_order_transaction this will enter in a sales order type transaction, this will include quotes (needs to be released as a sales order and shipped, sales order (ready to ship), and invoices (already shipped and invoiced, for historical purposes). Work order transaction enter in work orders for manufacturing process. CM_leads_entry CRM contact leads entry and processing. CM_leads_entry2 CRM contact leads entry and processing. CM_leads_people_entry CRM contact leads people entry and processing. POMake transaction enter in purchase order and create purchase order. The next pages will go into detail of the transactions: 6

7 Sql transaction used for any sql select call for OpenPro data. You will see the following transactions: Sql transaction can be used for any select statement to the database. In this example we are doing select partnum, name from ic_items <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:asp=" <soapenv:header/> <soapenv:body> <asp:sql_transaction soapenv:encodingstyle=" <security_code xsi:type="xsd:string"></security_code> THIS IS A REQUIRED LINE <sql xsi:type="xsd:string">select id, partnum, name from ic_items</sql> </asp:sql_transaction> </soapenv:body> </soapenv:envelope> 7

8 OpenPro security and setup of the SOAP xml Interface. Openpro has the sqlnfo.php file that is where you turn on or off certain security options. // configurations for xml soap services $xml_soap_config["ip_list"] = array(""); // leave as empty array to allow anyone to connect $xml_soap_config["use_md5_hash"] = false; // require an md5 encrypted hash password --> md5(date("ymd").$password.$remote_address) $xml_soap_config["use_md5_function_name"] = false; // require the function name to be in the hash password --> md5(date("ymd").$password.$remote_address.$function_name) $xml_soap_config["password"] = ""; $xml_soap_config["security_failure_message"] = "You do not have access credentials for this service."; $xml_soap_config["debug_mode"] = true; // set to false when finish testing!!!!! $xml_soap_config["transactions_enabled"] = true; From here you can turn on and off certain IP address to talk to, have specific password to pass back and forth and have a user defined error message if login failed. 8

9 Sql transaction used for any sql select call for OpenPro data. The response is a list of part numbers with description and part number. But any sql select transaction that is valid can be used, this includes selects with joins to other tables. 9

10 Ap_entry transaction this processes payables entry in OpenPro This ap entry transaction does simple Payables processing. It will not work with 3 way matching on purchase orders. 10

11 Ap_entry transaction this processes payables entry in OpenPro <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:open="openpro_web_services_wsdl" xmlns:soapenc=" <soapenv:header/> <soapenv:body> <open:ap_entry_transaction soapenv:encodingstyle=" <vendorid xsi:type="xsd:int">1</vendorid> <ap_account xsi:type="xsd:string"> </ap_account> <system_id xsi:type="xsd:string">ap</system_id> <doc_no xsi:type="xsd:string">rpc12348</doc_no> <open_po xsi:type="xsd:string"></open_po> <doctype xsi:type="xsd:string">vchr</doctype> <doc_date xsi:type="xsd:string">01/11/2011</doc_date> <termchoice xsi:type="xsd:string">52</termchoice> <due_date xsi:type="xsd:string">02/11/2011</due_date> <gl_date xsi:type="xsd:string">01/11/2011</gl_date> <on1099 xsi:type="xsd:int">0</on1099> <notes xsi:type="xsd:string">xml_rpc test</notes> <linecount xsi:type="xsd:int">2</linecount> <open_amt xsi:type="xsd:float">100</open_amt> <transactions_array xsi:type="urn:apentry_lineitem_array" soapenc:arraytype="urn:apentry_lineitem[2]" xmlns:urn="urn:openpro_web_services_wsdl"> xsi:type="tns:apentry_lineitem"> <sm_taxes_id xsi:type="xsd:int">7</sm_taxes_id> <acctno xsi:type="xsd:string"> </acctno> <acctdeschid xsi:type="xsd:string">purchases - parts</acctdeschid> <description xsi:type="xsd:string"></description> <jobid xsi:type="xsd:string"></jobid> <job_no xsi:type="xsd:string"></job_no> <storeid xsi:type="xsd:string">demo</storeid> <debit xsi:type="xsd:float">25</debit> <credit xsi:type="xsd:float">0.00</credit> </item> xsi:type="tns:apentry_lineitem"> <sm_taxes_id xsi:type="xsd:int">5</sm_taxes_id> <acctno xsi:type="xsd:string"> </acctno> <acctdeschid xsi:type="xsd:string">purchase discounts</acctdeschid> <description xsi:type="xsd:string"></description> <jobid xsi:type="xsd:string"></jobid> <job_no xsi:type="xsd:string"></job_no> <storeid xsi:type="xsd:string">demo</storeid> <debit xsi:type="xsd:float">75.00</debit> <credit xsi:type="xsd:float"></credit> </item> </transactions_array> </open:ap_entry_transaction> </soapenv:body> </soapenv:envelope> 11

12 Ap_entry transaction this processes payables entry in OpenPro <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:open="openpro_web_services_wsdl" xmlns:soapenc=" <soapenv:header/> <soapenv:body> <open:ap_entry_transaction soapenv:encodingstyle=" <vendorid >1</vendorid> <ap_account > </ap_account> <system_id >AP</system_id> <doc_no >rpc123494</doc_no> <open_po ></open_po> <doctype >VCHR</doctype> <doc_date >01/11/2011</doc_date> <termchoice >52</termchoice> <due_date >02/11/2011</due_date> <gl_date >01/11/2011</gl_date> <on1099 >0</on1099> <notes >xml_rpc test</notes> <linecount >2</linecount> <open_amt >100</open_amt> <transactions_array soapenc:arraytype="urn:apentry_lineitem[2]" > xsi:type="tns:apentry_lineitem"> <sm_taxes_id >7</sm_taxes_id> <acctno > </acctno> <acctdeschid >Purchases - parts</acctdeschid> <description ></description> <jobid ></jobid> <job_no ></job_no> <storeid >DEMO</storeid> <debit >25</debit> <credit >0.00</credit> </item> xsi:type="tns:apentry_lineitem"> <sm_taxes_id >5</sm_taxes_id> <acctno > </acctno> <acctdeschid >Purchase discounts</acctdeschid> <description ></description> <jobid ></jobid> <job_no ></job_no> <storeid >DEMO</storeid> <debit >75.00</debit> <credit ></credit> </item> </transactions_array> </open:ap_entry_transaction> </soapenv:body> </soapenv:envelope> 12

13 Ar entry transaction this processes ar invoice summary transactions AR Sale billing summary transactions. 13

14 Ar entry transaction this processes ar invoice summary transactions <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:open="openpro_web_services_wsdl" xmlns:soapenc=" <soapenv:header/> <soapenv:body> <open:ar_entry_transaction soapenv:encodingstyle=" <ar_account xsi:type="xsd:string"> </ar_account> <system_id xsi:type="xsd:string">ar</system_id> <customerid xsi:type="xsd:string">29</customerid> <aclass xsi:type="xsd:string">21</aclass> <syssource xsi:type="xsd:string">ap</syssource> <doc_no xsi:type="xsd:string"> </doc_no> <doc_date xsi:type="xsd:string">01/11/2011</doc_date> <termchoice xsi:type="xsd:string">10</termchoice> <doctype xsi:type="xsd:string">sainv</doctype> <due_date xsi:type="xsd:string">02/11/2011</due_date> <open_po xsi:type="xsd:string"></open_po> <repnum xsi:type="xsd:string">101</repnum> <commission_amt xsi:type="xsd:string">20</commission_amt> <notes xsi:type="xsd:string">xml rpc test</notes> <open_amt xsi:type="xsd:string">75</open_amt> <transactions_array xsi:type="urn:arentry_lineitem_array" soapenc:arraytype="urn:arentry_lineitem[2]" xmlns:urn="urn:openpro_web_services_wsdl"> xsi:type="tns:arentry_lineitem"> <sm_taxes_id xsi:type="xsd:int">7</sm_taxes_id> <acctno xsi:type="xsd:string"> </acctno> <acctdeschid xsi:type="xsd:string">cash account #13557</acctdeschid> <jobid xsi:type="xsd:string"></jobid> <job_no xsi:type="xsd:string"></job_no> <storeid xsi:type="xsd:string">demo</storeid> <debit xsi:type="xsd:float">25</debit> <credit xsi:type="xsd:float">0.00</credit> </item> xsi:type="tns:arentry_lineitem"> <sm_taxes_id xsi:type="xsd:int">5</sm_taxes_id> <acctno xsi:type="xsd:string"> </acctno> <acctdeschid xsi:type="xsd:string">accounts Receivable</acctdeschid> <jobid xsi:type="xsd:string"></jobid> <job_no xsi:type="xsd:string"></job_no> <storeid xsi:type="xsd:string">demo</storeid> <debit xsi:type="xsd:float">0.00</debit> <credit xsi:type="xsd:float">100.00</credit> </item> </transactions_array> </open:ar_entry_transaction> </soapenv:body> </soapenv:envelope> 14

15 Inventory transactions this will do a inventory receipt of material, adjustment of inventory and or move order from one location to another. 15

16 Inventory transactions this will do a inventory receipt of material, adjustment of inventory and or move order from one location to another. <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:open="openpro_web_services_wsdl"> <soapenv:header/> <soapenv:body> <open:inventory_transaction soapenv:encodingstyle=" <editid xsi:type="xsd:int">0</editid> <partnum xsi:type="xsd:string">fg100</partnum> _inventory_type xsi:type="xsd:string">regular</item_inventory_type> <storefrom xsi:type="xsd:string">demo</storefrom> <transaction_type xsi:type="xsd:string">rece</transaction_type> <storeto xsi:type="xsd:string"></storeto> <quantity xsi:type="xsd:float">1</quantity> <document_no xsi:type="xsd:string">rpc12345</document_no> <action_date xsi:type="xsd:string">01/12/2011</action_date> <action_time xsi:type="xsd:string"></action_time> <cost xsi:type="xsd:float">50</cost> <description xsi:type="xsd:string">xml RPC Test</description> <serial_camma_seperated xsi:type="xsd:string"></serial_camma_seperated> </open:inventory_transaction> </soapenv:body> </soapenv:envelope> Sample 2 <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:open="openpro_web_services_wsdl"> <soapenv:header/> <soapenv:body> <open:inventory_transaction soapenv:encodingstyle=" <editid >0</editid> <partnum >FG100</partnum> _inventory_type >REGULAR</item_inventory_type> <storefrom >DEMO</storefrom> <transaction_type >RECE</transaction_type> <storeto ></storeto> <quantity >1</quantity> <document_no >rpc12345</document_no> <action_date >01/12/2011</action_date> <action_time ></action_time> <cost>50</cost> <description >XML RPC Test</description> <serial_camma_seperated ></serial_camma_seperated> </open:inventory_transaction> </soapenv:body> </soapenv:envelope> 16

17 Record_receipt_transaction this will do a purchase order receipt of inventory 17

18 Record_receipt_transaction this will do a purchase order receipt of inventory <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:open="openpro_web_services_wsdl" xmlns:soapenc=" <soapenv:header/> <soapenv:body> <open:record_receipt_transaction soapenv:encodingstyle=" <po_orders_id xsi:type="xsd:int">520</po_orders_id> <comment xsi:type="xsd:string">xml rpc test</comment> <recdate xsi:type="xsd:string">01/11/2011</recdate> <transactions_array xsi:type="urn:record_receipt_lineitem_array" soapenc:arraytype="urn:record_receipt_lineitem[]" xmlns:urn="urn:openpro_web_services_wsdl"> xsi:type="tns:apentry_lineitem"> <po_lineitem_id xsi:type="xsd:int">814</po_lineitem_id> <line xsi:type="xsd:string">1</line> <bin xsi:type="xsd:string">4</bin> <rec xsi:type="xsd:string">1</rec> <serial_camma_seperated xsi:type="xsd:string">ser1</serial_camma_seperated> </item> </transactions_array> </open:record_receipt_transaction> </soapenv:body> </soapenv:envelope> 18

19 Sales_order_transaction this will enter in a sales order type transaction, this will include quotes (needs to be released as a sales order and shipped, sales order (ready to ship), and invoices (already shipped and invoiced, for historical purposes). ================= Sales Order Processing Type and Process Inventory Feature if you want to process inventory and GL, include the following tags in your "so_orders" xml table. <table name="so_orders" action="insert" type="invoice" special="process_inventory"> Type options are used to import Sales Order transactions with different status. type="quote" --> this tells us that it is an quote and no processing has been done. type="order" --> this tells us that it is an sales order and waiting in the shipping quote to be shipped and invoiced. type="invoice" --> this tells us that and order has been entered, shipped and invoiced, all detail history transactions have been processed, (customer history, receivables, gl, inventory, etc). special="process_inventory" --> this tells us to process inventory and GL. (just as if "Invoice Order" has been placed on a sales order. 19

20 Sales_order_transaction <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:open="openpro_web_services_wsdl" xmlns:soapenc=" <soapenv:header/> <soapenv:body> <open:table_transactions soapenv:encodingstyle=" <table_operation_array xsi:type="asp:table_operation_array" soapenc:arraytype="asp:table_operation[]" xmlns:asp=" <table_operation xsi:type="asp:table_operation"> <table_name xsi:type="xsd:string">so_orders</table_name> <action xsi:type="xsd:string">insert</action> <table_fields xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--These are the fields you want to update or insert--> xsi:type="asp:field"><name>companyid</name><value>demo</value></item> xsi:type="asp:field"><name>id</name><value></value></item> xsi:type="asp:field"><name>status</name><value>sales Order</value></item> xsi:type="asp:field"><name>so_type</name><value>1</value></item> xsi:type="asp:field"><name>quote_num</name><value></value></item> xsi:type="asp:field"><name>order_num</name><value></value></item> xsi:type="asp:field"><name>picking_num</name><value>0</value></item> xsi:type="asp:field"><name>shipping_num</name><value>0</value></item> xsi:type="asp:field"><name>invoice_num</name><value>0</value></item> xsi:type="asp:field"><name>processed</name><value>0</value></item> xsi:type="asp:field"><name>cost</name><value>45.00</value></item> xsi:type="asp:field"><name>totalprice</name><value>97.20</value></item> xsi:type="asp:field"><name>customerid</name><value>6</value></item> xsi:type="asp:field"><name>ip</name><value> </value></item> xsi:type="asp:field"><name>entered_by</name><value>0</value></item> xsi:type="asp:field"><name>quote_date</name><value> </value></item> xsi:type="asp:field"><name>order_date</name><value> </value></item> xsi:type="asp:field"><name>invoice_date</name><value> </value></item> xsi:type="asp:field"><name>require_date</name><value> </value></item> xsi:type="asp:field"><name>weight</name><value>130.00</value></item> xsi:type="asp:field"><name>cust_discount</name><value>0.00</value></item> 20

21 21 xsi:type="asp:field"><name>shipping</name><value>0.00</value></item> xsi:type="asp:field"><name>tax</name><value>7.20</value></item> xsi:type="asp:field"><name>tax_code</name><value>caor</value></item> xsi:type="asp:field"><name>po</name><value>0</value></item> xsi:type="asp:field"><name>rep1</name><value>101</value></item> xsi:type="asp:field"><name>rep2</name><value></value></item> xsi:type="asp:field"><name>rep3</name><value></value></item> xsi:type="asp:field"><name>commission</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_paid1</name><value>0.00</value></item> xsi:type="asp:field"><name>commission2</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_paid2</name><value>0.00</value></item> xsi:type="asp:field"><name>commission3</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_paid3</name><value>0.00</value></item> xsi:type="asp:field"><name>total_commission</name><value>10.000</value></item> xsi:type="asp:field"><name>terms</name><value>0</value></item> xsi:type="asp:field"><name>store</name><value>demo</value></item> xsi:type="asp:field"><name>authnum</name><value></value></item> xsi:type="asp:field"><name>cc_id</name><value>0</value></item> xsi:type="asp:field"><name>payment</name><value>awaiting</value></item> xsi:type="asp:field"><name>notes</name><value>test insert from xml rpc</value></item> xsi:type="asp:field"><name>paynum</name><value></value></item> xsi:type="asp:field"><name>ship_type</name><value>4</value></item> xsi:type="asp:field"><name>order_type</name><value>29</value></item> xsi:type="asp:field"><name>media_id</name><value>0</value></item> xsi:type="asp:field"><name>invoice_processed</name><value>0</value></item> xsi:type="asp:field"><name>order_processed</name><value>1</value></item> xsi:type="asp:field"><name>bill_to_3rdparty</name><value>0</value></item> xsi:type="asp:field"><name>ship_to_attn</name><value></value></item> xsi:type="asp:field"><name>ship_to</name><value>0</value></item> xsi:type="asp:field"><name>num_packages</name><value>0</value></item> xsi:type="asp:field"><name>user_defined1</name><value></value></item>

22 xsi:type="asp:field"><name>user_defined2</name><value></value></item> xsi:type="asp:field"><name>user_defined3</name><value></value></item> xsi:type="asp:field"><name>ecom</name><value>0</value></item> xsi:type="asp:field"><name>inhouse_notes</name><value></value></item> xsi:type="asp:field"><name>ship_complete</name><value>0</value></item> xsi:type="asp:field"><name>ship_date</name><value> </value></item> </table_fields> <where_fields xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--these are the field and values to use in the where clause--> <!-- xsi:type="asp:field"> <name>id</name> <value>5</value> </item> --> </where_fields> <special_instructions xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--special instructions go here: saving values for later, dynamic lookup of data, etc.--> xsi:type="asp:field"> <name>quote_num</name> <value>getnextnumber:next_quote</value> </item> xsi:type="asp:field"> <name>order_num</name> <value>field_link:quote_num</value> </item> </special_instructions> </table_operation> <table_operation xsi:type="asp:table_operation"> <table_name xsi:type="xsd:string">so_lineitems</table_name> <action xsi:type="xsd:string">insert</action> <table_fields xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--These are the fields you want to update or insert--> xsi:type="asp:field"><name>companyid</name><value>demo</value></item> xsi:type="asp:field"><name>id</name><value></value></item> xsi:type="asp:field"><name>unit_cost</name><value>18.356</value></item> xsi:type="asp:field"><name>itemid</name><value>1</value></item> xsi:type="asp:field"><name>po_id</name><value>0</value></item> xsi:type="asp:field"><name>wo_id</name><value>0</value></item> xsi:type="asp:field"><name>orderid</name><value></value></item> xsi:type="asp:field"><name>serial</name><value></value></item> xsi:type="asp:field"><name>rebate</name><value>0.00</value></item> xsi:type="asp:field"><name>phoneuser</name><value></value></item> 22

23 23 xsi:type="asp:field"><name>quantity</name><value>1.00</value></item> xsi:type="asp:field"><name>qty_fulfilled</name><value>0</value></item> xsi:type="asp:field"><name>qty_canceled</name><value>0.000</value></item> xsi:type="asp:field"><name>qty_invoiced</name><value>0.000</value></item> xsi:type="asp:field"><name>attach</name><value>0</value></item> xsi:type="asp:field"><name>status</name><value>tracking number</value></item> xsi:type="asp:field"><name>notes</name><value></value></item> xsi:type="asp:field"><name>unit_price</name><value>90.00</value></item> xsi:type="asp:field"><name>lineitem_no</name><value>0001</value></item> xsi:type="asp:field"><name>drop_ship</name><value>0</value></item> xsi:type="asp:field"><name>ship_from</name><value>demo</value></item> xsi:type="asp:field"><name>bin_from</name><value>0</value></item> xsi:type="asp:field"><name>disc_amt</name><value>0.00</value></item> xsi:type="asp:field"><name>commissionable</name><value>90</value></item> xsi:type="asp:field"><name>commission_amt</name><value>4.50</value></item> xsi:type="asp:field"><name>commission_paid1</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_amt2</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_paid2</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_amt3</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_paid3</name><value>0.00</value></item> xsi:type="asp:field"><name>returnqty</name><value>0.00</value></item> xsi:type="asp:field"><name>user_defined1</name><value></value></item> xsi:type="asp:field"><name>user_defined2</name><value></value></item> xsi:type="asp:field"><name>user_defined3</name><value></value></item> xsi:type="asp:field"><name>user_defined4</name><value></value></item> xsi:type="asp:field"><name>user_defined5</name><value></value></item> xsi:type="asp:field"><name>line_type</name><value>activ</value></item> xsi:type="asp:field"><name>li_shipto</name><value>0</value></item> xsi:type="asp:field"><name>li_require_date</name><value> </value></item> xsi:type="asp:field"><name>li_tax_amt</name><value>0.00</value></item> xsi:type="asp:field"><name>li_conf_item</name><value>0</value></item>

24 </table_fields> <where_fields xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--these are the field and values to use in the where clause--> <!-- xsi:type="asp:field"> <name>id</name> <value>5</value> </item> --> </where_fields> <special_instructions xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--special instructions go here: saving values for later, dynamic lookup of data, etc.--> xsi:type="asp:field"> <name>orderid</name> <value>link_table:so_orders,last</value> </item> </special_instructions> </table_operation> </table_operation_array> </open:table_transactions> </soapenv:body> </soapenv:envelope> 24

25 Sales_order_transaction <?xml version="1.0" encoding="utf-8"?> <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:open="openpro_web_services_wsdl" xmlns:soapenc=" <soapenv:header/> <soapenv:body> <open:table_transactions soapenv:encodingstyle=" <table_operation_array xsi:type="asp:table_operation_array" soapenc:arraytype="asp:table_operation[]" xmlns:asp=" <table_operation xsi:type="asp:table_operation"> <table_name xsi:type="xsd:string">so_orders</table_name> <action xsi:type="xsd:string">insert</action> <table_fields xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--These are the fields you want to update or insert--> xsi:type="asp:field"><name>companyid</name><value>demo</value></item> xsi:type="asp:field"><name>id</name><value/></item> xsi:type="asp:field"><name>status</name><value>sales Order</value></item> xsi:type="asp:field"><name>so_type</name><value>1</value></item> xsi:type="asp:field"><name>quote_num</name><value/></item> xsi:type="asp:field"><name>order_num</name><value/></item> xsi:type="asp:field"><name>picking_num</name><value>0</value></item> xsi:type="asp:field"><name>shipping_num</name><value>0</value></item> xsi:type="asp:field"><name>invoice_num</name><value>0</value></item> xsi:type="asp:field"><name>processed</name><value>0</value></item> xsi:type="asp:field"><name>cost</name><value>45.00</value></item> xsi:type="asp:field"><name>totalprice</name><value>97.20</value></item> xsi:type="asp:field"><name>customerid</name><value>cocanut Oil Dist CO</value></item> xsi:type="asp:field"><name>ip</name><value> </value></item> xsi:type="asp:field"><name>entered_by</name><value>0</value></item> xsi:type="asp:field"><name>quote_date</name><value> </value></item> xsi:type="asp:field"><name>order_date</name><value> </value></item> xsi:type="asp:field"><name>invoice_date</name><value> </value></item> xsi:type="asp:field"><name>require_date</name><value> </value></item> xsi:type="asp:field"><name>weight</name><value>130.00</value></item> xsi:type="asp:field"><name>cust_discount</name><value>0.00</value></item> 25

26 26 xsi:type="asp:field"><name>shipping</name><value>0.00</value></item> xsi:type="asp:field"><name>tax</name><value>7.20</value></item> xsi:type="asp:field"><name>tax_code</name><value>caor</value></item> xsi:type="asp:field"><name>po</name><value>0</value></item> xsi:type="asp:field"><name>rep1</name><value>101</value></item> xsi:type="asp:field"><name>rep2</name><value/></item> xsi:type="asp:field"><name>rep3</name><value/></item> xsi:type="asp:field"><name>commission</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_paid1</name><value>0.00</value></item> xsi:type="asp:field"><name>commission2</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_paid2</name><value>0.00</value></item> xsi:type="asp:field"><name>commission3</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_paid3</name><value>0.00</value></item> xsi:type="asp:field"><name>total_commission</name><value>10.000</value></item> xsi:type="asp:field"><name>terms</name><value>0</value></item> xsi:type="asp:field"><name>store</name><value>demo</value></item> xsi:type="asp:field"><name>authnum</name><value/></item> xsi:type="asp:field"><name>cc_id</name><value>0</value></item> xsi:type="asp:field"><name>payment</name><value>awaiting</value></item> xsi:type="asp:field"><name>notes</name><value>test insert from xml rpc</value></item> xsi:type="asp:field"><name>paynum</name><value/></item> xsi:type="asp:field"><name>ship_type</name><value>4</value></item> xsi:type="asp:field"><name>order_type</name><value>29</value></item> xsi:type="asp:field"><name>media_id</name><value>0</value></item> xsi:type="asp:field"><name>invoice_processed</name><value>0</value></item> xsi:type="asp:field"><name>order_processed</name><value>1</value></item> xsi:type="asp:field"><name>bill_to_3rdparty</name><value>0</value></item> xsi:type="asp:field"><name>ship_to_attn</name><value/></item> xsi:type="asp:field"><name>ship_to</name><value>0</value></item> xsi:type="asp:field"><name>num_packages</name><value>0</value></item> xsi:type="asp:field"><name>user_defined1</name><value/></item>

27 xsi:type="asp:field"><name>user_defined2</name><value/></item> xsi:type="asp:field"><name>user_defined3</name><value/></item> xsi:type="asp:field"><name>ecom</name><value>0</value></item> xsi:type="asp:field"><name>inhouse_notes</name><value/></item> xsi:type="asp:field"><name>ship_complete</name><value>0</value></item> xsi:type="asp:field"><name>ship_date</name><value> </value></item> </table_fields> <where_fields xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--these are the field and values to use in the where clause--> <!-- xsi:type="asp:field"> <name>id</name> <value>5</value> </item> --> </where_fields> <special_instructions xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--special instructions go here: saving values for later, dynamic lookup of data, etc.--> xsi:type="asp:field"> <name>quote_num</name> <value>getnextnumber:next_quote</value> </item> xsi:type="asp:field"> <name>order_num</name> <value>field_link:quote_num</value> </item> xsi:type="asp:field"> <name>customerid</name> <value>table_lookup:ar_customers,company,id</value> </item> </special_instructions> </table_operation> <table_operation xsi:type="asp:table_operation"> <table_name xsi:type="xsd:string">so_lineitems</table_name> <action xsi:type="xsd:string">insert</action> <table_fields xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--These are the fields you want to update or insert--> xsi:type="asp:field"><name>companyid</name><value>demo</value></item> xsi:type="asp:field"><name>id</name><value/></item> xsi:type="asp:field"><name>unit_cost</name><value>18.356</value></item> xsi:type="asp:field"><name>itemid</name><value>1</value></item> xsi:type="asp:field"><name>po_id</name><value>0</value></item> xsi:type="asp:field"><name>wo_id</name><value>0</value></item> xsi:type="asp:field"><name>orderid</name><value/></item> xsi:type="asp:field"><name>serial</name><value/></item> 27

28 28 xsi:type="asp:field"><name>rebate</name><value>0.00</value></item> xsi:type="asp:field"><name>phoneuser</name><value/></item> xsi:type="asp:field"><name>quantity</name><value>1.00</value></item> xsi:type="asp:field"><name>qty_fulfilled</name><value>0</value></item> xsi:type="asp:field"><name>qty_canceled</name><value>0.000</value></item> xsi:type="asp:field"><name>qty_invoiced</name><value>0.000</value></item> xsi:type="asp:field"><name>attach</name><value>0</value></item> xsi:type="asp:field"><name>status</name><value>tracking number</value></item> xsi:type="asp:field"><name>notes</name><value/></item> xsi:type="asp:field"><name>unit_price</name><value>90.00</value></item> xsi:type="asp:field"><name>lineitem_no</name><value>0001</value></item> xsi:type="asp:field"><name>drop_ship</name><value>0</value></item> xsi:type="asp:field"><name>ship_from</name><value>demo</value></item> xsi:type="asp:field"><name>bin_from</name><value>0</value></item> xsi:type="asp:field"><name>disc_amt</name><value>0.00</value></item> xsi:type="asp:field"><name>commissionable</name><value>90</value></item> xsi:type="asp:field"><name>commission_amt</name><value>4.50</value></item> xsi:type="asp:field"><name>commission_paid1</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_amt2</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_paid2</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_amt3</name><value>0.00</value></item> xsi:type="asp:field"><name>commission_paid3</name><value>0.00</value></item> xsi:type="asp:field"><name>returnqty</name><value>0.00</value></item> xsi:type="asp:field"><name>user_defined1</name><value/></item> xsi:type="asp:field"><name>user_defined2</name><value/></item> xsi:type="asp:field"><name>user_defined3</name><value/></item> xsi:type="asp:field"><name>user_defined4</name><value/></item> xsi:type="asp:field"><name>user_defined5</name><value/></item> xsi:type="asp:field"><name>line_type</name><value>activ</value></item> xsi:type="asp:field"><name>li_shipto</name><value>0</value></item> xsi:type="asp:field"><name>li_require_date</name><value> </value></item>

29 xsi:type="asp:field"><name>li_tax_amt</name><value>0.00</value></item> xsi:type="asp:field"><name>li_conf_item</name><value>0</value></item> </table_fields> <where_fields xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--these are the field and values to use in the where clause--> <!-- xsi:type="asp:field"> <name>id</name> <value>5</value> </item> --> </where_fields> <special_instructions xsi:type="asp:name_value_pair_array" soapenc:arraytype="asp:name_value_pair[]"> <!--special instructions go here: saving values for later, dynamic lookup of data, etc.--> xsi:type="asp:field"> <name>orderid</name> <value>link_table:so_orders,last</value> </item> </special_instructions> </table_operation> </table_operation_array> </open:table_transactions> </soapenv:body> 29

30 Work order transaction enter in work orders for manufacturing process. 30

31 Work order transaction enter in work orders for manufacturing process. <?xml version="1.0" encoding="utf-8"?> <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:asp=" <soapenv:header/> <soapenv:body> <asp:work_order_transaction soapenv:encodingstyle=" <source xsi:type="xsd:string">so</source> <qty xsi:type="xsd:int">1</qty> xsi:type="xsd:int">3</item> <storenum xsi:type="xsd:string">demo</storenum> <soid xsi:type="xsd:int">1293</soid> <lineid xsi:type="xsd:int">2189</lineid> <woid xsi:type="xsd:int">0</woid> </asp:work_order_transaction> </soapenv:body> </soapenv:envelope> 31

32 CRM lead records enter in crm record for leads from a website <soapenv:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:asp=" xmlns:soapenc=" <soapenv:header/> <soapenv:body> <asp:cm_leads_entry soapenv:encodingstyle=" <lead_record xsi:type="asp:lead_record"> <!--You may enter the following 74 items in any order--> <company_name xsi:type="xsd:string">?</company_name> <company_address xsi:type="xsd:string">?</company_address> <company_address2 xsi:type="xsd:string">?</company_address2> <company_city xsi:type="xsd:string">?</company_city> <company_state xsi:type="xsd:string">?</company_state> <company_statecode xsi:type="xsd:string">?</company_statecode> <company_country xsi:type="xsd:string">?</company_country> <company_zip xsi:type="xsd:string">?</company_zip> <company_phone xsi:type="xsd:string">?</company_phone> <company_fax xsi:type="xsd:string">?</company_fax> <notes xsi:type="xsd:string">?</notes> <status_flag xsi:type="xsd:string">?</status_flag> <sale_likelihood xsi:type="xsd:int">?</sale_likelihood> <prospectsalessize xsi:type="xsd:float">?</prospectsalessize> <lead_source xsi:type="xsd:string">?</lead_source> <group_id xsi:type="xsd:string">?</group_id> <oppty_est_close xsi:type="xsd:string">?</oppty_est_close> <lead_type xsi:type="xsd:string">?</lead_type> <lead_next_step xsi:type="xsd:string">?</lead_next_step> <sm_rep_id xsi:type="xsd:int">?</sm_rep_id> <lead_distributor xsi:type="xsd:int">?</lead_distributor> <lead_dist_person xsi:type="xsd:int">?</lead_dist_person> <lead_source_id xsi:type="xsd:int">?</lead_source_id> <original_source xsi:type="xsd:string">?</original_source> <tax_id xsi:type="xsd:string">?</tax_id> <web_siteid xsi:type="xsd:string">?</web_siteid> <storeid xsi:type="xsd:string">?</storeid> <added_date xsi:type="xsd:string">?</added_date> <empamt xsi:type="xsd:int">?</empamt> <sales xsi:type="xsd:string">?</sales> <bustype xsi:type="xsd:string">?</bustype> <branch xsi:type="xsd:string">?</branch> <credit xsi:type="xsd:string">?</credit> <primary_code xsi:type="xsd:string">?</primary_code> <custtype xsi:type="xsd:string">?</custtype> <siccode xsi:type="xsd:string">?</siccode> <sindustry1 xsi:type="xsd:int">?</sindustry1> <sindustry2 xsi:type="xsd:int">?</sindustry2> <crm_revenues xsi:type="xsd:float">?</crm_revenues> <crm_no_employee xsi:type="xsd:float">?</crm_no_employee> <crm_no_emp_here xsi:type="xsd:float">?</crm_no_emp_here> 32

33 <crm_stock_symbol xsi:type="xsd:string">?</crm_stock_symbol> <crm_dunns xsi:type="xsd:string">?</crm_dunns> <crm_facility_size xsi:type="xsd:float">?</crm_facility_size> <followup_date xsi:type="xsd:string">?</followup_date> <lcdate xsi:type="xsd:string">?</lcdate> <lc_rep xsi:type="xsd:string">?</lc_rep> <rep xsi:type="xsd:string">?</rep> <company_phone_2 xsi:type="xsd:string">?</company_phone_2> <company_ext xsi:type="xsd:string">?</company_ext> <cust_ref xsi:type="xsd:string">?</cust_ref> <ownership xsi:type="xsd:string">?</ownership> <no_emply xsi:type="xsd:string">?</no_emply> <sales_annual xsi:type="xsd:string">?</sales_annual> <userdef1 xsi:type="xsd:string">?</userdef1> <userdef2 xsi:type="xsd:string">?</userdef2> <userdef3 xsi:type="xsd:string">?</userdef3> <userdef4 xsi:type="xsd:string">?</userdef4> <userdef5 xsi:type="xsd:string">?</userdef5> <userdef6 xsi:type="xsd:string">?</userdef6> <userdef7 xsi:type="xsd:string">?</userdef7> <userdef8 xsi:type="xsd:string">?</userdef8> <userdef9 xsi:type="xsd:string">?</userdef9> <userdef10 xsi:type="xsd:string">?</userdef10> <userdef11 xsi:type="xsd:string">?</userdef11> <userdef12 xsi:type="xsd:string">?</userdef12> <ecommerce xsi:type="xsd:int">?</ecommerce> <customerid xsi:type="xsd:int">?</customerid> <vend_id xsi:type="xsd:int">?</vend_id> <list_1 xsi:type="xsd:int">?</list_1> <list_2 xsi:type="xsd:int">?</list_2> <list_3 xsi:type="xsd:int">?</list_3> <list_4 xsi:type="xsd:int">?</list_4> <list_5 xsi:type="xsd:int">?</list_5> </lead_record> <lead_people_record xsi:type="asp:lead_people_record"> <!--You may enter the following 35 items in any order--> <id xsi:type="xsd:int">?</id> <primary_person xsi:type="xsd:int">?</primary_person> < xsi:type="xsd:string">?</ > <fname xsi:type="xsd:string">?</fname> <lname xsi:type="xsd:string">?</lname> <mi xsi:type="xsd:string">?</mi> <address xsi:type="xsd:string">?</address> <address2 xsi:type="xsd:string">?</address2> <city xsi:type="xsd:string">?</city> <statecode xsi:type="xsd:string">?</statecode> <state xsi:type="xsd:string">?</state> <country xsi:type="xsd:string">?</country> <zip xsi:type="xsd:string">?</zip> <phone xsi:type="xsd:string">?</phone> <fax xsi:type="xsd:string">?</fax> <mass check xsi:type="xsd:string">?</mass check> <nameprefix xsi:type="xsd:string">?</nameprefix> <namesuffix xsi:type="xsd:string">?</namesuffix> <massfaxcheck xsi:type="xsd:string">?</massfaxcheck> 33

34 <dob xsi:type="xsd:string">?</dob> <ss xsi:type="xsd:string">?</ss> <drv xsi:type="xsd:string">?</drv> <passport xsi:type="xsd:string">?</passport> <surname xsi:type="xsd:string">?</surname> <sex xsi:type="xsd:string">?</sex> <cell xsi:type="xsd:string">?</cell> <added_date xsi:type="xsd:string">?</added_date> <bustype xsi:type="xsd:string">?</bustype> <branch xsi:type="xsd:string">?</branch> <credit xsi:type="xsd:string">?</credit> <title xsi:type="xsd:string">?</title> <influencer xsi:type="xsd:string">?</influencer> <phone_2 xsi:type="xsd:string">?</phone_2> <ext xsi:type="xsd:string">?</ext> <pass xsi:type="xsd:string">?</pass> </lead_people_record> <lead_people_array xsi:type="asp:lead_people_record_array" soapenc:arraytype="asp:lead_people_record[]"/> </asp:cm_leads_entry> </soapenv:body> </soapenv:envelope>. 34

35 OpenPro XML SOAP API Talbert Ave Suite 200 Fountain Valley, CA Telephone Fax

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

Getting started with OWASP WebGoat 4.0 and SOAPUI.

Getting started with OWASP WebGoat 4.0 and SOAPUI. Getting started with OWASP WebGoat 4.0 and SOAPUI. Hacking web services, an introduction. Version 1.0 by Philippe Bogaerts mailto:philippe.bogaerts@radarhack.com http://www.radarhack.com 1. Introduction

More information

Using BMC SRM OOB Web Services

Using BMC SRM OOB Web Services Using BMC SRM OOB Web Services The BMC Service Request Management application is shipped with a number of OOB Web Services that can be used to Create, Query and Modify requests (see Figure 1. at end of

More information

DAVE. SOAP Web Services

DAVE. SOAP Web Services DAVE SOAP Web Services Introduction This document provides information about the Dave Web Services API and serves as a basic explanation for people with technicals skills who are making a connection to

More information

Introduction to the Prime Fulfillment API

Introduction to the Prime Fulfillment API CHAPTER 1 The Cisco Prime Fulfillment application program interface (API) allows you to use operations support system (OSS) client programs to connect to the Prime Fulfillment system. The Prime Fulfillment

More information

OpenPro Installation Instructions

OpenPro Installation Instructions OpenPro ERP Software Installation Guide 10061 Talbert Ave Suite 200 Fountain Valley, CA 92708 USA Phone 714-378-4600 Fax 714-964-1491 www.openpro.com infoop@openpro.com OpenPro Installation of Software

More information

dciphering Computing Amazon Seller Central Soap/XML Services as of Jan/2009

dciphering Computing Amazon Seller Central Soap/XML Services as of Jan/2009 Introduction: If you have had opportunity to review the documentation for Amazon s Web Services API for Seller Central you may have been impressed with all the documentation available and thought it would

More information

Lab 3: Simple Integration Use Case

Lab 3: Simple Integration Use Case Exercise 1 : Create the web service...2 Exercise 2 : Deploy the web service...4 Exercise 3 : Test the service...8 1/16 In this exercise, you will learn how to activate a Maximo inbound web service. This

More information

All About Integration

All About Integration All About Integration XOG XML Open Gateway Lars Seibert, Engineering Services Architect July 2009 Terms of This Presentation This presentation was based on current information and resource allocations

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

For addition help including training and support please contact Scanco by or phone. Scanco Support -

For addition help including training and support please contact Scanco by  or phone. Scanco Support  - Scanco Mobility Module Contents Mobility Remote Setup... 2 Purchase Order EZ Import... 9 Sales Order EZ Import... 10 Bill of Materials EZ Import... 11 EZ Import Reject Maintenance... 12 Rejected Import

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

HP Operations Orchestration

HP Operations Orchestration HP Operations Orchestration for the Windows and Linux operating systems Software Version: OO 10.x Web Services Wizard Guide Document Release Date: February 2014 Software Release Date: February 2014 Legal

More information

Sage ERP Accpac Online 5.5

Sage ERP Accpac Online 5.5 Sage ERP Accpac Online 5.5 Integration Resource Guide for Sage ERP Accpac And Sage CRM (Updated: July 11, 2010) Thank you for choosing Sage ERP Accpac Online. This Resource Guide will provide important

More information

IMPORTING QUICKBOOKS DATA. Use this guide to help you convert from QuickBooks to Denali

IMPORTING QUICKBOOKS DATA. Use this guide to help you convert from QuickBooks to Denali IMPORTING QUICKBOOKS DATA Use this guide to help you convert from QuickBooks to Denali Importing QuickBooks Data Copyright Notification At Cougar Mountain Software, Inc., we strive to produce high-quality

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

PBS Version New Enhancements. Passport Software, Inc. 181 Waukegan Road Suite 200 Northfield, IL

PBS Version New Enhancements. Passport Software, Inc. 181 Waukegan Road Suite 200 Northfield, IL PBS Version 12.06 New Enhancements Passport Software, Inc. 181 Waukegan Road Suite 200 Northfield, IL 60093 847.729.7900 Welcome to PBS v12.06 PBS v 12.06 is the second installment of enhancements that

More information

Sage 300. Sage CRM 7.3 Integration Upgrade Guide

Sage 300. Sage CRM 7.3 Integration Upgrade Guide Sage 300 Sage CRM 7.3 Integration Upgrade Guide This is a publication of Sage Software, Inc. Copyright 2015. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service

More information

OVERVIEW Feature Summary... 3 CONFIGURATION System Requirements... 4 ConnectWise Manage Configuration... 4

OVERVIEW Feature Summary... 3 CONFIGURATION System Requirements... 4 ConnectWise Manage Configuration... 4 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of GL Accounts... 5 Configuration

More information

Implementing a Notification Server

Implementing a Notification Server APPENDIXB This appendix describes how to modify the example servlet to customize for your own application, and contains the following sections: Event Notification Overview, page B-1 Running the Example

More information

Enterprise. Microsoft Dynamics and GL Posting

Enterprise. Microsoft Dynamics and GL Posting Enterprise Microsoft Dynamics and GL Posting Three Rivers Systems, Inc. Published: 11 July 2014 Abstract CAMS generates files that are imported into Microsoft Dynamics by means of the Integration Manager.

More information

MtS-ISL-SUD-SDNS for ARM Transaction Reporting (Article 26 of MiFIR) Commodities Position Reporting (Article 58 of MiFID II)

MtS-ISL-SUD-SDNS for ARM Transaction Reporting (Article 26 of MiFIR) Commodities Position Reporting (Article 58 of MiFID II) MtS-ISL-SUD-SDNS for ARM Transaction Reporting (Article 26 of MiFIR) Commodities Position Reporting (Article 58 of MiFID II) This tutorial describes how to send Transaction or Commodities Reports in ISO

More information

Industry Training Register. Guide to integration for ITOs

Industry Training Register. Guide to integration for ITOs Industry Training Register Guide to integration for ITOs Version 5.0 Objective id A823307 Published 15 January 2013 Page 2 of 29 ITR guide to integration for ITOs Contents 1 INTRODUCTION... 4 1.1 About

More information

Eclipse Business Connect XML. Release (Eterm)

Eclipse Business Connect XML. Release (Eterm) Eclipse Business Connect XML Release 8.6.4 (Eterm) Legal Notices 2008 Activant Solutions Inc. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Activant and the Activant

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

Enhancements Guide. Applied Business Services, Inc. 900 Wind River Lane Suite 102 Gaithersburg, MD General Phone: (800)

Enhancements Guide. Applied Business Services, Inc. 900 Wind River Lane Suite 102 Gaithersburg, MD General Phone: (800) Enhancements Guide Applied Business Services, Inc. 900 Wind River Lane Suite 102 Gaithersburg, MD 20878 General Phone: (800) 451-7447 Support Telephone: (800) 451-7447 Ext. 2 Support Email: support@clientaccess.com

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

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

An introduction API testing with SoapUI

An introduction API testing with SoapUI An introduction API testing with SoapUI Vincent Vonk 12-06-2018 CGI Group Inc. Agenda for the next 50 minutes What is SoapUI? What are Web APIs? Why test on API level? What can SoapUI do? Types of Web

More information

Securities Lending Reporting Web Service

Securities Lending Reporting Web Service Securities Lending Reporting Web Service External Interface Specification Broker Trades Message Specification November 2009 (November 2007) ASX Market Information 2009 ASX Limited ABN 98 008 624 691 Table

More information

SSO API Specification Doc (Quest Track) Version Date Author Description Index

SSO API Specification Doc (Quest Track) Version Date Author Description Index SSO API Specification Doc (Quest Track) Version Date Author Description 1.0 07/28/2015 Bob Rodgers Initial draft Index 1. Provision User 2. Verify User 3. Login User Conventions Status Codes User Object

More information

Traffic Engineering Management Provisioning

Traffic Engineering Management Provisioning 1 CHAPTER This chapter describes the provisioning support for Traffic Engineering Management (TEM) provided in Cisco Prime Provisioning. The TEM API solution provides bulk provisioning, updating, and deletion

More information

Web Services Overview

Web Services Overview Web Services Overview Using Eclipse WTP Greg Hester Pacific Hi-Tech, Inc. greg.hester.pacifichitech.com 1 September 17, 2008 Agenda Web Services Concepts How Web Services are used Web Services tools in

More information

CONNECTED 8.3 Release Notes

CONNECTED 8.3 Release Notes CONNECTED 8.3 Release Notes Introduction... 3 Minimum System Requirements for Connected 8.3... 3 Connected 8.3 Installation... 3 Enhancements... 4 General Enhancements... 4 Advanced Email Templates...

More information

How To Add a Borrower Via Web Services API

How To Add a Borrower Via Web Services API How To Add a Borrower Via Web Services API Summary This document outlines the use of the Web Services API available in the version 5(v5) knowledge content and library management (KCLM) solution for adding,

More information

Microsoft Dynamics GP. RapidStart Services

Microsoft Dynamics GP. RapidStart Services Microsoft Dynamics GP RapidStart Services January 31, 2013 Copyright Copyright 2013 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed

More information

Inventory Issues. Contents. Scanco Support - Scanco Support Phone number Opt Version

Inventory Issues. Contents. Scanco Support  - Scanco Support Phone number Opt Version Inventory Issues Contents Sales.Scanco.com Portal Settings... 2 For more information about the various lookups... 2 Main Applications Inventory icon... 3 Inv Issues icon... 3 Batch number prompt - Optional...

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

Understanding Prophet 21 Databases

Understanding Prophet 21 Databases Understanding Prophet 21 Databases Presented By: Jennifer Bankos Objectives Explain the difference between databases, tables and columns Extract data from different areas of the system Discuss basic SQL

More information

Macola Enterprise Suite Release Notes: Macola ES

Macola Enterprise Suite Release Notes: Macola ES Page 1 of 8 Macola Enterprise Suite Release Notes: Macola ES9.5.300 Release: version ES9.5.300 Controlled Release Date: October 26, 2009 Mai Cat Sub Ass Rel Doc ID: Dat General Availability Release Date:

More information

GoToMyPC Reporting Services API

GoToMyPC Reporting Services API GoToMyPC Reporting Services API Developer s Guide Version 1.2 Last Updated: March 8, 2013 Contents Overview of GoToMyPC API Offerings... 1 GoToMyPC Reporting API Overview... 1 Benefits... 1 Example Implementations...

More information

Supplier Enablement Quick Reference Guide (QRG) October 2017

Supplier Enablement Quick Reference Guide (QRG) October 2017 Supplier Enablement Quick Reference Guide (QRG) October 2017 1 Coupa Supplier Enablement Overview Coupa - Is a reimagining of the tools and technology we use to engage our suppliers from sourcing all the

More information

Enterprise PeopleTools 8.50 PeopleBook: Reporting Web Services

Enterprise PeopleTools 8.50 PeopleBook: Reporting Web Services Enterprise PeopleTools 8.50 PeopleBook: Reporting Web Services September 2009 Enterprise PeopleTools 8.50 PeopleBook: Reporting Web Services SKU pt850pbr0 Copyright 1988, 2009, Oracle and/or its affiliates.

More information

Main Menu Version 6.3 May 1, 2006

Main Menu Version 6.3 May 1, 2006 AIMS Version 6.3 May 1, 2006 Copyright Western Canadian Software, 2006 - TABLE OF CONTENTS Rebuild Indexes...5 Backup Files...5 Go Home...6 End System...8 OnQ Reporting...8 Client s Own M enu...9 Fax M

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13 1 Roadmap Dave Bain PeopleSoft Product Management 2 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any

More information

AutomationDirect.com Order Import Feature

AutomationDirect.com Order Import Feature AutomationDirect.com Order Import Feature This document describes the requirements to upload a CSV or XML format order file from your system into our AutomationDirect.com E-commerce system to create an

More information

PBS Version New Features. Passport Business Solutions. Passport Software, Inc. 181 Waukegan Road, Suite 200 Northfield, IL 60093

PBS Version New Features. Passport Business Solutions. Passport Software, Inc. 181 Waukegan Road, Suite 200 Northfield, IL 60093 PBS Version 12.05 New Features Passport Business Solutions Passport Software, Inc. 181 Waukegan Road, Suite 200 Northfield, IL 60093 Welcome PBS v12.05, designed for the 21 st century of business accounting

More information

How to correct Dynamics GP Errors Lab Exercises

How to correct Dynamics GP Errors Lab Exercises How to correct Dynamics GP Errors Lab Exercises Matt Mason mmason@manersolutions.com Fixing GP Errors Lab Exercise 1 Running Check Links Screen: (From Toolbar). Microsoft Dynamics GP Maintenance Check

More information

Activant Prophet 21. Understanding Prophet 21 Databases

Activant Prophet 21. Understanding Prophet 21 Databases Activant Prophet 21 Understanding Prophet 21 Databases This class is designed for Prophet 21 users that are responsible for report writing System Administrators Operations Managers Helpful to be familiar

More information

Inforce Transactions TECHNICAL REFERENCE. DTCCSOLUTIONS September Copyright 2011 Depository Trust Clearing Corporation. All Rights Reserved.

Inforce Transactions TECHNICAL REFERENCE. DTCCSOLUTIONS September Copyright 2011 Depository Trust Clearing Corporation. All Rights Reserved. TECHNICAL REFERENCE Inforce Transactions Page 1 Table of Contents 1 Overview... 3 2 Roles and Responsibilities... 3 2.1 Participants... 3 2.2 DTCC Server... 4 3 Communication Protocols... 5 3.1 SOAP Messages...

More information

https://blogs.oracle.com/angelo/entry/rest_enabling_oracle_fusion_sales., it is

https://blogs.oracle.com/angelo/entry/rest_enabling_oracle_fusion_sales., it is More complete RESTful Services for Oracle Sales Cloud Sample/Demo Application This sample code builds on the previous code examples of creating a REST Facade for Sales Cloud, by concentrating on six of

More information

Welcome. To We have taken the best from Partwizard.com and Servias and created the complete dealer access site!

Welcome. To   We have taken the best from Partwizard.com and Servias and created the complete dealer access site! Welcome To WWW.PARTWIZARD.BIZ We have taken the best from Partwizard.com and Servias and created the complete dealer access site! We have created this tutorial to help guide you through our new site. If

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

Create an account in Salesforce using the Web Services consumer functionality

Create an account in Salesforce using the Web Services consumer functionality Name of Solution: Mapping : Salesforce ACCOUNT using Web Services Business Requirement: Create an account in Salesforce using the Web Services consumer functionality Description: SalesForce provides a

More information

Web Services in Language Technology and Terminology Management

Web Services in Language Technology and Terminology Management Web Services in Language Technology and Terminology Management Uwe Quasthoff, Christian Wolff Leipzig University Computer Science Institute, NLP Dept. Augustusplatz 10/11 04109 Leipzig, Germany {quasthoff,

More information

SecureLINK Developer API Guide Version 1.0 Released October 9, 2013 Copyright , BridgePay Network Solutions, Inc. All rights reserved.

SecureLINK Developer API Guide Version 1.0 Released October 9, 2013 Copyright , BridgePay Network Solutions, Inc. All rights reserved. Developer API Guide SecureLINK Developer API Guide Version 1.0 Released October 9, 2013 Copyright 2011-2013, BridgePay Network Solutions, Inc. All rights reserved. The information contained herein is the

More information

Event Push SOAP Contract

Event Push SOAP Contract Event Push SOAP Contract Message Delivery Schedule Sertifi will attempt to deliver messages multiple times if the web service listener is down or is returning errors. The delivery schedule for all the

More information

ก. ก ก (krunapon@kku.ac.th) (pongsakorn@gmail.com) ก ก ก ก ก ก ก ก ก ก 2 ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก 3 ก ก 4 ก ก 1 ก ก ก ก (XML) ก ก ก ก ( HTTP) ก ก Web Services WWW Web services architecture

More information

CONNECTED 8.2 Release Notes

CONNECTED 8.2 Release Notes CONNECTED 8.2 Release Notes Introduction... 3 Minimum System Requirements for Connected 8.2... 3 Connected 8.2 Installation... 3 Enhancements... 4 General Enhancements... 4 Advanced Email Templates...

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

Invoice 13 Pro Outline

Invoice 13 Pro Outline Invoice 13 Pro Outline Invoice 13 Pro is a feature rich productivity tool for the small business or company from 1 to 30 users. It is notjust an Invoicing software. It is in fact an Invoicing, Accounts

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of GL Accounts... 5 Configuration

More information

V Features 1. CentOS and RedHat Enterprise Linux 5 support

V Features 1. CentOS and RedHat Enterprise Linux 5 support V7.5.17 Features 1 V7.5.17 Features System CentOS and RedHat Enterprise Linux 5 support CentOS and RedHat Enterprise Linux 5 are now supported operating systems for use with CounterPoint V7.5.17. NOTE:

More information

What's New: Release to

What's New: Release to 26-Apr-2016 Page : 1 14:48:39 Modification and Development Release Notes, new development and modifications completed in release version range included on report. Please review and if interested in any,

More information

TECSYS Streamline Enterprise System Page 1 of 7

TECSYS Streamline Enterprise System Page 1 of 7 TECSYS Streamline Enterprise System Page 1 of 7 Section 1: Module: A/P Accounts Payable 1. 10.3.1 Enhancement to Interface to Scan and Store A/P Invoice Images Module: A/R Accounts Payable > A/P Invoicing..

More information

ADDING CUSTOMERS. 5. Customer name and address information may be added in one of two ways:

ADDING CUSTOMERS. 5. Customer name and address information may be added in one of two ways: ADDING CUSTOMERS 1. Enter the customer name into the Customer Lookup field (refer to the Customer Lookup chapter for more information). 2. If the customer does not exist in the system, select Add Customer.

More information

User Guide. Version 4.0.5

User Guide. Version 4.0.5 BMS QuoteWerks Integration User Guide Version 4.0.5 August 4, 2017 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept

More information

Release Notice. Version Release Date: June 12, (440)

Release Notice. Version Release Date: June 12, (440) Release Notice Version 5.7.57 Release Date: June 12, 2017 www.sedonaoffice.perennialsoftware.com (440) 247-5602 Table of Contents About this Document... 5 Overview... 5 Applications Enhancements/Improvements...

More information

Q U IC KBOOKS ST UD EN T G U IDE. Lesson 2 Setting Up

Q U IC KBOOKS ST UD EN T G U IDE. Lesson 2 Setting Up Q U IC KBOOKS ST UD EN T G U IDE Lesson 2 Setting Up TABLE OF CONTENTS Lesson Objectives... 2-2 Creating a QuickBooks Company... 2-3 Starting the EasyStep Interview... 2-4 Entering Company Information...

More information

Printed Documentation

Printed Documentation Printed Documentation Table of Contents Getting Started... 1 Technical Support... 1 Introduction... 1 Getting Started... 3 Payment Option:... 3 Data Synchronization... 4 General Website settings... 5

More information

Authorization Key Upgrade Utility. Release 8.0

Authorization Key Upgrade Utility. Release 8.0 Authorization Key Upgrade Utility Release 8.0 Legal Notices 2007 Intuit Inc. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Intuit and the Intuit logo are registered

More information

PSA_QuoteWerks Guide Version April 27, 2018

PSA_QuoteWerks Guide Version April 27, 2018 PSA_QuoteWerks Guide Version 4.0.10 April 27, 2018 Contents Copyright Notice - Pulseway... 2 Introduction... 3 Prerequisites... 3 Installation... 3 Setup Wizard Configuration... 4 QuoteWerks Configuration...

More information

Announcing. Rapattoni Magic Version Highlights

Announcing. Rapattoni Magic Version Highlights Announcing Rapattoni Magic Version 8.18.02 Rapattoni Corporation is pleased to announce the newest release of Rapattoni Magic. Following are just a few of the new features and changes. Please see the attached

More information

CA SECURITY RX FORM PRICE LIST

CA SECURITY RX FORM PRICE LIST CA SECURITY RX FORM PRICE LIST December 2005 Only forms available with counterfeit-proof, true-watermark security paper in addition to all required security features to protect your patients, your pharmacists,

More information

Perceptive AP Invoice eform

Perceptive AP Invoice eform Perceptive Release Notes Version: 12.2.x Written by: Product Documentation, R&D Date: October 2016 2014 Perceptive Software. All rights reserved Perceptive Software is a trademark of Lexmark International

More information

Accounts Payable MODULE USER S GUIDE

Accounts Payable MODULE USER S GUIDE Accounts Payable MODULE USER S GUIDE INTEGRATED SOFTWARE SERIES Accounts Payable MODULE USER S GUIDE Version 3.1 Copyright 2005 2009, Interactive Financial Solutions, Inc. All Rights Reserved. Integrated

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of Integrator Login... 5 Option

More information

ShipRite s Account Receivable Instructions

ShipRite s Account Receivable Instructions ShipRite s Account Receivable Instructions Setting up a new account Click on the POS button Enter the existing customer s PHONE number here. If they are in the database, their information will appear at

More information

Integration Architecture. A quick introduction to the basics of Wynne s Integration Architecture

Integration Architecture. A quick introduction to the basics of Wynne s Integration Architecture Integration Architecture A quick introduction to the basics of Wynne s Integration Architecture The Basics: What is XML? HTML HyperText Markup Language XML Extensible Markup Language The biggest difference

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

Perceptive AP Invoice eform

Perceptive AP Invoice eform Perceptive Release Notes Version: 12.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved Perceptive Software is a trademark of Lexmark International

More information

Perceptive AP Invoice eform

Perceptive AP Invoice eform Perceptive Release Notes Version: 12.2.x Written by: Product Documentation, R&D Date: August 2016 2015 Perceptive Software. All rights reserved Perceptive Software is a trademark of Lexmark International

More information

Eclipse TMMG Sales Management Plus. Introduction

Eclipse TMMG Sales Management Plus. Introduction Introduction Eclipse has the ability to export customer, contact and pos/sales history data to be imported into the TMMG Sales Management Plus product. TMMG has recently changed the layout of the data

More information

27-Jan Customer Portal API. Quick reference for developers

27-Jan Customer Portal API. Quick reference for developers 27-Jan-2015 Customer Portal API Quick reference for developers Content 1. Brief overview and process flow... 2 1.1. Session... 2 1.2. Customer authorization... 2 1.3. Audio upload... 3 1.4. Calculate price...

More information

The SOAPbox User s Guide

The SOAPbox User s Guide The SOAPbox User s Guide Application Documentation Version 1.3 THE SOCIAL FOUNDRY November 9, 2012 The SOAPbox User s Guide Application Documentation Version 1.3 Congratulations on your purchase of the

More information

Defect Repair Report as of 10/10/2014

Defect Repair Report as of 10/10/2014 27.05 Page 1 of 16 Release Notes By Module Framework The system reports no longer fail due to special characters in certain report names. 27.05-632 Framework The EFI Pace server now includes a patch for

More information

CHAPTER 4: MULTIDIMENSIONAL ANALYSIS

CHAPTER 4: MULTIDIMENSIONAL ANALYSIS Chapter 4: Multidimensional Analysis CHAPTER 4: MULTIDIMENSIONAL ANALYSIS Training Objectives Actively participating during this chapter helps you to: Understand the function of Microsoft Dynamics GP Multidimensional

More information

Power IQ WS-API Programming Guide Release 2.0

Power IQ WS-API Programming Guide Release 2.0 Power IQ WS-API Programming Guide Release 2.0 Copyright 2010 Raritan, Inc. PIQAPI-0B-v2.0-E September 2010 255-80-6102-00 This document contains proprietary information that is protected by copyright.

More information

PO Processor Installation and Configuration Guide

PO Processor Installation and Configuration Guide PO Processor Installation and Configuration Guide Revised: 06/06/2014 2014 Digital Gateway, Inc. - All rights reserved Page 1 Table of Contents OVERVIEW... 3 HOW TO INSTALL PO PROCESSOR... 3 PO PROCESSOR

More information

Timeslips BillQuick 2011 Data Conversion

Timeslips BillQuick 2011 Data Conversion Time Billing and Business Management Software Built With Your Industry Knowledge Timeslips BillQuick 2011 Data Conversion Conversion Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505

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

SAGE ACCPAC. Sage Accpac ERP. Transaction Analysis and Optional Field Creator. Installation Guide

SAGE ACCPAC. Sage Accpac ERP. Transaction Analysis and Optional Field Creator. Installation Guide SAGE ACCPAC Sage Accpac ERP Transaction Analysis and Optional Field Creator Installation Guide 2008 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and all Sage Accpac product

More information

CyberSource Global Payment Management for Magento 2

CyberSource Global Payment Management for Magento 2 CyberSource Global Payment Management for Magento 2 User s Guide Version 2.0.3 January 2018 January 2018 CyberSource Global Payment Management for Magento 2.x 1 Contents Recent Changes... 5 1. Introduction:...

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

Gift Card Instructions Daxko Spectrum

Gift Card Instructions Daxko Spectrum Gift Cards Gift card are good to use for a variety of reason: 1. You can track the declining balance on them. 2. You can recharge them; treat it as a cash card. The cards can be attached to a recipient.

More information

Oracle Supplier Network

Oracle Supplier Network Oracle Supplier Network Buyer s Guide to Connecting 11i Release 4.3 Part No. B19153-01 June 2005 Oracle Supplier Network Buyer s Guide to Connecting 11i, Release 4.3 Part No. B19153-01 Copyright 2005,

More information

General Ledger Account by Sales Tax Code AR-1092

General Ledger Account by Sales Tax Code AR-1092 General Ledger Account by Sales Tax Code AR-1092 Overview This Extended Solution to the Accounts Receivable module A/R Sales Journal and S/O Daily Sales Update allows for the specification of a G/L account

More information

CPT374 Tutorial-Laboratory Sheet Two

CPT374 Tutorial-Laboratory Sheet Two CPT374 Tutorial-Laboratory Sheet Two Objectives: Understanding XML DTDs Tutorial Exercises Exercise 1 - An introduction to XML DTD Go to http://www.zvon.org/xxl/dtdtutorial/general/contents.html and read

More information

SOAP to Amazon MWS Migration Guide Contents

SOAP to Amazon MWS Migration Guide Contents SOAP to Amazon MWS Migration Guide Contents SOAP to Amazon MWS Migration Guide... 1 Migrating from SOAP to Amazon Marketplace Web Service (Amazon MWS)... 2 The Good News... 2 Amazon MWS Registration...

More information