导入参数中有三个不同的表(OPTIONS,FIELDS和DATA)" QUERY_TABLE" =" LTAP"。 我创建了一个java程序来显示表FIELDS中的FIELDNAME列,其中包含帮助函数RFC_READ_TABLE。
当我调用方法step2WorkWithTable()时,它总是出现错误 com.sap.conn.jco.AbapException:(126)TABLE_NOT_AVAILABLE:TABLE_NOT_AVAILABLE类DA类型E的消息300 。 任何人都可以解释错误吗?以及如何解决它?
我的代码:
import java.util.Properties;
import com.sap.conn.jco.AbapException;
import com.sap.conn.jco.JCoDestination;
import com.sap.conn.jco.JCoDestinationManager;
import com.sap.conn.jco.JCoException;
import com.sap.conn.jco.JCoFunction;
import com.sap.conn.jco.ext.DestinationDataProvider;
import com.sap.conn.jco.JCoStructure;
import com.sap.conn.jco.JCoTable;
public class RFC_Read_Table {
public static void main(String[] args) throws JCoException
{
System.out.println("Step1: connect SAP without Pool");
step1Connect();
System.out.println("");
System.out.println("Step2: call RFC_Read_Table ");
step2WorkWithTable();
System.out.println("--------------------------------");
System.out.println("finished");
}
static {
String DESTINATION_NAME1 = "mySAPSystem";
Properties connectProperties = new Properties();
connectProperties.setProperty(DestinationDataProvider.JCO_ASHOST, "ABC");
connectProperties.setProperty(DestinationDataProvider.JCO_SYSNR, "33");
connectProperties.setProperty(DestinationDataProvider.JCO_SAPROUTER, "/A/123/");
connectProperties.setProperty(DestinationDataProvider.JCO_CLIENT, "100");
connectProperties.setProperty(DestinationDataProvider.JCO_USER, "UserID");
connectProperties.setProperty(DestinationDataProvider.JCO_PASSWD, "Passwort");
connectProperties.setProperty(DestinationDataProvider.JCO_LANG, "de");
createDestinationDataFile(DESTINATION_NAME1, connectProperties);
}
private static void createDestinationDataFile(String destinationName, Properties connectProperties) {
File destCfg = new File(destinationName+".jcoDestination");
try
{
FileOutputStream fos = new FileOutputStream(destCfg, false);
connectProperties.store(fos, "for tests only !");
fos.close();
}
catch (Exception e)
{
throw new RuntimeException("Unable to create the destination files", e);
}
}
public static void step1Connect() throws JCoException
{
try {
JCoDestination destination = JCoDestinationManager.getDestination("mySAPSystem");
System.out.println("connected");
destination.ping();
} catch (JCoException e) {
e.printStackTrace();
System.out.println("not connected");
}
}
public static void step2WorkWithTable() throws JCoException
{
JCoDestination destination = JCoDestinationManager.getDestination("mySAPSystem");
JCoFunction function = destination.getRepository().getFunction("RFC_READ_TABLE");
if (function == null)
throw new RuntimeException("RFC_Read_Table not found in SAP.");
try
{
function.execute(destination);
}
catch(AbapException e)
{
System.out.println(e.toString());
return;
}
function.getImportParameterList().setValue("QUERY_TABLE","LTAP");
JCoTable codes = function.getTableParameterList().getTable("FIELDS");
codes.appendRow();
for (int i = 0; i < codes.getNumRows(); i++)
{
codes.setRow(i);
System.out.println(codes.getString("FIELDNAME"));
}
codes.firstRow();
for (int i = 0; i < codes.getNumRows(); i++, codes.nextRow())
{
function = destination.getRepository().getFunction("RFC_READ_TABLE");
if (function == null)
throw new RuntimeException("RFC_READ_TABLE not found in SAP.");
function.getImportParameterList().setValue("FIELDNAMEID", codes.getString("FIELDNAME"));
try
{
function.execute(destination);
}
catch (AbapException e)
{
System.out.println(e.toString());
return;
}
JCoStructure detail = function.getExportParameterList().getStructure("FIELDS");
System.out.println(detail.getString("FIELDNAME"));
}
}
}
答案 0 :(得分:0)
我看到你正在使用JCoDestinationManager连接到ABAP系统。这意味着您正在使用mySAPSystem目标中的属性。请检查mySAPSystem是否连接到正确的ABAP系统。
需要这些行
Properties connectProperties = new Properties();
connectProperties.setProperty(DestinationDataProvider.JCO_ASHOST, "ABC");
connectProperties.setProperty(DestinationDataProvider.JCO_SYSNR, "33");
connectProperties.setProperty(DestinationDataProvider.JCO_CLIENT, "100");
connectProperties.setProperty(DestinationDataProvider.JCO_USER, "UserID");
connectProperties.setProperty(DestinationDataProvider.JCO_PASSWD, "Passwort");
connectProperties.setProperty(DestinationDataProvider.JCO_LANG, "de");
我不认为它们可以在你的程序中的任何地方使用。它们似乎不适用于您的连接......
答案 1 :(得分:0)
您的JCo代码没有错。该错误消息来自SAP系统。因此,您需要检查SAP系统中该错误代码的含义。这可以在事务SE91中完成。输入消息类别=“ DA”,消息编号=“ 300”,然后单击显示。
我为您完成了此操作,结果是: “不存在&的活动名称标签” 其中“&”需要替换为输入(在这种情况下为“ LTAP”)。因此,我们有“ LTAP不存在活动的名称标签”。
此错误的基本含义是:数据库表“ LTAP”存在于数据库中,但尚未在ABAP DDIC中激活。 (也许是因为它仍然包含语法错误,或者缺少所需的数据元素/域等)。
解决方案:转到事务SE11并尝试激活该表。这可能会给您有关此表出问题的错误消息。修复所有语法错误,将其激活,然后就可以使用。
注意:如果LTAP是SAP提供的标准表,则此错误可能意味着从SAP安装包含对该表的修改的传输/热包时出了点问题。在这种情况下,您最好与SAP支持人员联系,以使表再次回到“一致”状态。