有人用C#调用过SAP中的bapi吗
我现在用C#调用BAPI_NETWORK_GETDETAIL这个的时候,总是报错,说bapi中的一个字段不能转换“FIELD EARLY_FINISH_TIME of STRUCTURE BAPI_NETWORK_ACTIVITY_EXP (SETTER): cannot convert String into TIME”这个怎么办啊
RfcDestination rfcdest = RfcDestinationManager.GetDestination(rfc);
//RFC调用函数
RfcRepository rfcrep = rfcdest.Repository;
IRfcFunction myfun = null;
myfun = rfcrep.CreateFunction("BAPI_NETWORK_GETDETAIL");
////赋值import
myfun.SetValue("NUMBER", "000005001887");
//执行
myfun.Invoke(rfcdest);
我是这样写的,求高手解答
补充:.NET技术 , C#