cancel
Showing results for 
Search instead for 
Did you mean: 

Flow of method in webdynpro

Former Member
0 Kudos

hi all,

i am new to webdynpro. Can some body suggest a link or give me the flow of methods in a project(webdynpro project.

we have different methods like

wdDoInit()

wdDoExit()

wdDoModifyView()

onAction< >()

onPlug<..>()

etc

what is the flow of this methods. Will wdDoInit() execute each time the page displays or once for the whole project.

Thanks,

meghana

Accepted Solutions (1)

Accepted Solutions (1)

former_member182372
Active Contributor
0 Kudos

Hi meghana,

Check nice Bertram`s article https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/yet another evs valuehelp - showing display texts for keys.article (Figure 2. Web Dynpro Phase Model and Calling Context Calculation Methods).

Best regards, Maksim Rashchynski.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Meghana

<b>WebDynpro Phase Model</b> describes the life cycle of all Webdynpro Objects.

Yoy will find it in NWDS help itself apart from help.sap.com

Hope this helps

Regards

Ananda

brahmanandam_ausali
Participant
0 Kudos

hi meghna,

1. wdDoInit().

this will be called only once when the view is displayed for the first time. In subsequent displays of the view this method will not be called.

3. wdDOModifyView()

this method will be called all the times before rendering the view. This method used for

creating / modifying the UI Elements dynamically.

4. OnAction<>()

This is an event handler, which will be called on the events like Clicking of the button, Selection in dropdown element etc.

5. onPlug<>()

this method will be called on firing either in bound or out bound plug,

regards

Brahmanandam Ausali