Hi experts,
i am calling a URL from BSP application by creating a link and on the 'onclick' event of the link ,using following code
navigation->goto_page( URL = l_wd_url session = 'NEW' ).
My problem is ,i have to open this page in a new window(the Page is basically a webdynpro URL) ,so far it is only opening in same window.I have tried different other options.
navigation->next_page( URL = l_wd_url session = 'NEW' ).
CALL METHOD runtime->server->response->redirect( url = l_wd_url ).
navigation->call_application( URL = l_wd_url ).
I tried using call_browser FM also but it is dumping.
href tag will not work in my case as i have to capture the event and write some code inside that event..
Please suggest what i can do now?