Share via


UpdateServiceQuote

Description

Updates the specified service quote object, storing the current values in the database.

Parameters

Parameter

Type

Description

serviceQuote

ServiceQuote

The service quote object that is being updated.

context

Context

Specifies information about how the method will be called.

policy

Policy

Specifies the set of behaviors and behavior options to be applied during the operation.

Interfaces

  • Dynamics GP
  • Field Service

Examples

The following C# example retrieves the service quote document with the service document Id of "SQTEST0100". This example uses the service quote document created by the CreateServiceQuote example. The service quote description property is updated with "This is a test quote". The UpdateServiceQuote operation saves the newly assigned description and the service quote object's other properties to the database.

Cc508690.LegacyEndpoint(en-us,MSDN.10).gif** 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;
            ServiceDocumentKey serviceDocumentKey;
            ServiceQuote serviceQuote;
            Policy serviceQuoteUpdatePolicy;

            // 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 service document key object
            serviceDocumentKey = new ServiceDocumentKey();
            serviceDocumentKey.Id = "SQTEST0100";

            // Retrieve the specified service quote object
            serviceQuote = wsDynamicsGP.GetServiceQuoteByKey(serviceDocumentKey, context);

            // Update the Description property
            serviceQuote.Description = "This is a test quote.";

            // Get the update policy for service quote
            serviceQuoteUpdatePolicy = wsDynamicsGP.GetPolicyByOperation("UpdateServiceQuote", context);

            // Update the service quote information
            wsDynamicsGP.UpdateServiceQuote(serviceQuote, context, serviceQuoteUpdatePolicy);
        }
    }
}

Cc508690.NativeEndpoint(en-us,MSDN.10).gif** Native endpoint **

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using DynamicsGPWebServiceSample.DynamicsGPService;

namespace DynamicsGPWebServiceSample
{
    class Program
    {
        static void Main(string[] args)
        {
            CompanyKey companyKey;
            Context context;
            ServiceDocumentKey serviceDocumentKey;
            ServiceQuote serviceQuote;
            Policy serviceQuoteUpdatePolicy;

            // 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 service document key object
            serviceDocumentKey = new ServiceDocumentKey();
            serviceDocumentKey.Id = "SQTEST0100";

            // Retrieve the specified service quote object
            serviceQuote = wsDynamicsGP.GetServiceQuoteByKey(serviceDocumentKey, context);

            // Update the Description property
            serviceQuote.Description = "This is a test quote.";

            // Get the update policy for service quote
            serviceQuoteUpdatePolicy = wsDynamicsGP.GetPolicyByOperation("UpdateServiceQuote", context);

            // Update the service quote information
            wsDynamicsGP.UpdateServiceQuote(serviceQuote, context, serviceQuoteUpdatePolicy);

            // Close the service
            if(wsDynamicsGP.State != CommunicationState.Faulted)
            {
                wsDynamicsGP.Close();
            }
        }
    }
}