cancel
Showing results for 
Search instead for 
Did you mean: 

source code

Former Member
0 Kudos

Hi to all,

In webdynpro, while writting a code it's better to avoid to write in MODIFY VIEW().Because it decreases the performance of the application.if it's the case then where i need to write my source code.apart from wddoinit(), and on action.is there any concept of classes.

So, please let me know any other way and the best way to write the code.

Thanks and Regards,

Satti

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Satish

If you want to load the data first go for WDDOINIT.

If you want to modify the layout go for WDMODIFYVIEW

If you wnat to fetch some data base on some action the create one action and write the business logic.

Phase Model explained in help check it out

http://help.sap.com/saphelp_nw04s/helpdata/en/d2/8acd409cc4dd50e10000000a1550b0/content.htm

Thanks

Tulasi Palnati

Former Member
0 Kudos

hi,

you can use WDDOINIT,WDDOEXIT,WDDOBEFOREACTION,WDDOAFTERACTION methods mentioned in Methods Tab.

Domodify is not advised to use as it is called on every action.

Rather you can also create your own Methods and use them.

Thanks.