Application Development and Automation 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: 
Read only

ALV layout options

Former Member
0 Likes
704

Hi,

When and how to use no_subchoice, no_sumchoice and no_subtotals?

Rgds,

Nimisha

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
627

HI,

NO_SUMCHOICE is used to when you don't want to give any choice for summing NO_TOTALLINE is ued to avoid total line in display

NO_SUBCHOICE is used to when you don't want to give any choice for subtotals

NO_SUBTOTALS is used when we don;t want to show subtotals

Regards

vijay

HI,

NO_SUMCHOICE is used to when you don't want to give any choice for summing NO_TOTALLINE is ued to avoid total line in display

NO_SUBCHOICE is used to when you don't want to give any choice for subtotals

NO_SUBTOTALS is used when we don;t want to show subtotals

Regards

vijay

4 REPLIES 4
Read only

Former Member
0 Likes
627

?????????????????????

?????????????????????

Read only

Former Member
0 Likes
627
NO_SUMCHOICE(1) TYPE C --------->  no choice for summing up
NO_TOTALLINE(1) TYPE C--------->         " no total line
NO_SUBCHOICE(1) TYPE C--------->   no choice for subtotals
NO_SUBTOTALS(1) TYPE C--------->   no subtotals possible

this should be used in the layout

wa_layout-no_subchoice = 'X'.

wa_layout-no_sumchoice = 'X'.

wa_layout-no_subtotals = 'X'.

and this layout will be passed to REUSE_ALV_GRID_DISPLAY

Message was edited by:

chandrasekhar jagarlamudi

Read only

Former Member
0 Likes
627

In the layout:

no_subtotals - If you dont want to subtotal

no_subchoice - If you dont want to display option for subtotal

no_sumchoice - If you dont want to total

Each of them can be set with a value of ' ', or 'X'.

Regards

Wenceslaus

Read only

Former Member
0 Likes
628

HI,

NO_SUMCHOICE is used to when you don't want to give any choice for summing NO_TOTALLINE is ued to avoid total line in display

NO_SUBCHOICE is used to when you don't want to give any choice for subtotals

NO_SUBTOTALS is used when we don;t want to show subtotals

Regards

vijay