怎么Import文本文件到SAP中
SIL-EM.doc各位,偶公司之前的系统就可以把文本文件的信息自动导入SC中,做为开一张新的订单,请问在SAP怎样才能实现呢?...
SIL-EM.doc 各位,偶公司之前的系统就可以把文本文件的信息自动导入SC中,做为开一张新的订单,请问在SAP 怎样才能实现呢?
展开
2013-10-23
展开全部
谢谢你的回复!SC就是sales Order,SD模块的销售订单,我们之前的ERP是Navision,我们就把客户 的Order form是电子表格形式用Macro处理,导成文本的形式,再在ERP中做Dataport,直接实现把 文本导入ERP中,用户就不需要再输入订单了,可在SAP中具体没有实现过,谢谢你的方 法,偶会试一下是否成功.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-23
展开全部
BDC: ?CALL FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT' ? ?EXPORTING ? ? ?filename ? ? ? ? ? ? ? ?= p_file ? ? ?i_begin_col ? ? ? ? ? ? = 1 ? ? ?i_begin_row ? ? ? ? ? ? = 1 ? ? ?i_end_col ? ? ? ? ? ? ? = 9 ? ? ?i_end_row ? ? ? ? ? ? ? = 1000 ? ?TABLES ? ? ?intern ? ? ? ? ? ? ? ? ?= l_intern ? ?EXCEPTIONS ? ? ?inconsistent_parameters = 1 ? ? ?upload_ole ? ? ? ? ? ? ?= 2 ? ? ?OTHERS ? ? ? ? ? ? ? ? ?= 3. ?LOOP AT l_intern. ? ?MOVE l_intern-col TO l_index. ? ?ASSIGN COMPONENT l_index OF STRUCTURE i_table TO . ? ?MOVE l_intern-value TO . ? ?AT END OF row. ? ? ?APPEND i_table. ? ? ?CLEAR i_table. ? ?ENDAT. ?ENDLOOP. 试验一下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-23
展开全部
What does "SC" stand for? I believe that this implementation might be quite simple. Just upload your file into an internal table by using any of function modules "UPLOAD", "WS_UPLOAD", "GUI_UPLOAD" etc. Then do whatever is needed from the data of internal table.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-23
展开全部
Here are two options I can think of so far 1) BDC Find the transaction in SAP for sales order creation, record the procedure(t-code: sm35 or shdb), create a BDC program, and adjust the program by using your data file as input 2) BAPI Find a BAPI for order creation, call the BAPI from outside
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-23
展开全部
Dear shaw,thx for you help,I will try according to your advice.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询