cancel
Showing results for 
Search instead for 
Did you mean: 

Refresh my Webdynpro

Former Member
0 Kudos

Hi.

I've a webdynpro where I've a calendar. I put my holidays, and that record in my database. How I can do for refresh the webdynpro pushing a button or link?

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

if you have a context node where you do the change,

and you subnodes nees refresh (and they heve supply functions)

do node->invalidate( ). on parent node

grtz,

Koen

Answers (1)

Answers (1)

Former Member
0 Kudos

If you mean refresh after making some changes, say adding a holiday etc, then you have to bind the data to the context again. Node->bind_elements( ) will refresh the data in your context.

If you mean something else, can you elaborate it please?

Regards

Nithya

mohammed_anzys
Contributor
0 Kudos

Hi

When you press a button , automatically the WDDOMODIFY will be called. So if you have done your bindings in WDDOMODIFY , then your page will be refreshed you dont need to do anything extra.

Thanks

Anzy

Former Member
0 Kudos

Hi,

I've done node->Invalidate() and run!.

Thanks.