cancel
Showing results for 
Search instead for 
Did you mean: 

what is WD Table limit

Former Member
0 Kudos

Hi,

what is the web dynpro Table limit for displaying the data...

I need to show 2000 recards in the WD Table is it posible... or not..

Thanks

Polaka

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Friend

" Tobias Lott said Currect.

Regards

Vijay Kalluri

Former Member
0 Kudos

HI ,

As per my experience there is no limitage to the table in webdynpro.

Only thing you need to do is set the table property :visiblerowcount to some value context attribute

Va_rowcountVal of type Integer.

In the code set the table size to that row count.

int size = wdContext.nodeTable().size();

wdContext.currentDepartmentsElement().setVa_rowcountVal(size);

Regards,

Lavanya.G

Former Member
0 Kudos

Hello

In Table Property visibleRowCount = -1 // it display only how many contains in the node example if the node gives 20 rows it will displays only 20 rows.

If you give visibleRowCount = 2000 bydefault it displays 2000 rows irrespective of Node size.

Regards

Sridhar s

Former Member
0 Kudos

Hi Sridar/Lavanya

Thanks for giving help.

This is for Table rows for visible in the screen, but I'm asking is Wt is the max limit for the WD Table. If i'm selecting time periad for Archiving the data in that more than 2000 Records is there

Is there any problem for showing the those data or not..

Thanks

polaka

Edited by: polaka123 on Jun 17, 2010 3:18 PM

Former Member
0 Kudos

Hi Polaka

Should be no problem. I have used web dynpro tables with more than 30000 records. It takes a few seconds to load the records, but otherwise the table performs ok.

Best Regards

Tobias