2007 Jul 04 2:32 PM
is it possible to exclude rows from the totalization process with cl_gui_alv_grid
or if not possible to write a footer which can be set to the same alignment as the alv fields on the screen ??
kind regards
arthur
2007 Jul 04 2:41 PM
if you want to exclude the total line then in layout use this..
data : wa_layout type LVC_S_LAYO.
wa_layout-NO_TOTLINE = 'X'.If you want to remove the total option for NUMC fields , then
wa_layout-NUMC_TOTAL = 'X'.
Message was edited by:
Chandrasekhar Jagarlamudi
if you want to exclude the total line then in layout use this..
data : wa_layout type LVC_S_LAYO.
wa_layout-NO_TOTLINE = 'X'.If you want to remove the total option for NUMC fields , then
wa_layout-NUMC_TOTAL = 'X'.
Message was edited by:
Chandrasekhar Jagarlamudi
2007 Jul 04 2:41 PM
if you want to exclude the total line then in layout use this..
data : wa_layout type LVC_S_LAYO.
wa_layout-NO_TOTLINE = 'X'.If you want to remove the total option for NUMC fields , then
wa_layout-NUMC_TOTAL = 'X'.
Message was edited by:
Chandrasekhar Jagarlamudi
2007 Jul 04 2:50 PM
nop, I want to exlude certain rows that meet certain conditions to be summed into the grandtotal for a certain column
so I make subtotals for instance of declared hours I have
order1 10
order2 20
order3 5
Subtotal 35
then I want to add a 2 rows underneath with the scheduled and available hours
scheduled 50
available 15 (sheduled minus subtotal of worked which can be calculated in abap before output)
but I don't want to subtotal or grandtotal those rows since the value
100 hours makes no point
2010 Jul 21 3:58 PM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |