cancel
Showing results for 
Search instead for 
Did you mean: 

Create new session from BSP application

Former Member
0 Kudos

Hello,

we have custom BSP application for our service desk, opening different pages from crm_ui_start. Everything is working in new window, or new tab, as expected, but when in the same tab is crm_ui_start opened, then navigate somewhere else, and again opened crm_ui_start with link from our app, old page is opened (one shown before), not new one as expected.

crm_ui_start is called from our application with URL parameter CRM-object-type, but this is ignored. I tried sap-sessioncmd=open, but it has no effect, even use of:

"sap-sessioncmd=close&sap-exiturl=sap/bc/bsp/sap/crm_ui_start/default.html%3fCRM-object-type=something%26sap-sessioncmd=open..."

dont work. ( %3f is escaped ? and %26 & )

When I look at Tx sm04, there is my user with connection type Plugin HTTP, when I remove it, and try to use link, its working as expected, so is there a way, how to remove this session when opening new link from our custom BSP application?

Thank you

Michal

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

OK, i finaly found solution. If javascript part is added to head of called htm file, new session is opened.

<script type="text/javascript">

  window.name = '';

</script>

Answers (0)