ABAP常用小技巧-知识点积累

7.13 ALV 输出后双击某条数据调用其它T-CODE
有VBELN为例:
*&———————————————————————*
*&      Form  user_command
*&———————————————————————*
*       text
*———————————————————————-*
*      –>R_UCOMM      text
*      –>RS_SELFIELD  text
*———————————————————————-*
form user_command using r_ucomm like sy-ucomm
                        rs_selfield type slis_selfield.
  case r_ucomm.
      case rs_selfield-fieldname.
        when ‘VBELN’.
          set parameter id ‘AUN’ field rs_selfield-value.
          call transaction ‘VA03’ and skip first screen.
        when ‘KUNNR’.
          call transaction ‘VD03’ and skip first screen.
      endcase.
  endcase.
  clear: r_ucomm.
endform.                    “user_command

相关新闻

联系我们

联系我们

130-0752-1773

在线咨询:点击这里给我发消息

邮件:info@sapzx.com

工作时间:周一至周五9:00-18:00,节假日正常休息

关注微信
关注微信
分享本页
返回顶部