This method creates a new sales process hold setup.
Parameter |
Type |
Description |
---|---|---|
salesProcessHoldSetup |
The sales process hold setup 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 sales process hold setup. The example populates the required Key, sets the IsFulfillHold property to “true” and the IsPrintHold, IsPostHold, and IsTransferHold properties to “false”. All other properties are set to default values. The CreateSalesProcessHoldSetup operation saves the new sales process hold setup.
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; SalesProcessHoldSetupKey salesProcessHoldSetupKey; SalesProcessHoldSetup salesProcessHoldSetup; Policy salesProcessHoldSetupCreatePolicy; // 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 sales process hold setup key object salesProcessHoldSetupKey = new SalesProcessHoldSetupKey(); salesProcessHoldSetupKey.Id = "Confirm"; // Create a sales process hold setup object // Populate the Key and the 'Hold' properties salesProcessHoldSetup = new SalesProcessHoldSetup(); salesProcessHoldSetup.Key = salesProcessHoldSetupKey; salesProcessHoldSetup.IsPrintHold = false; salesProcessHoldSetup.IsFulfillHold = true; salesProcessHoldSetup.IsPostHold = false; salesProcessHoldSetup.IsTransferHold = false; // Get the create policy for sales process hold setup objects salesProcessHoldSetupCreatePolicy = wsDynamicsGP.GetPolicyByOperation( "CreateSalesProcessHoldSetup", context); // Create the sales process hold setup wsDynamicsGP.CreateSalesProcessHoldSetup(salesProcessHoldSetup, context, salesProcessHoldSetupCreatePolicy); } } }
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; SalesProcessHoldSetupKey salesProcessHoldSetupKey; SalesProcessHoldSetup salesProcessHoldSetup; Policy salesProcessHoldSetupCreatePolicy; // 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 sales process hold setup key object salesProcessHoldSetupKey = new SalesProcessHoldSetupKey(); salesProcessHoldSetupKey.Id = "Confirm"; // Create a sales process hold setup object // Populate the Key and the 'Hold' properties salesProcessHoldSetup = new SalesProcessHoldSetup(); salesProcessHoldSetup.Key = salesProcessHoldSetupKey; salesProcessHoldSetup.IsPrintHold = false; salesProcessHoldSetup.IsFulfillHold = true; salesProcessHoldSetup.IsPostHold = false; salesProcessHoldSetup.IsTransferHold = false; // Get the create policy for sales process hold setup objects salesProcessHoldSetupCreatePolicy = wsDynamicsGP.GetPolicyByOperation( "CreateSalesProcessHoldSetup", context); // Create the sales process hold setup wsDynamicsGP.CreateSalesProcessHoldSetup(salesProcessHoldSetup, context, salesProcessHoldSetupCreatePolicy); // Close the service if(wsDynamicsGP.State != CommunicationState.Faulted) { wsDynamicsGP.Close(); } } } }