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.
Add a comment