2019-02-15——ABAP10格式化数据

write

write   .

用于格式化的各种子句

条款 说明
left-justifled 左对齐
centered 居中
right-justifled 右对齐
under 输出直接在字段下启动
no-gap 指定字符 之后的空白被拒绝
using edit mask 表示格式模板的规范。
no-zero 如果字段只包含零,则对它们将被空格替换

数字类型字段的格式设置选项
用于格式化的各种子句

条款 说明
NO-SIGN 指定屏幕上不显示前导符号。
exponent 指定在类型F(浮点字段)中,指数在中定义
round 类型P字段首先乘以10 **(-r),然后四舍五入。
currency 表示格式化是根据货币值存储在TCURX数据库表中
unit 指定小数位数根据单位,如类型P的T006数据库表中指定
decimals 指定数字的数目必须显示在小数点后面

日期字段的不同格式设置选项

image.png

report ztest123_01.
data: n(9) type c value 'tutorials',
m(5) type c value 'point'.

write: n,m.
write: / n, / m under n.

write: / n no-gap,m.
data: time type t value '112538'.

write: / time,
/(8) time using edit mask '_:_:_'.
tutorials point
tutorials
point
tutorialspoint
112538
11:25:38

你可能感兴趣的:(2019-02-15——ABAP10格式化数据)