cancel
Showing results for 
Search instead for 
Did you mean: 

Webdynpro debugging and performance

Former Member
0 Kudos

Hi all,

1) Other than Break - points , are there any techniques for debugging the Webdynpro applications ?

2) How to calculate the performance of the Webdynpro applications & how to increase the performance of the webdynpro applications ?

3) How to pass parameter in webdynpro application URL?

4) In context of webdynpro what is Stateful applications & stateless applications?

5) How to Refresh Node in Webdynpro ABAP?

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Stateless Within a stateless application any data retrieved within one page will be lost as soon as a new page is called, unless it is passed as a parameter.

Stateful

Within a stateful application data is retained in memory even when a new page is called. This makes it much easier to pass data between WDP pages but means more resources will be used inorder to store the data.

Performace

When wdp application launches press ( ctrl+alt+shft+p ) .It will give you whole information.

Debugging

Refer http://help.sap.com/saphelp_erp60_sp/helpdata/en/43/95a6c84f7c60b7e10000000a11466f/content.htm

Refresh

What you mean by refresh ?

You can invalidate the node if it is binded by Supply function then supply function would be called.

data:     lo_nd_sflight      type ref to if_wd_context_node,   
   lt_sflight            type wd_this->elements_sflight.  
  lo_nd_sflight = wd_context->get_child_node( name = wd_this->wdctx_sflight ).  
  lo_nd_sflight->invalidate( ).  
  "Or you can bind a new table with data (original date )   
lo_nd_sflight->bind_table( new_items = lt_sflight ).

  

Parameters

http://scn.sap.com/thread/3300418

http://scn.sap.com/message/10204346

Katrice

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Katrice,

Thanks for the answers..

please let me know any new debugging techniques other than break point..

i heard that in EHP 5 there is a tool for it..

can u please give some idea on it...

Thanks