ABAP语句获取一个数据库的所有数据table
ABAP statement to get all the data of a database table
谁能告诉我如何编写语句来获取数据库的所有字段 table 而不是使用数据库的每个字段名称创建工作区 table?
DATA gt_dd03l TYPE STANDARD TABLE OF dd03l INITIAL SIZE 0.
SELECT * FROM dd03l "Table Fields
INTO TABLE gt_dd03l
WHERE tabname = 'table name'.
您可以执行以下操作:
* define Table type of Business Partner Table BUT000
data: lt_table type table of but000 .
* Create Structure of the corresponding table type
data: ls_table like line of lt_table .
谁能告诉我如何编写语句来获取数据库的所有字段 table 而不是使用数据库的每个字段名称创建工作区 table?
DATA gt_dd03l TYPE STANDARD TABLE OF dd03l INITIAL SIZE 0.
SELECT * FROM dd03l "Table Fields
INTO TABLE gt_dd03l
WHERE tabname = 'table name'.
您可以执行以下操作:
* define Table type of Business Partner Table BUT000
data: lt_table type table of but000 .
* Create Structure of the corresponding table type
data: ls_table like line of lt_table .