cancel
Showing results for 
Search instead for 
Did you mean: 

Performance of Web Dynpro

Former Member
0 Kudos

Hi,

Does enhancement of existing web Dynpro has any impact on performance?

I enhaced the view layout, view & component controller methods of existing customized Web Dynpro and cretaed Post-EXits.Before enhancing the custom Web Dynpro performance was quite good and after enhancing it performance is not good and it consuming time to display the enhanced view layout.

Thanks

Nandana

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi ,

On creating post exit, the current method as well as your code in exit is executing. It will depend on the complexity of the code which you have written in post exit. This can be one of the reason for slow performance. If it is a custom webdynpro then instead of using post exit you can rewrite the logic of current method. if you have added more complex UIElements in the view and deep nesting of it, then also WD app can take some time to load.

Thanks

Vishal

Edited by: vishal kapoor on Sep 24, 2010 11:59 AM

Answers (2)

Answers (2)

_IvanFemia_
Active Contributor
0 Kudos

Hi,

It is the content of the enhancement the problem not the enhancement.

Regrads,

Ivan

Former Member
0 Kudos

hi Closed

Former Member
0 Kudos

Hello Nandana,

Implementing a post exit will not effect the performance, but what is implemented in the post exit does.

If you are trying to re-implement the standard code/code fragment in with your code in the post exit, it means your logic is executing twice. If that is the case, make use of overwrite exit with code in standard implementation and make your changes there.

Best regards,

Chinnu