cancel
Showing results for 
Search instead for 
Did you mean: 

remove entries from ParameterMap

Former Member
0 Kudos

Method WDWebContextAdapter.getWebContextAdapter().getRequestParameterMap(); returns a parameterMap.

Is it possible to remove entries from this parameterMap ?

I want to remove key entries such as sap.session.client_window_id and sap.session.window_id from this parameterMap.

Or is it something I should not be messing with ?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Why you want to remove entries?

As per the doc "Map - the complete map of parameter values Do not write data to

this map!"

So I guess its not a good practise to remove or add some thing to this.

Regards

Ayyapparaj

Former Member
0 Kudos

The problem is that when rendering on mobile device, on redirecting from the application using ExitPlug with url parameter, these parameters get added to the end of the actual url. These parameters are sap.session.client_window_id and sap.session.window_id. I can see them in the parameterMap. And assumption is that if I can change the parameterMap then these will not mess with the url.

Note that when the application is not rendered to mobile device but a regular display screen\browser, these paramreters dont show up in the url.