コード例 #1
0
ファイル: Supplier_U8.cs プロジェクト: xcxlTeam/xcxl
        public bool GetSupplierInfoForU8(ref Supplier_Model SupplierInfo, ref string strErrMsg)
        {
            try
            {
                //var sap_comm = SAP_Common.SAP_Common.CreateInstance();
                //IRfcTable rtbInput = null;
                //string tableindex = null;
                //string functionName = "ZLS_LIFNR_READ_WMS";
                //Dictionary<string, string> lstParameters = new Dictionary<string, string>();
                //lstParameters.Add("IM_LIFNR", SupplierInfo.SupplierCode);
                //Dictionary<string, Dictionary<string, object>> lstStructures = null;
                //List<string> ParameterNamesForOut = null;
                //Dictionary<string, string> ParametersOutput = null;
                //List<string> StructureNamesForOut = null;
                //Dictionary<string, IRfcStructure> StructureOutputs = null;
                //List<string> tableNamesForOut = new List<string>() { "T_LFA1","RETURN" };
                //Dictionary<string, IRfcTable> rtbsOutput = null;

                //bool bSucc = sap_comm.getSapFunctionToTable(functionName, lstParameters, lstStructures, rtbInput, tableindex, ParameterNamesForOut, out ParametersOutput, StructureNamesForOut,
                //        out StructureOutputs, tableNamesForOut, out rtbsOutput, ref strErrMsg);

                //if (bSucc == false)
                //{
                //    return bSucc;
                //}

                //SupplierInfo = CreateSupplierInfo(rtbsOutput["T_LFA1"]);

                return(true);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
コード例 #2
0
ファイル: Supplier_Func.cs プロジェクト: xcxlTeam/xcxl
 public bool GetSupplierInfoForU8(ref Supplier_Model SupplierInfo, ref string strErrMsg)
 {
     try
     {
         Supplier_U8 SLA = new Supplier_U8();
         return(SLA.GetSupplierInfoForU8(ref SupplierInfo, ref strErrMsg));
     }
     catch (Exception ex)
     {
         strErrMsg = ex.Message;
         return(false);
     }
 }