Hi!:
I am having an issue with Ax 2009 and C#.
Passing simple string values is not a problem.
But, when I need to pass a data type List, Ax "don't see"
C# method.
For example:
The method in C# is the following:
using System.Xml.Serialization;
[XmlArray(IsNullable = true)]
[XmlArrayItem("formaPago")]
public FormaPago[] listaFormaPago
{
get
{
return listaFormaPagoField;
}
set
{
listaFormaPagoField = value;
}
}
In Ax, how I pass this data?.
totalesSubTotales.set_listaFormaPago();
the parameter between parenthesis show me in Ax:
void set _ListaFormaPago(FormaPago[] value)
Regards!