ABAP 屏幕字段输入后回车值不显示的问题

<!--StartFragment -->  

 SCREEN-ACTIVE       '1'.
  SCREEN-INPUT       '1'.
  SCREEN-OUTPUT       '0'.

屏幕虽然可以输入,但值不能显示,修改为以下则可以:

 SCREEN-ACTIVE       = '1'.
  SCREEN-INPUT       = '1'.
  SCREEN-OUTPUT       = '1'.

官方帮助文件已经说明:

ACTIVE

INPUT

OUTPUT

INVISIBLE

Effect

扫描二维码关注公众号,回复: 590911 查看本文章

1

1

1

0

Screen field is displayed, even if Invisible is set statically.

Field contents are displayed.

Ready for input, even if Input is not set statically. However, not ready for input if the Output only is set statically.

1

1

0

0

Screen field is displayed, even if Invisible is set statically, except when Output only is set statically.

Field contents are not displayed.

Ready for input, even if Input is not set statically.

猜你喜欢

转载自comtoexe.iteye.com/blog/2319578
今日推荐