Thursday, August 11, 2016

Get Multiple return list class from ax in .Net

//Get Multiple return list class from ax in .Net

getTransMsg = clien.CreatePayment(context, parm);
if (getTransMsg != null && getTransMsg.Length > 0)
{
   foreach (ServiceReference1.ClsAXTransactionMessage item in getTransMsg)
   {
       MessageBox.Show(item.AxDocDocumentNo);
       MessageBox.Show(item.StatusMessage);
       MessageBox.Show(item.SuccesFlag.ToString());
   }

No comments:

Post a Comment

Copy Markup charges while posting purchase invoice using X++

 Copy Markup charges while posting purchase invoice using X++ Class: Important: Code logic is just for Reference.  New class => Duplicate...