导航

Create tcode for SE43 ( Menu area )

Posted on 2010-10-19 10:21  Hahappyppy  阅读(453)  评论(0编辑  收藏  举报

https://forums.sdn.sap.com/message.jspa?messageID=4844102

 

Hi,
You should create report with FM "'BMENU_START_BROWSER'". You can use this source code :
Report ZMENU_TCODE.
CALL FUNCTION 'BMENU_START_BROWSER'
EXPORTING
mode = 'D'
tree_id = 'ZMENU' "(name of your menu)
EXCEPTIONS
tree_does_not_exist = 1
no_authority = 2
OTHERS = 3
.
Then, you can create transaction with SE93 (Program and selection screen : ZMENU_TCODE).
Regards,

image