cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple times Data showing in table control

Former Member
0 Kudos

Hi,

In my pop uo i am having a search input field and a table control for diaplaying search data .

But each time i enter the search button,it shows the same data again and it's getting overlapped back to back .

Means the same no of rows (suppose 20)are displayed one after other .It becomes 40,60 so on .

Can anybody tell me how to resolve this issue .

Thanks a lot .

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

the table is bind with rfc node or value node ?

if it is value node do the following each time you executing the rfc

wdContext.node<Value node name>().invalidate();

or it is directly bind with rfc node

make sure ,in component controller execute method of the rfc have the following statement.

wdContext.node<rfc output node name>().invalidate();

Regards,

ramesh

Answers (2)

Answers (2)

Former Member
0 Kudos

problem solved ?

Former Member
0 Kudos

Hi

Please make sure that Is there any logic being implemented in WD MODIFY VIEW of view controller.

If yes that may be the cause of your problem because WDModifyView() is being called every time u perform an action.

or

Try to Invalidate current context node which is bound to table UI element and actually containing data at run time. I think this node is not being refreshed. Try to refresh it in Search Button action.

or

Check your loop code snippet, if you implemented it anywhere.

Mandeep Virk