亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SAP與RFC怎么在C#項目中進行調用

發布時間:2020-12-15 14:48:11 來源:億速云 閱讀:577 作者:Leah 欄目:開發技術

這篇文章給大家介紹SAP與RFC怎么在C#項目中進行調用,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

結構:

SAP與RFC怎么在C#項目中進行調用

安裝NuGet包:

SAP與RFC怎么在C#項目中進行調用

using SAP.Middleware.Connector;
using System.Data;

namespace DFDN.SDK.ServiceInterface
{
  public class RfcDemo
  {
    public void Loading()
    {
      RfcDestination SapRfcDestination = RfcDestinationManager.GetDestination(GetParameters()); //連接字符串
      RfcDestination SapRfcDestinationForConfig = RfcDestinationManager.GetDestination("dad"); //連接字符串 從App.config配置
      RfcRepository SapRfcRepository = SapRfcDestination.Repository;

      DataTable dt = new DataTable(); //數據源
      dt.Columns.Add("DATA1", typeof(string));
      dt.Columns.Add("DATA2", typeof(string));
      dt.Columns.Add("DATA3", typeof(string));

      IRfcFunction func = SapRfcRepository.CreateFunction("Z_RFC_XXXX");
      IRfcTable tSAP = func.GetTable("INPUT_TABLE");

      for (int i = 0; i < dt.Rows.Count; i++)
      {
        string str1 = dt.Rows[i][0].ToString();
        string str2 = dt.Rows[i][1].ToString();
        string str3 = dt.Rows[i][2].ToString();
        IRfcStructure struSAP = tSAP.Metadata.LineType.CreateStructure();
        struSAP.SetValue("str1", str1);
        struSAP.SetValue("str2", str2);
        struSAP.SetValue("str3", str3);
        tSAP.Append(struSAP);
      }

      func.SetValue("INPUT_TABLE", tSAP); //table 參數
      func.SetValue("WERKS", "A");    //單個參數  
      func.SetValue("STATUS", "B");  //單個參數
      func.Invoke(SapRfcDestination); //調用

      IRfcTable SAPDataTable = func.GetTable("RETURN_TABLE"); //獲取表格結果

      DataTable table = ToDataTable(SAPDataTable); //轉換DataTable
      string result = func.GetValue("X").ToString(); //獲取指定返回結果

    }

    /// <summary>
    /// RfcTable 轉換為 DataTable
    /// </summary>
    /// <param name="myrfcTable"></param>
    /// <returns></returns>
    public DataTable ToDataTable(IRfcTable myrfcTable)
    {
      DataTable loTable = new DataTable();
      int liElement;
      for (liElement = 0; liElement <= myrfcTable.ElementCount - 1; liElement++)
      {
        RfcElementMetadata metadata = myrfcTable.GetElementMetadata(liElement);

        loTable.Columns.Add(metadata.Name);
      }

      foreach (IRfcStructure Row in myrfcTable)
      {
        DataRow ldr = loTable.NewRow();

        for (liElement = 0; liElement <= myrfcTable.ElementCount - 1; liElement++)
        {
          RfcElementMetadata metadata = myrfcTable.GetElementMetadata(liElement);
          ldr[metadata.Name] = Row.GetString(metadata.Name);
        }
        loTable.Rows.Add(ldr);
      }
      return loTable;
    }

    /// <summary>
    /// SAP RFC 連接信息設置
    /// </summary>
    /// <returns></returns>
    public RfcConfigParameters GetParameters()
    {
      RfcConfigParameters parms = new RfcConfigParameters();

      parms.Add(RfcConfigParameters.AppServerHost, "192.168.0.114");  //SAP主機IP

      parms.Add(RfcConfigParameters.SystemNumber, "01"); //SAP實例

      parms.Add(RfcConfigParameters.User, "RFC_EDI"); //用戶名

      parms.Add(RfcConfigParameters.Password, "init1"); //密碼

      parms.Add(RfcConfigParameters.Client, "300"); // Client 

      parms.Add(RfcConfigParameters.Language, "ZH"); //登陸語言

      parms.Add(RfcConfigParameters.PoolSize, "10");

      parms.Add(RfcConfigParameters.IdleTimeout, "600");

      parms.Add(RfcConfigParameters.Name, "DAP");

      return parms;
    } 
  }
}
<?xml version="1.0"?>
<configuration>
 <configSections>
  <sectionGroup name="SAP.Middleware.Connector">
   <sectionGroup name="ClientSettings">
    <section name="DestinationConfiguration" type="SAP.Middleware.Connector.RfcDestinationConfiguration,sapnco"/>
   </sectionGroup>
  </sectionGroup>
 </configSections>
 <SAP.Middleware.Connector>
  <ClientSettings>
   <DestinationConfiguration>
    <destinations>
     <add NAME="dad" USER="ddac" PASSWD="qwe" CLIENT="110" SYSNR="00" ASHOST="192.168.0.111" LANG="ZH" GROUP="PUBLIC" MAX_POOL_SIZE="10" IDLE_TIMEOUT="600"></add>
    </destinations>
   </DestinationConfiguration>
  </ClientSettings>
 </SAP.Middleware.Connector>
</configuration>

關于SAP與RFC怎么在C#項目中進行調用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汉寿县| 武定县| 冀州市| 本溪市| 伊宁县| 新丰县| 太白县| 兴化市| 库尔勒市| 广州市| 杭锦旗| 弥渡县| 江达县| 浮山县| 永昌县| 饶河县| 连城县| 寻甸| 永泰县| 河源市| 新乡县| 保山市| 元阳县| 平谷区| 荔波县| 湘阴县| 含山县| 隆化县| 桐庐县| 罗平县| 昆山市| 勃利县| 施甸县| 鱼台县| 城步| 西乡县| 两当县| 青岛市| 安阳县| 威信县| 得荣县|