我正在开发一个Windows应用程序,在这里我想从sap系统中提取数据并在datagridview中显示它... 我已经单独提取了列名,如名称,城市等等。
我不知道如何从列中提取数据,任何人都可以帮我处理代码吗?
我正在使用RFC_READ_TABLE功能模块和rfc destiantion manager
提前致谢!!!
答案 0 :(得分:9)
未经测试,但这基本上是它的工作原理:
首先创建连接
RfcDestination destination = mDestinationManager.GetDestination("MYDESTINATION");
创建功能
IRfcFunction readTable = destination.Repository.CreateFunction("RFC_READ_TABLE");
在调用函数之前设置参数
// we want to query table KNA1
readTable.SetValue("QUERY_TABLE", "KNA1");
// fields will be separated by semicolon
readTable.SetValue("DELIMITER", ";");
通过从函数中检索表来创建表参数,使用Append()函数添加行并使用SetValue()为该行中的各个列设置值
// Parameter table FIELDS contains the columns you want to receive
// here we query 2 fields, KUNNR and NAME1
IRfcTable fieldsTable = readTable.GetTable("FIELDS");
fieldsTable.Append();
fieldsTable.SetValue("FIELDNAME", "KUNNR");
fieldsTable.Append();
fieldsTable.SetValue("FIELDNAME", "NAME1");
// the table OPTIONS contains the WHERE condition(s) of your query
// here a single condition, KUNNR is to be 0012345600
// several conditions have to be concatenated in ABAP syntax, for instance with AND or OR
IRfcTable optsTable = readTable.GetTable("OPTIONS");
optsTable.Append();
optsTable.SetValue("TEXT", "KUNNR = '0012345600'");
调用函数
readTable.Invoke(destination);
处理数据
IRfcTable dataTable = readTable.GetTable("DATA");
foreach(var dataRow in dataTable)
{
string data = dataRow.GetValue("WA");
string[] columns = data.Split(';');
}
答案 1 :(得分:0)
对于 RFC_READ_TABLE,您可能还想考虑在 sourceforge.net 上使用免费的 .net ExtracTable 工具 它使用 RFC_READ_TABLE 并将报告到 Excel 或 CSV 文件。 由于 RFC_READ_TABLE 可能会给超过 512 个字符的记录带来问题,因此上面的工具会很小心。或者,您必须为此类 SAP 表编写自己的拆分和连接例程。但这总是有利有弊。