cancel
Showing results for 
Search instead for 
Did you mean: 

Area Munu call from the Report

Former Member
0 Kudos

I want to call an area menu( desined using transaction SE43) from one report program on click of a particular push button. How can it be achieved?

Regards,

amit

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Amit,

One way of doing it is by calling a Function Module - For Example:


CALL FUNCTION 'BMENU_START_BROWSER'
  EXPORTING
    TREE_ID                          = 'BALE'
  EXCEPTIONS
    TREE_DOES_NOT_EXIST              = 1
    NO_AUTHORITY                     = 2
    OTHERS                           = 3.
IF SY-SUBRC <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF. 

Please do let me know if this is a suitable option for your case.

Regards,

Anand Mandalika.

Former Member
0 Kudos

Thanks a lot.

It ful-fills my requirement.

Regards,

Amit Jain

Former Member
0 Kudos

Glad that it helped you.