This method creates a new warehouse (site) in Microsoft Dynamics GP.
Parameter |
Type |
Description |
---|---|---|
warehouse |
The warehouse object being created. |
|
context |
Specifies information about how the method will be called. |
|
policy |
Specifies the set of behaviors and behavior options to be applied during the operation. |
The following C# example creates a warehouse with the key value “TstWhse001”. The example populates the required Description property. All other properties are left as default values.
Legacy endpoint
using System; using System.Collections.Generic; using System.Text; using DynamicsGPWebServiceSample.DynamicsGPService; namespace DynamicsGPWebServiceSample { class Program { static void Main(string[] args) { CompanyKey companyKey; Context context; WarehouseKey warehouseKey; Warehouse warehouse; Policy warehouseCreatePolicy; // Create an instance of the service DynamicsGP wsDynamicsGP = new DynamicsGP(); // Be sure the default credentials are used wsDynamicsGP.UseDefaultCredentials = true; // Create a context with which to call the service context = new Context(); // Specify which company to use (sample company) companyKey = new CompanyKey(); companyKey.Id = (-1); // Set up the context object context.OrganizationKey = (OrganizationKey)companyKey; // Create a warehouse key object to identify the warehouse warehouseKey = new WarehouseKey(); warehouseKey.Id = "TstWhse001"; // Create the warehouse object warehouse = new Warehouse(); // Populate the required key and description properties warehouse.Key = warehouseKey; warehouse.Description = "Test warehouse for web services"; // Get the create policy for warehouse objects warehouseCreatePolicy = wsDynamicsGP.GetPolicyByOperation("CreateWarehouse", context); // Create the warehouse wsDynamicsGP.CreateWarehouse(warehouse, context, warehouseCreatePolicy); } } }
Native endpoint
using System; using System.Collections.Generic; using System.Linq; using System.Text; using DynamicsGPWebServiceSample.DynamicsGPService; namespace DynamicsGPWebServiceSample { class Program { static void Main(string[] args) { CompanyKey companyKey; Context context; WarehouseKey warehouseKey; Warehouse warehouse; Policy warehouseCreatePolicy; // Create an instance of the service DynamicsGPClient wsDynamicsGP = new DynamicsGPClient(); // Create a context with which to call the service context = new Context(); // Specify which company to use (sample company) companyKey = new CompanyKey(); companyKey.Id = (-1); // Set up the context object context.OrganizationKey = (OrganizationKey)companyKey; // Create a warehouse key object to identify the warehouse warehouseKey = new WarehouseKey(); warehouseKey.Id = "TstWhse001"; // Create the warehouse object warehouse = new Warehouse(); // Populate the required key and description properties warehouse.Key = warehouseKey; warehouse.Description = "Test warehouse for web services"; // Get the create policy for warehouse objects warehouseCreatePolicy = wsDynamicsGP.GetPolicyByOperation("CreateWarehouse", context); // Create the warehouse wsDynamicsGP.CreateWarehouse(warehouse, context, warehouseCreatePolicy); // Close the service if(wsDynamicsGP.State != CommunicationState.Faulted) { wsDynamicsGP.Close(); } } } }