Ejemplo n.º 1
0
        public IRfcTable Rfc_Fgs_Dal(RFC_FGS_Model fgsModel, out RFC_IN_Message rfcMessage)
        {
            rfcMessage = new RFC_IN_Message();
            try
            {
                _configurationId = new RFC_SetUp();
                RfcDestinationManager.RegisterDestinationConfiguration(_configurationId);
                _dest       = RfcDestinationManager.GetDestination("SAPMS");
                _repository = _dest.Repository;
                IRfcFunction rfc   = _repository.CreateFunction(fgsModel.FunctionModule); //调用函数名
                IRfcTable    table = rfc.GetTable(fgsModel.E_SAP_FGO);                    //RFC表数据
                rfc.SetValue("I_MESKEY", fgsModel.I_MESKEY);                              //KEY随机号 不能重复
                rfc.SetValue("I_DATE", fgsModel.I_DATE);                                  //日期
                rfc.SetValue("I_TIME", fgsModel.I_TIME);                                  //时间
                rfc.SetValue("I_USER", fgsModel.I_USER);                                  //登录名
                rfc.Invoke(_dest);

                rfcMessage.E_RETURN_CODE = rfc.GetString("E_RETURN_CODE").ToString();
                //rfcMessage.E_RETURN_MESSAGE = rfc.GetString("E_RETURN_MESSAGE").ToString();
                rfcMessage.E_COUNT = rfc.GetInt("E_COUNT").ToString();
                rfcMessage.E_SUM   = rfc.GetInt("E_SUM").ToString();
                return(table);
            }
            catch (Exception exception)
            {
                rfcMessage.E_RETURN_MESSAGE = "接口FGS 错误:" + exception.ToString();
                return(null);
            }
            finally
            {
                RfcDestinationManager.UnregisterDestinationConfiguration(_configurationId);
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// FGS
 /// </summary>
 /// <param name="fgsModel"></param>
 /// <param name="rfcMessage"></param>
 /// <returns></returns>
 public DataTable Rfc_Fgs_DataTable(RFC_FGS_Model fgsModel, out RFC_IN_Message rfcMessage)
 {
     return(convertDataSap.ConversionDataTableRFCTable(rfcFgsDal.Rfc_Fgs_Dal(fgsModel, out rfcMessage)));
 }