概述
*&---------------------------------------------------------------------*
*& Report ZDM_FIRST
*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*
REPORT ZDM_FIRST.
data sss type i value 5.
write sss.
write / text-sss.
* /表示换行
data: begin of Student,
name(20) type c,
age type i,
sex type i,
end of Student.
Student-name = 'cherry'.
Student-age = 22.
Student-sex = 1.
write: / 'student:',Student-name,',age->',Student-age,'sex->',Student-sex.
* like表示变量stu的数据类型是参考Student 修改stu的值 不会修改Student的值
stu-name ='jiaozi'.
stu-age = 22.
stu-sex = 0.
write:'student:',stu-name,',age->',stu-age,'sex->',stu-sex.
write: / 'student:',Student-name,',age->',Student-age,'sex->',Student-sex.
types: begin of StudentType,
name(20) type c,
age type i,
sex type i,
end of StudentType.
data stu1 type StudentType.
stu1-name = 'ggg'.
write stu1-name.
*FIELD-SYMBOLS是宏 表示引用一个变量 宏修改变量的值也跟着修改
FIELD-SYMBOLS <s> like stu1.
assign stu1 to <s>.
<s>-name = 'cherry'.
write <s>-name.
write stu1-name.
最后
以上就是精明小兔子为你收集整理的sap变量的定义的全部内容,希望文章能够帮你解决sap变量的定义所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复