cancel
Showing results for 
Search instead for 
Did you mean: 

Table Filter in NW 04

FLSaito
Participant
0 Kudos

Hi, I'm trying to use the FilterTable class to filter tables in NW 04, but some methods and interfaces aren't found like IWDAbstractTableColumn and the method, so i've commented this methods and changed the interface to IWDTableColumn, but the filter doesn't work. Anybody know how to make the filter works in NW 04 ?

Thanks...

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi fabio,

have look at [Link|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30291df2-b980-2a10-0884-839c4f7f147e]

[Link2|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60d5b593-ba83-2910-28a9-a7a7c7f5996f]

Regards

Khushboo

Former Member
0 Kudos

Hi Fabio,

Follow the blog by Bala : [Table Filter for Web Dynpro Table|https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/5350] [original link is broken] [original link is broken] [original link is broken];.

You can get many resources if searched on SDN.

Regards,

Alka.

FLSaito
Participant
0 Kudos

Hi Stefanie, thanks the source you sent works fine but the it's a sort class for table, i'm looking for an example of filter for the table 😃 i only found codes that work in the 04s !

thank

Former Member
0 Kudos

The main difference of the Table in NW 04 and NW >= 7.0 is the following:

NW 04:


Columns: Table -> TableColumn

NW >= 7.0:


GroupedColumns: Table -> AbstractTableColumn
TableColumn extends AbstractTableColumn

This means in NW >= 7.0 a table aggregates columns via the "GroupedColumn" aggregation and not anymore via the deprecated "Columns" aggregation. Keep this in mind and you should be able to change the TableFilter code as needed.

Armin

Former Member
0 Kudos

Hi Fabio,

this [sample|/docs/DOC-8061#46 [original link is broken]] contains a filter class you can use with NW 04

kind regards

Stefanie