cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP WD application -Adobe form -Cache problem

Former Member
0 Kudos

Hi,

I have an WD application where -in user enters order number and clicks search button then it displays order as adobe form.

I am having problem with cache!

at first if there is a order which has all item data it displays that order properly but immediately if I try for an order which doesn'nt have any entries it brings up old order details.

how can we overcome this?

rgds

Vara

Accepted Solutions (0)

Answers (1)

Answers (1)

arjun_thakur
Active Contributor
0 Kudos

Hi Vara,

Try using Invalidate( ) method on the node which is binded to your adobe form.

lo_nd_nodename->invalidate( ).

Regards

Arjun

Edited by: Arjun Thakur on Mar 10, 2009 9:16 AM

Former Member
0 Kudos

Arjun,

Where should call this method?

Should I call in WDOINIT? I tried calling it in WDOINT, WDOEXIT.. still couldn't solve my problem.

Rgds

Vara

Edited by: Vara K on Mar 10, 2009 11:20 PM

arjun_thakur
Active Contributor
0 Kudos

Hi Vara,

Are you using any back button (which take the user back to page where he has enter the PO number) If yes, then use the invalidate method in the ONACTIONBACK method.

Regards

Arjun

Former Member
0 Kudos

Arjun,

I don't have back button in my application.

Just input boox and search button .Form will be displayed below inputbox after you hit search button.

Rgds

vara

Former Member
0 Kudos

Then put the invalidate as first statement in the OnClick action

lo_nd_nodename->invalidate( ).

ensure that you read & populate the o_nd_nodename again before proceeding with rest of the logic.

Greetings

Prashant