ABAP程序中,可以利用‘&’占位符实现动态指定标题栏(titlebar)的显示文本,占位符最多为9个
语法如下:
1 |
SET TITLEBAR title [WITH text1 ... text9]. |
例子代码:
1 2 3 4 5 |
REPORT ztest_titelbar. SET TITLEBAR 'T001' WITH 'one' 'two' 'there' 'four'. WRITE: 'hello world'. |
标题栏(titlebar):
程序运行效果:
以上。
发表评论