Updates the specified corporate account object, storing the current values in the database.
Parameter |
Type |
Description |
---|---|---|
corporateAccount |
The corporate account object that is being updated. |
|
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 retrieves the corporate account with the key value “COMMUNIC0001” and sets the ApplyHoldActiveStatusOfParentAcrossCorporateAccount property. The UpdateCorporateAccount operation saves the change. The “COMMUNIC0001” corporate account used in this example was created by the CreateCorporateAccount example.
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; CustomerKey customerKey; CorporateAccount corporateAccount; Policy updateCorpAccountPolicy; // 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 customer key to specify the corporate account customerKey = new CustomerKey(); customerKey.Id = "COMMUNIC0001"; // Retrieve the corporate account object corporateAccount = wsDynamicsGP.GetCorporateAccountByKey(customerKey, context); // Set the ApplyHoldActiveStatusOfParentAcrossCorporateAccount property corporateAccount.ApplyHoldActiveStatusOfParentAcrossCorporateAccount = true; // Get the update policy for corporate accounts updateCorpAccountPolicy = wsDynamicsGP.GetPolicyByOperation("UpdateCorporateAccount", context); // Update the corporate account wsDynamicsGP.UpdateCorporateAccount(corporateAccount, context, updateCorpAccountPolicy); } } }
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; CustomerKey customerKey; CorporateAccount corporateAccount; Policy updateCorpAccountPolicy; // 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 customer key to specify the corporate account customerKey = new CustomerKey(); customerKey.Id = "COMMUNIC0001"; // Retrieve the corporate account object corporateAccount = wsDynamicsGP.GetCorporateAccountByKey(customerKey, context); // Set the ApplyHoldActiveStatusOfParentAcrossCorporateAccount property corporateAccount.ApplyHoldActiveStatusOfParentAcrossCorporateAccount = true; // Get the update policy for corporate accounts updateCorpAccountPolicy = wsDynamicsGP.GetPolicyByOperation("UpdateCorporateAccount", context); // Update the corporate account wsDynamicsGP.UpdateCorporateAccount(corporateAccount, context, updateCorpAccountPolicy); // Close the service if(wsDynamicsGP.State != CommunicationState.Faulted) { wsDynamicsGP.Close(); } } } }