cancel
Showing results for 
Search instead for 
Did you mean: 

How can I do a Header Group Using Group columns ?

former_member184029
Participant
0 Kudos

Hi,

I've tried to find a solution for using <b>Header Group </b> let me explain, I have 5 Columns and 10 rows I need to group columns:

The first one alone

Second, Third and Fourth Grouped

The last one alone.

There's a content "<b>Web Dynpro table</b>" in

<a href="http://help.sap.com/saphelp_nw04s/helpdata/en/b5/ac884118aa1709e10000000a155106/content.htm">http://help.sap.com/saphelp_nw04s/helpdata/en/b5/ac884118aa1709e10000000a155106/content.htm</a> where I read about Hierarchy and Header group, it wasn't very helpfull for me.

I really appreciate it any information which could help me to do what I'm trying.(As soon As Possible)

Thanks in advance!!!

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

Is it possible to do the same table column grouping for ALV WD tables?

Thanks

Former Member
0 Kudos

Table column groups have been introduced with Web Dynpro version NW04s.

You can create hierarchies of table columns with the TableColumnGroup element.

(I do not know if you use WD ABAP or WD java so I write some pseudo-code instead)

Example: Let A, B, C, D, E be table columns.

TableColumnGroup G1;

G1.addColumn(B);

G1.addColumn(C);

G1.addColumn(D);

TableColumnGroup G2;

G2.addColumn(A);

G2.addColumn(G1)

G2.addColumn(E);

Armin

former_member184029
Participant
0 Kudos

Armin

The version of NWDS is SP14, I was trying to create a hierarchies of table columns with the TableColumnGroup element, but this option does not appear with right click on RootUIElementContainer->myTable_Name, Could you give me an idea, why this happen?

Thanks

Tokio

Former Member
0 Kudos

As I said, this is not available in NW04 (to which SPxx belongs to), but only in NW04<b>s</b>.

Armin

former_member184029
Participant
0 Kudos

I apologize for misunderstanding difference NW04 and NW04s ... I was wondering two things:

1) NW04 must be unninstall before install NW04s?

2) Applications developed in NW04 will work in NW04s with no problems?

Thank you very much!!!

Tokio

Former Member
0 Kudos

No you should not uninstall anything. NW04s is only available with the ERP suite, don't worry about it.

Armin