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 text

Former Member
0 Likes
574

hi all,

i'm working on ALV report,

i need to display column heading as

PR to

Po in

days

i'm getting as PR to PO in Days in a single line,

how to make text to come one below the other.

Regards

Suprith

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
553

hi

give both column no nad row number to text.

fcat-row = 1.

fcat-column = 1.

text = PR to.

fcat-row = 2.

fcat-column = 2.

text = Po in.

Aditya

hi all,

i'm working on ALV report,

i need to display column heading as

PR to

Po in

days

i'm getting as PR to PO in Days in a single line,

how to make text to come one below the other.

Regards

Suprith

3 REPLIES 3
Read only

Former Member
0 Likes
554

hi

give both column no nad row number to text.

fcat-row = 1.

fcat-column = 1.

text = PR to.

fcat-row = 2.

fcat-column = 2.

text = Po in.

Aditya

Read only

Former Member
0 Likes
553

Hi,

try this..

fieldcat-row = 1.

fieldcat-column = 1.

fieldcat-coltext_l = PR to.

fieldcat-row = 2.

fieldcat-column = 1.

fieldcat-coltext_l = Po in.

Read only

Former Member
0 Likes
553

You can use the Blog.

You have to use the class CL_DD_DOCUMENT

In that there is a method called NEW_LINE

that will add a new line .