‎2019 Dec 13 2:09 PM
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.
‎2019 Dec 13 3:58 PM
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.