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 Report

Former Member
0 Kudos

Hi All,

How to fixe the field lenght in ALV Report.

if field is 15 charcters length, i want to increse 30 characters in list.

plz reply me.

1 ACCEPTED SOLUTION

former_member189629
Active Contributor
0 Kudos

Bramha,

Use the std structure for ALV line

FIELDCAT_LN LIKE LINE OF FIELDCAT, " Line of Fieldcat

and while populating the fieldcat with the field value, do this

FIELD_VALUE = <your field>.

FIELDCAT_LN-OUTPUTLEN = 30.

reward if helpful.

Karthik

1 REPLY 1

former_member189629
Active Contributor
0 Kudos

Bramha,

Use the std structure for ALV line

FIELDCAT_LN LIKE LINE OF FIELDCAT, " Line of Fieldcat

and while populating the fieldcat with the field value, do this

FIELD_VALUE = <your field>.

FIELDCAT_LN-OUTPUTLEN = 30.

reward if helpful.

Karthik