chuckplayer
Programmer
I'm trying to use eConnect to get a list of Payables Transactions and the Distribution (content of Payables Transactions Entry Zoom and Payables Distribution Zoom windows) and have been unsuccessful at finding the right way to do this. I'm calling eConnect.eConnect_Requester and passing the following XML Request (this returns the Payables transactions but NOT the distribution).
var requestBody = @"<DOCTYPE>Payables_History_Transaction</DOCTYPE><OUTPUTTYPE>2</OUTPUTTYPE><FORLOAD>0</FORLOAD><FORLIST>1</FORLIST><ACTION>0</ACTION>";
requestBody += @"<WhereClause>DOCDATE >= '" + docDate + @"'</WhereClause>";
I'm using C#.l b a c k
var requestBody = @"<DOCTYPE>Payables_History_Transaction</DOCTYPE><OUTPUTTYPE>2</OUTPUTTYPE><FORLOAD>0</FORLOAD><FORLIST>1</FORLIST><ACTION>0</ACTION>";
requestBody += @"<WhereClause>DOCDATE >= '" + docDate + @"'</WhereClause>";
I'm using C#.l b a c k