cancel
Showing results for 
Search instead for 
Did you mean: 

Web Interface for Role Menu web item

Former Member
0 Kudos

Hi,

Many times i've used the web interface for Tables to change the structure or contents of a table. For this, we create an ABAP class and set the superclass to CL_RSR_WWW_MODIFY_TABLE.

I want to do something similar to the Role Menu. What is the superclass for role menus?

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

You will not be able modify the role menu like you do the table and navigation block. SAP has not provided any interface for this. The class used for rendering the role menu is CL_RSR_WWW_ITEM_MENU, you can create a copy of this class and create your own web item.

What kind of changes are you looking for?

Thanks.

Former Member
0 Kudos

I want to put a Delete icon next to the links in the Favorites. That link will take them to a BSP which I have already coded and delete that link from the Favorites.

Former Member
0 Kudos

You will have to write some nasty Javascript on the front end side which will add the icons next to the favs or create a BSP application to build the role menu using the function module 'RSBB_NODES_READ_WITH_FILTER'. With the BSP application you have the felxibility for creating the Role menu the way you want it.

Thanks.