cancel
Showing results for 
Search instead for 
Did you mean: 

Calling an external window in the foreground

Former Member
0 Kudos

Hi all,

     I have an issue in my webdynpro application.

    

     There is a popup window (created using method CREATE_WINDOW of Interface IF_WD_WINDOW_MANAGER ) with some hyperlinks. Those hyperlinks open an external window (new webdynpro component). My issue is that external window is opened in the background.

     How can i open it in the foreground ?

Thanks in advance,

Arthur

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Arthur,

In interface IF_WD_WINDOW_MANAGER use method CREATE_EXTERNAL_WINDOW method and pass URL in event handler of the hyperlink.

and call OPEN on new window instance.

Regards,

Puneet

Former Member
0 Kudos

Hi Puneet,

Thanks for your answer. I'm already using this medthod to open the new window after clikcing on the hyperlink. Problem is that as this hyperlink is displayed within a pop-up, the new window created is displayed behind the window which is displaying the popup..

Arthur

Former Member
0 Kudos

Hi Arthur,

I have find one thread similar to your question.

http://scn.sap.com/thread/1711482

hope it will help !!!

Regards,

Puneet

Former Member
0 Kudos

Hi ,

i'm working on SAP 7.4 so i think that those notes are implemented ... I have found this note (  1577719 - External Window opens in background if triggered from Popup ) which is exactly the same behaviour than my issue but i supposed that this note is already implemented.

I think that as my external window is opened via a popup, the focus is stuck on this popup and can not be set on the new window.

Arthur