Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You don't <em>have</em> to use SQL; you can use <code>eConnectOut</code> to retrieve data, but the result sets are somewhat limited out of the box. In the end I found that just dealing with SQL was easier for me because <code>eConnectOut</code> doesn't give you access to all of the GP data without manipulation to the <strong>eConnect_Out_Setup</strong> table which is cumbersome at best. </p> <p>There's a long list of <strong>DOCTYPEs</strong> in the <strong>eConnect_Out_Setup</strong> table for pre-existing <code>eConnectOut</code> queries if you're interested. The <strong>DOCTYPE</strong> you are probably looking for is <strong>Vendor</strong> (which is in the <strong>PM00200</strong> table if you're using SQL).</p> <p>Here's an example of <code>eConnectOut</code> using C#: <a href="http://msdn.microsoft.com/en-us/library/ff623639.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ff623639.aspx</a></p> <p>If you are using XML for eConnect transactions, here's an example of that:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;eConnect xmlns:dt="urn:schemas-microsoft-com:datatypes"&gt; &lt;RQeConnectOutType&gt; &lt;eConnectProcessInfo&gt; &lt;Outgoing&gt;TRUE&lt;/Outgoing&gt; &lt;MessageID&gt;Customer&lt;/MessageID&gt; &lt;/eConnectProcessInfo&gt; &lt;eConnectOut&gt; &lt;DOCTYPE&gt;Customer&lt;/DOCTYPE&gt; &lt;OUTPUTTYPE&gt;2&lt;/OUTPUTTYPE&gt; &lt;INDEX1TO&gt;346710&lt;/INDEX1TO&gt; &lt;INDEX1FROM&gt;346710&lt;/INDEX1FROM&gt; &lt;FORLOAD&gt;0&lt;/FORLOAD&gt; &lt;FORLIST&gt;1&lt;/FORLIST&gt; &lt;ACTION&gt;0&lt;/ACTION&gt; &lt;ROWCOUNT&gt;0&lt;/ROWCOUNT&gt; &lt;REMOVE&gt;0&lt;/REMOVE&gt; &lt;/eConnectOut&gt; &lt;/RQeConnectOutType&gt; &lt;/eConnect&gt; </code></pre> <p>More documentation on <code>eConnectOut</code> can be found <a href="http://msdn.microsoft.com/en-us/library/ff623993.aspx" rel="nofollow">on MSDN</a>.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload