cancel
Showing results for 
Search instead for 
Did you mean: 

Note 725124 - SRM opened in a new screen (without browser buttons)

Former Member
0 Kudos

Hi SRM Experts,

we have implemented the note 725124 to get a Browser window without buttons. The Implementation was successful but the pop-up window is not very user friendly. I was changing the size of the window by setting up the parameters lv_minWidth and lv_minHeight of methode HTM_LOGIN (CL_SRM_ICF_BASIC_LOGIN).

Is there a possibility to get a fullscreen window instead of Pop-Up window or can I change the position of the pop-up?

System: SRM 5.0 (SP11)

Kind regards

Axel

Accepted Solutions (0)

Answers (1)

Answers (1)

dean_hinson2
Active Contributor
0 Kudos

Axel,

We modifed class CL_SRM_ICF_BASIC_LOGIN method HTM_LOGIN to make the second window large....

CHANGE FROM co_crlf ' options = "menubar=yes,resizable=yes.....

CHANGE TO co_crlf ' options = "menubar=yes,resizable=yes,resize=auto....

I hope this helps and please award points accordingly.

Regards, Dean.

Edited by: Dean Hinson on Mar 10, 2008 6:18 PM

Former Member
0 Kudos

Hi Dean,

thanks for reply.

I have modify the source code like following but it is still the same behavior like mention before.

*{ REPLACE B72K900330 3

*\ co_crlf ' options = "menubar=yes,resizable=yes,status=no,width=' lv_minWidth ',height=' lv_minHeight '";'

co_crlf ' options = "menubar=yes,resizable=yes,resize=auto,status=no,width=' lv_minWidth ',height=' lv_minHeight '";'

*} REPLACE

co_crlf 'else'

*{ REPLACE B72K900330 4

*\ co_crlf ' options = "menubar=no,resizable=yes,status=no";'

co_crlf ' options = "menubar=no,resizable=yes,resize=auto,status=no";'

*} REPLACE

Kind regards

Axel