(0人评价)
20230916SAP-ABAP开发课程

20230916SAP-ABAP开发课程

价格 免费
会员免费学

data : begin of  + 名字。

end of 名字。

工作区

types : 

begin of   + 名字。 

end of  + 名字。

多个类型定义为一个捆绑类型,可以重复使用,又被称作构造“structure”.

data it_coma table of lv_coma.

定义内表

data it_001 type table of t001.

也可以用数据内的表定义内表

append is_coma to it_coma.

附加一行且永远在表内最后一行显示。

clear + 名字。

clear + 内表名字[].

清除(可以清除某个字段,某个工作区,某个内表,但是不能清除常量)

loop at it_coma into is_coma.

write: /  + 名字.

endloop.

循环内表

uline.

分割线

read table 内表名字 into 工作区名字。

读取

read table it_coma into is_coma index 2.

读取第二行

read table it_coma into is_coma with key city = 'dalian'.

读取有dalian条件(可多写条件)这一行

read table it_coma into is_coma index 2.

write: /, 'sy-subrc = ', sy-subrc.
write: /, 'sy-tabix = ', sy-tabix.

sy_subrc : 准确读取 值为0 ,反之为4

sy-tabix :读取值的当前行数

if  sy_subrc = 0.

write: / 

else.

write: / 

endif.

判断条件

[展开全文]

授课教师

超级管理员

课程特色

视频(37)