cancel
Showing results for 
Search instead for 
Did you mean: 

Application Scope

Former Member
0 Kudos

Hi,

How can all the concurrent users accessing a webdynpro application share a common data.i.e application scope data.

Thanks,

Sudhir

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

use the following

To set

WDScopeUtil.put(scopeType, key, value)

To get

WDScopeUtil.get(scopeType, key)

Regards

Ayyapparaj

Former Member
0 Kudos

Can all the users access same Context node.i.e i have a Employee component which is used in my main component.Employee component is having EmployeeList node which is mapped to the main component controller.Employee component has screens to edit employee data.If some user changes the employee data then i will refresh EmployeeList node.But refreshing EmployeeList node should happen for all the logged in users.

suresh_krishnamoorthy
Active Contributor
0 Kudos

Hi Sudhir,

All other logged in user also has to refresh the page by clicking action(execute) button then only recently updated value will populate. If users login after updating automatically list the recently updated data.

Regards, Suresh KB

Former Member
0 Kudos

Hi Suresh,

what you mean is every time user access the EmployeeList he should refresh it to get the latest updations.But the application becomes slow since every time we should access the model to refresh the EmployeeList.Is that the only possible way??

Thanks

Sudhir

Former Member
0 Kudos

Hi,

Until and unless other users refreshes the screen it will not happen.

Else you can give a try in latest versions by using a message based Trigger.

Regards

Ayyapparaj

Former Member
0 Kudos

Hi Ayyaparaj,

Do you have any tutorial on Message based Trigger.

Thanks,

Sudhir.