Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(SQL Server) Peoplevox WMS Export DataDemonstrates how to export data from a Peoplevox Warehouse Management System (WMS) using the GetData. It can return up to 1000 records for each call. The page number and number of items per page parameters are used to repeat the same method to return pages of information.
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls. -- CREATE PROCEDURE ChilkatSample AS BEGIN DECLARE @hr int DECLARE @iTmp0 int -- Important: Do not use nvarchar(max). See the warning about using nvarchar(max). DECLARE @sTmp0 nvarchar(4000) -- This example requires the Chilkat API to have been previously unlocked. -- See Global Unlock Sample for sample code. -- -------------------------------------------------------------------------------- -- Also see Chilkat's Online WSDL Code Generator -- to generate code and SOAP Request and Response XML for each operation in a WSDL. -- -------------------------------------------------------------------------------- DECLARE @success int -- Sends a POST that looks like this: -- POST /PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx HTTP/1.1 -- Content-Type: text/xml;charset=UTF-8 -- SOAPAction: http://www.peoplevox.net/GetData -- Content-Length: (automatically computed and added by Chilkat) -- Host: qac.peoplevox.net -- -- <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:peop="http://www.peoplevox.net/"> -- <soap:Header> -- <peop:UserSessionCredentials> -- <peop:UserId>PEOPLEVOX_USER_ID</peop:UserId> -- <peop:ClientId>PEOPLEVOX_CLIENT_ID</peop:ClientId> -- <peop:SessionId>PEOPLEVOX_SESSION_ID</peop:SessionId> -- </peop:UserSessionCredentials> -- </soap:Header> -- <soap:Body> -- <peop:GetData> -- <peop:getRequest> -- <peop:TemplateName>Item Types</peop:TemplateName> -- <peop:PageNo>1</peop:PageNo> -- <peop:ItemsPerPage>10</peop:ItemsPerPage> -- <peop:SearchClause>Name.Contains("T")</peop:SearchClause> -- </peop:getRequest> -- </peop:GetData> -- </soap:Body> -- </soap:Envelope> -- -- A few helpful notes about this request: -- 1) Notice that a UserId is needed here. This is different than the username required for Peoplevox authentication. -- The UserId for the admin account is 1. -- 2) The sample data contains a TEST product with SKU/Code= "TEST". Search key is set to "T". -- DECLARE @sbSoapXml int -- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbSoapXml OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '<?xml version="1.0" encoding="utf-8"?>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:peop="http://www.peoplevox.net/">' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <soap:Header>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <peop:UserSessionCredentials>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <peop:UserId>PEOPLEVOX_USER_ID</peop:UserId>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <peop:ClientId>PEOPLEVOX_CLIENT_ID</peop:ClientId>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <peop:SessionId>PEOPLEVOX_SESSION_ID</peop:SessionId>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' </peop:UserSessionCredentials>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' </soap:Header>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <soap:Body>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <peop:GetData>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <peop:getRequest>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <peop:TemplateName>Item Types</peop:TemplateName>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <peop:PageNo>1</peop:PageNo>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <peop:ItemsPerPage>10</peop:ItemsPerPage>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' <peop:SearchClause>Name.Contains("T")</peop:SearchClause>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' </peop:getRequest>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' </peop:GetData>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, ' </soap:Body>' + CHAR(13) + CHAR(10) EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '</soap:Envelope>' DECLARE @req int -- Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.HttpRequest', @req OUT EXEC sp_OASetProperty @req, 'HttpVerb', 'POST' EXEC sp_OASetProperty @req, 'SendCharset', 1 EXEC sp_OASetProperty @req, 'Charset', 'utf-8' EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Content-Type', 'text/xml' EXEC sp_OAMethod @req, 'AddHeader', NULL, 'SOAPAction', 'http://www.peoplevox.net/GetData' EXEC sp_OASetProperty @req, 'Path', '/PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx' EXEC sp_OAMethod @sbSoapXml, 'GetAsString', @sTmp0 OUT EXEC sp_OAMethod @req, 'LoadBodyFromString', @success OUT, @sTmp0, 'utf-8' DECLARE @http int -- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT EXEC sp_OASetProperty @http, 'FollowRedirects', 1 DECLARE @resp int EXEC sp_OAMethod @http, 'SynchronousRequest', @resp OUT, 'qac.peoplevox.net', 443, 1, @req EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT IF @iTmp0 <> 1 BEGIN EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @sbSoapXml EXEC @hr = sp_OADestroy @req EXEC @hr = sp_OADestroy @http RETURN END -- We should expect a 200 response if successful. EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT IF @iTmp0 <> 200 BEGIN EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT PRINT 'Response StatusCode = ' + @iTmp0 EXEC sp_OAGetProperty @resp, 'StatusLine', @sTmp0 OUT PRINT 'Response StatusLine: ' + @sTmp0 PRINT 'Response Header:' EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT PRINT @sTmp0 EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @sbSoapXml EXEC @hr = sp_OADestroy @req EXEC @hr = sp_OADestroy @http RETURN END DECLARE @xmlResponse int -- Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Xml', @xmlResponse OUT EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT EXEC sp_OAMethod @xmlResponse, 'LoadXml', @success OUT, @sTmp0 EXEC sp_OAMethod @xmlResponse, 'GetXml', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @resp -- A sample response is shown below. The following code loads the CSV into a Chilkat CSV object, and then demonstrates how to access the data from the CSV API. DECLARE @detail nvarchar(4000) EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @detail OUT, 'soap:Body|GetDataResponse|GetDataResult|Detail|*' DECLARE @csv int -- Use "Chilkat_9_5_0.Csv" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Csv', @csv OUT EXEC sp_OASetProperty @csv, 'HasColumnNames', 1 EXEC sp_OAMethod @csv, 'LoadFromString', @success OUT, @detail EXEC sp_OAGetProperty @csv, 'NumRows', @iTmp0 OUT PRINT 'NumRows = ' + @iTmp0 EXEC sp_OAGetProperty @csv, 'NumColumns', @iTmp0 OUT PRINT 'NumColumns = ' + @iTmp0 -- Iterate over the rows, getting the ItemCode, Name, and Barcode DECLARE @i int SELECT @i = 0 DECLARE @numRows int EXEC sp_OAGetProperty @csv, 'NumRows', @numRows OUT WHILE @i < @numRows BEGIN EXEC sp_OAMethod @csv, 'GetCellByName', @sTmp0 OUT, @i, 'ItemCode' PRINT 'ItemCode: ' + @sTmp0 EXEC sp_OAMethod @csv, 'GetCellByName', @sTmp0 OUT, @i, 'Name' PRINT 'Name: ' + @sTmp0 EXEC sp_OAMethod @csv, 'GetCellByName', @sTmp0 OUT, @i, 'Barcode' PRINT 'Barcode: ' + @sTmp0 PRINT '-' SELECT @i = @i + 1 END -- <?xml version="1.0" encoding="utf-8" ?> -- <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> -- <soap:Body> -- <GetDataResponse xmlns="http://www.peoplevox.net/"> -- <GetDataResult> -- <ResponseId>0</ResponseId> -- <TotalCount>7</TotalCount> -- <Detail>"ItemCode","Name","Barcode","Description","ItemGroup","UnitOfMeasure","DefaultEconomicOrderQuantity","DefaultLeadTime","DefaultSuppliersPartNumber","HasSerialNumbers","UseManufacturersSerialNumber","ReorderPoint","PickPolicy","Traceability","ShelfLife","DefaultNumberItemsPerContainer","DefaultContainerType","DefaultNumberItemsPerOuterCase","DefaultNumberItemsPerInnerCase","BuyPrice","WholesalePrice","RetailPrice","Weight","WeightMeasure","Height","Width","Depth","DimensionMeasure","Tags","Attribute1","Attribute2","Attribute3","Attribute4","Attribute5","Attribute6","Attribute7","Attribute8","Attribute9","Attribute10","Attribute11","Attribute12","Attribute13","Attribute14","Attribute15","OnHand","Allocated","Available","POQuantityOutstanding","MinimumPickLocationQuantity","DefaultReplenishmentQuantity" -- "B246","48 PACK TENNIS BALLS","503147002876","","Item group","EA","","","","False","False","0","","False","","288","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","9995","520","9475","0","0","0" -- "BGG1411","Scan testing product","503147011937","","Group1","EA","","","","False","False","0","","False","","288","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","0","0","0","0","0","0" -- "OLOO15","TENT PEG REMOVER","503147006613","","Group1","EA","","","","False","False","0","","False","","80","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","10000","15","9985","0","0","0" -- "TEST","testing product","123456789","testing product -- line 2","Group1","EA","","","","False","False","0","","False","","70","Pallet","20","10","0","0","0","10.00","kg","120.00","10.00","12.00","cm","","","","","","","","","","","","","","","","","0","0","0","0","0","0" -- "TY3120","PLASTIC COATED PLAYING CARDS","503147001942","","Item group","EA","","","","False","False","0","","False","","255","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","10000","213","9787","0","0","0" -- "TY5263","WATER ARROWS","503147007813","","Item group","EA","","","","False","False","0","","False","","144","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","10000","576","9424","0","0","0" -- "TY5281","QUOITS SET","503147007851","","Item group","EA","","","","False","False","0","","False","","48","Container","","","0","0","0","0.00","EA","0.00","0.00","0.00","cm","","","","","","","","","","","","","","","","","10000","0","10000","0","0","0"</Detail> -- <Statuses /> -- <ImportingQueueId>0</ImportingQueueId> -- <SalesOrdersToDespatchIds /> -- </GetDataResult> -- </GetDataResponse> -- </soap:Body> -- </soap:Envelope> EXEC @hr = sp_OADestroy @sbSoapXml EXEC @hr = sp_OADestroy @req EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @xmlResponse EXEC @hr = sp_OADestroy @csv END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.