AIF Operation -- Create()

AIF 中的服务一般会提供八种操作, 分别为create,delete,find,findKeys,getKeys,read,update, getChangeKey

 

我们今天来讨论如何使用AIF Service 中的create方法去读取 Dynamics AX中的数据

  1. 注册 SalesSalesOrderService 服务
  2. 创建一个NetTcp类型的端口,命名为TestAIFOperation,添加SalesSalesOrderService 服务的create方法
  3. 在VS2010种创建一个console类型的项目
  4. 取得端口中的服务地址(WSDL URI): http://RD7145D0511:8101/DynamicsAx/Services/TestAIFOperation
  1. 添加引用,右击Reference/Add Service Reference,将WSDL URI复制进去,点击Go按钮,再点击确定
  2. 执行一下代码:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using TestAIFCreateMethod.ServiceReference1;

 

namespace TestAIFCreateMethod

{

    class Program

    {

        static void Main(string[] args)

        {

            SalesOrderServiceClient client = new SalesOrderServiceClient();

            CallContext context = new CallContext();

            context.Company = "CEU";

 

            AxdSalesOrder salesOrder = new AxdSalesOrder();

            AxdEntity_SalesTable[] salesTable = new AxdEntity_SalesTable[1];

            salesTable[0] = new AxdEntity_SalesTable();

            salesTable[0].CustAccount = "1101";

            salesTable[0].PurchOrderFormNum = @"$amp;";

            salesTable[0].ReceiptDateRequested = DateTime.Today;

 

            AxdEntity_SalesLine[] lines = new AxdEntity_SalesLine[2];

            lines[0] = new AxdEntity_SalesLine();

            lines[0].ItemId = "1000";

            lines[0].SalesQty = 100;

            lines[0].SalesUnit = "ea";

 

            lines[1] = new AxdEntity_SalesLine();

            lines[1].ItemId = "1003";

            lines[1].SalesQty = 15;

            lines[1].SalesUnit = "ea";

 

            salesTable[0].SalesLine = lines;

            salesOrder.SalesTable = salesTable;

 

            try

            {

                EntityKey[] entityKey=client.create(context, salesOrder);

                foreach (EntityKey key in entityKey)

                {

                    Console.WriteLine();

                    Console.WriteLine("Output result:");

                    KeyField[] fields = key.KeyData;

                    foreach(KeyField field in fields)

                    {

                        Console.WriteLine("Field: {0}",field.Field);

                        Console.WriteLine("Value: {0}",field.Value);

                    }

                }

            }

            catch (Exception ex)

            {

                Console.WriteLine(ex.ToString());

            }

            finally

            {

                client.Close();

            }

            Console.ReadKey();

        }

    }

}

  1. 运行,结果如下:

AX中可以找到如下的记录:

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值