GetCurrencyPostingAccountList


Description

Retrieves a list of currency posting account objects that match the specified criteria.

Parameters

Parameter

Type

Description

criteria

CurrencyPostingAccountCriteria

The currency posting account criteria object that specifies which currency posting account objects are returned.

context

Context

Specifies information about how the method will be called.


Return Value:

Value

Type

Description

GetCurrencyPostingAccountListResult

ArrayOfCurrencyPostingAccount

The list of currency posting account objects that match the specified criteria.


Interfaces

 

Examples

The following C# example retrieves the list of currency posting account objects for the currencies with the ISO code “NZD”, representing New Zealand dollars. The total number of objects is displayed in a message box.

 Legacy endpoint

using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using DynamicsGPWebServiceSample.DynamicsGPService;

namespace DynamicsGPWebServiceSample
{
	class Program
	{
		static void Main(string[] args)
		{
			CompanyKey companyKey;
			Context context;
			CurrencyPostingAccountCriteria currencyPostingAccountCriteria;
			CurrencyPostingAccount[] currencyPostingAccountList;
			LikeRestrictionOfString currencyRestriction;

			// Create an instance of the service
			DynamicsGP wsDynamicsGP = new DynamicsGP();

			// Be sure that default credentials are being 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
			context.OrganizationKey = companyKey;

			// Specify the criteria for the currency posting account objects to retrieve
			currencyRestriction = new LikeRestrictionOfString();
			currencyRestriction.Like = "ZAR";
			currencyPostingAccountCriteria = new CurrencyPostingAccountCriteria();
			currencyPostingAccountCriteria.Id = currencyRestriction;

			// Retrieve the list of currency posting account objects
			currencyPostingAccountList = wsDynamicsGP.GetCurrencyPostingAccountList
			(currencyPostingAccountCriteria, context);

			// Display how many objects were returned
			MessageBox.Show(currencyPostingAccountList.Length.ToString());
	}
}
}

 Native endpoint

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using DynamicsGPWebServiceSample.DynamicsGPService;

namespace DynamicsGPWebServiceSample
{
	class Program
	{
		static void Main(string[] args)
		{
			CompanyKey companyKey;
			Context context;
			CurrencyPostingAccountCriteria currencyPostingAccountCriteria;
			CurrencyPostingAccount[] currencyPostingAccountList;
			LikeRestrictionOfstring currencyRestriction;

			// 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
			context.OrganizationKey = companyKey;

			// Specify the criteria for the currency posting account objects to retrieve
			currencyRestriction = new LikeRestrictionOfstring();
			currencyRestriction.Like = "ZAR";
			currencyPostingAccountCriteria = new CurrencyPostingAccountCriteria();
			currencyPostingAccountCriteria.Id = currencyRestriction;

			// Retrieve the list of currency posting account objects
			currencyPostingAccountList = wsDynamicsGP.GetCurrencyPostingAccountList
			(currencyPostingAccountCriteria, context);

			// Display how many objects were returned
			MessageBox.Show(currencyPostingAccountList.Length.ToString());

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


Documentation Feedback