cancel
Showing results for 
Search instead for 
Did you mean: 

Session Data on WD

Former Member
0 Kudos

Is it possible to maintain session data through Web Dynpro applications? (set and get)

My approach is...I want to have some data available for all my WD Applications or DCs (through user portal session), for example the employee number of the logged user so that I don't have to go to R/3 every time the user enters any WD Application.

How can I achieve this?

Any help/suggestion will be appreciated!

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

you can use like this

WDScopeUtil.put(WDScopeType.APPLICATION_SCOPE, "qType", ""+qForm.getQType());

WDScopeUtil.get(WDScopeType.APPLICATION_SCOPE, "number")

Answers (0)