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

Area Menus

Former Member
0 Likes
961

Hi all ,

I am working on a report which has to call an area menu . Please suggest the different ways by which i can achieve this .

Thanks in Advance.

Thanks & Regards ,

Sowmya

Hi all ,

I am working on a report which has to call an area menu . Please suggest the different ways by which i can achieve this .

Thanks in Advance.

Thanks & Regards ,

Sowmya

6 REPLIES 6
Read only

hymavathi_oruganti
Active Contributor
0 Likes
898

hi,

se43 is the tcode for creating area menu

Read only

0 Likes
898

Ading the reports to area menu T.code is : SE43.

1.Go to transaction SE43 and enter the area menu name.

2. Select the area menu path for adding the report

3.select the node and add the report.

Read only

0 Likes
898

Hi,

For Area menu the menu exist are available like

+C02 for Logistic and +C03 for Finance, but with this exits you can add your transaction to only Additional Functions of the respective menus.

Goto SE43 and enter +C02 or +C03 and change it and you can add your transaction or report to it.

Read only

Former Member
0 Likes
898

Hi Sowmya,

You can write a BDC for the transaction SE43 to call the area menu from your program. While recording for the BDC double click on the area menu in the favourite list.

Please reward suitable points.

With Regards,

Nelson

Read only

Former Member
0 Likes
898

Sowmya,

If you are trying to make a call from your report like CALL TRANSACTION 'T COde generated by Area Menu', I don't think you will be able to do it.

Regards,

Ravi

Read only

andreas_mann3
Active Contributor
0 Likes
898

Hi Sowmya,

use fm TH_CREATE_FOREIGN_MODE

CALL FUNCTION 'TH_CREATE_FOREIGN_MODE'
  EXPORTING
    client                 = sy-mandt
    user                   = sy-uname
    tcode                  = menu

regards Andreas