When i am using the SAP portal while clicking something this message in the subject line gets displayed and it says user session (HTTP/ SMTP) closed after time out.
Since it happens frequently , please help me how can i reset it to longer duration or avoid it.
Thanks in Advance
About "Time out" problem, In WebDynpro, we can do sth about it.
We can make use of system parameters.
The following steps:
1. you can define one Context node named "timeout", and it has only one attribute "timeout_delay".
2.In "WDDOINIT" of component controller, you can execute the following coding:
*1. get user-setting parameter CALL 'C_SAPGPARAM' ID 'NAME' FIELD 'rdisp/plugin_auto_logout' ID 'VALUE' FIELD lv_http_timeout. *2. converse it as integer call FUNCTION 'CHAR_NUMC_CONVERSION' EXPORTING INPUT = lv_http_timeout IMPORTING NUMCSTR = lv_tempint. "Off course, you can change as what you want
3.Then bind this value to the newly created Node's attribute "timeout_delay".
4.In your Main-view, in the layout you should add one UI element Typed "TimeTrigger", and bind the property "delay" to the context attribute "timeout_delay".
Add a comment