双击alv行内容跳转问题

   双击alv行内容跳转

现象:

  • 发生运行时间错误CONNE_IMPORT_WRONG_OBJECT_TYPE

  • 消息号 00341
  • 诊断

  • 批输入的错误文本没有输出
  • 仅占位符

 

原因:

程序一部分代码:

DATA is_back type sy-ucomm.
EXPORT is_back = 'BACK' TO MEMORY ID 'ZMD'.

程序二部分代码:

DATA is_back type sy-ucomm.

DATA fcode TYPE TABLE OF sy-ucomm WITH HEADER LINE.

IMPORT is_back = fcode FROM MEMORY ID 'ZMD'.

解决:

If a data object dobj is an internal table with a header line, not the header line, but the table body is addressed.

程序二部分代码修改:

IMPORT is_back = is_back FROM MEMORY ID 'ZMD'.

fcode = is_back.

 

 

请使用浏览器的分享功能分享到微信等