cancel
Showing results for 
Search instead for 
Did you mean: 

How to get repeated elements from webdynpro Java UI table result?

praveenkumar_kadi
Active Contributor
0 Kudos

Hi,

I got WD table of results around 1000 elements. I am required to search through duplicate elements in it and get them on the screen before displaying webdynpro View.

How I do I get only duplicate elements from WD table of result?

Thanks

Praveen

Accepted Solutions (0)

Answers (1)

Answers (1)

yogesh_galphade
Contributor
0 Kudos

hi

first create one temp node exactly copy of your table node. Copy all data to temp node.

using two for loop check in if condition for primary key e.g.

for (i=0 i< tablnode; i++)

for(j=0 j<tempnode j++)

if( tablenode.prikey <i>== tempnode.prikey[j]

dont coy in finalnode

else

copy record to finalnode