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: 

How to print the message in 2 lines?

Former Member
0 Kudos

How to print the message in 2 lines?

Here i am having it like this... MESSAGE i000(zm) WITH lv_uname.

here I want to print lv_uname in 2 lines because it lengthy one.

Thanks,

Sridhar.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi sridhar,

You can use the function module POPUP_TO_INFORM. I think this will be useful.

Thanks,

Muthu.

4 REPLIES 4

Former Member
0 Kudos

Hi

If the lv_uname is lengthy it automatically moves to the second line after displaying in the first line.

There are no further options to display message in 2 lines with MESSAGE statement

Regards

Anji

0 Kudos

No man, itas not comming..I am using the below logic to print my message:

CONCATENATE text-I01 lv_printdate1 text-I02 INTO lv_printname

SEPARATED BY space.

MESSAGE i002(zm) WITH lv_printname.

its printing in a single line...

Former Member
0 Kudos

Hi sridhar,

You can use the function module POPUP_TO_INFORM. I think this will be useful.

Thanks,

Muthu.

0 Kudos

Thanks Mutthu...

Its solved my problem..