Application Development 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: 

Area Menus

Former Member
0 Kudos

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

hymavathi_oruganti
Active Contributor
0 Kudos

hi,

se43 is the tcode for creating area menu

0 Kudos

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.

0 Kudos

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.

Former Member
0 Kudos

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

Former Member
0 Kudos

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

andreas_mann3
Active Contributor
0 Kudos

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