Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Deleting Tcodes / Programs from Area Menu

Former Member
0 Likes
1,054

Hi Experts ,

We have done a clean up of the system and deleted unwanted Z developments .

Now there is a challenge of deleting these programs from Area menus .

Tasks involved in this are

1. Find out the Area Menues in which these programs are present .

2. Delete them from the Area Menu .

First point is tedeous . Can anybody suggest a simple and fast way to find out the Area Menus and the exact place in the Hierarchy where the Z programs are present ?

Thanx in advance ,

Laxman Nayak.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
701

hi laxman,

In T/c SE43, I think u can find option to delete the area menus.

But i am not pretty sure abt my answer. Correct me if i am wrong.

Regards....

Arun.

Hi Experts ,

We have done a clean up of the system and deleted unwanted Z developments .

Now there is a challenge of deleting these programs from Area menus .

Tasks involved in this are

1. Find out the Area Menues in which these programs are present .

2. Delete them from the Area Menu .

First point is tedeous . Can anybody suggest a simple and fast way to find out the Area Menus and the exact place in the Hierarchy where the Z programs are present ?

Thanx in advance ,

Laxman Nayak.

3 REPLIES 3
Read only

RaymondGiuseppi
Active Contributor
0 Likes
701

Try (in FM FUNCTION BMENU_SEARCH_MENUS)

*   search for transactions / texts
    select tmenu01t~tree_id tmenu01t~node_id tmenu01t~text
         into (l_tmenu01t-tree_id, l_tmenu01t-node_id, l_tmenu01t-text)
          from tmenu01t
          join tmenu01r on tmenu01t~node_id = tmenu01r~node_id
            where ( tmenu01r~ref_object like searchtext
                or tmenu01t~text like searchtext )
                and tmenu01t~tree_id like l_menu_id
                and tmenu01t~spras = sy-langu.

If FM not found, look at OSS ]<a href="https://service.sap.com/sap/support/notes/422067">Note 422067 - Area menu maintenance: Searching for texts/transactions</a>. Look also at OSS <a href="https://websmp209.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=716282&_NLANG=E">Note 716282 - Report search in area menus: Report name is missing</a>

Regards

Read only

Former Member
0 Likes
701

Laxman,

If your programs have corresponding transaction code, go to se93 put the transaction code of your program, select the transaction and click on Wher-used list. A pop-up window will come, there select Area Menu only, So system will display the transaction and program is under which Area Menu.

I Hope this will help you.

Regards,

Amey

Read only

Former Member
0 Likes
702

hi laxman,

In T/c SE43, I think u can find option to delete the area menus.

But i am not pretty sure abt my answer. Correct me if i am wrong.

Regards....

Arun.