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

Screen without system menu

Former Member
0 Likes
677

Hi All....

I want to design a screen for my won popup dialog but without having system menu like sap login popup.

can any one suggest me how I do this or even if system menu is their the 'create new session' sub menu should be disable like max session reach message popup.

1 REPLY 1
Read only

Sandra_Rossi
Active Contributor
473

If I understand well, you want to display your screen in a new external session from an ABAP program. Create a RFC-enabled function module which displays a screen, and call it using CALL FUNCTION ... STARTING NEW TASK 'anything'.

I don't think you can avoid the popup "maximum number of sessions", but you may determine the number of current and maximum external sessions:

data: lv_act_sessions type i,
      lv_max_sessions type i.
call function 'TH_USER_INFO'
  importing
    act_sessions = lv_act_sessions
    max_sessions = lv_max_sessions.