ABAP查询读取内表到另一个内表

来源:百度知道 编辑:UC知道 时间:2024/05/11 17:13:56
我定义了一个内表ECW并且录入了数据在里面,我像把ECW的表里的数据查询并添加另一个内表到WA_ECW里.我写的语法是SELECT * INTO TABLE IT_ECW FROM ECW
但是系统显示错误"ECW" is not defined in the ABAP Dictionary as a table, projection view

如何解决.麻烦高手帮下忙,谢谢.

select:抽出数据库表中的数据时候使用。
检索内部表请用read table *** with key *** 。

example: read table ECW with key *** = "***" into ***(your work area).

更具体的请查询read table的用法。