Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Alv Subtot Signed is lost

Former Member
0 Kudos

i wanna subtot signed like this  picture

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi, this is normal for editable ALV.

For non-editable alv you can see sign like on your second picture in subtotals

4 REPLIES 4

ronaldo_aparecido
Contributor
0 Kudos

Hi Burak.

If I understand , you want display subttotals.

1-What Function do you use to display ALV ?

For example:

In 'REUSE_ALV_GRID_DISPLAY'  has the parameter   IT_SORT     and that parameter has fields to indicate properties of the especific field like subtotals.

   I_SORT-SPOS = '01' .

   I_SORT-FIELDNAME = 'MATNR'.

  I_SORT-TABNAME = 'I_EKPO'.

   I_SORT-UP = 'X'.

   I_SORT-SUBTOT = 'X'.

I_SORT-total = 'Grand total'.

   APPEND I_SORT TO I_SORT .

   CLEAR I_SORT.

Please search about ALV properties in SAP HELP.

0 Kudos

Thanks for comment but I am using lvc "lvc_s_sort".

Former Member
0 Kudos

Hi, this is normal for editable ALV.

For non-editable alv you can see sign like on your second picture in subtotals

0 Kudos

Thaks for help..