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 FORMAT

Former Member
0 Kudos

Hi Gurus,

I just want to ask on what's the use or purpose of LIST - JUST and LIST - DO_SUM and LIST - OUTPUTLEN on the following codes below.Hope you can help me with this.

list-fieldname = 'VKGRP'.

list-just = 'C'.

list-seltext_l = 'Sales Group'.

append list to t_list.

list-fieldname = 'KWERT'.

list-seltext_l = 'Condition Value'.

list-do_sum = 'X'.

list-outputlen = 20.

append list to t_list.

Thank you in advance.

Truly yours,

gerald

1 ACCEPTED SOLUTION

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

JUST is justification, whether the value is to be right-justified, or left justified, if C is a valid value, then I would assume that this would mean, centered. DO_SUM is used to allow subtotalling and totalling for that column. OUTPUTLEN is used to make the length of the column as desired.

Regards,

Rich Heilman

1 REPLY 1

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

JUST is justification, whether the value is to be right-justified, or left justified, if C is a valid value, then I would assume that this would mean, centered. DO_SUM is used to allow subtotalling and totalling for that column. OUTPUTLEN is used to make the length of the column as desired.

Regards,

Rich Heilman