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: 

Displaying status message with more than 70 characters

Former Member
0 Kudos

Hi,

I am displaying a status message as

message s000(zvar) with text-001.

However on execution only 70 characters of text-001 are displayed though it contains around 100 characters.

How can i display messgae with 100 characters?

Thanks,

vartika

1 ACCEPTED SOLUTION

naimesh_patel
Active Contributor
0 Kudos

split your text-001 into text-001 and text-002.

then use like:

MESSAGE S398(00) WITH TEXT-T01 TEXT-T02.

When message comes on the screen, just press right click on that message .. message will scroll to left.

Regards,

Naimesh Patel

6 REPLIES 6

naimesh_patel
Active Contributor
0 Kudos

split your text-001 into text-001 and text-002.

then use like:

MESSAGE S398(00) WITH TEXT-T01 TEXT-T02.

When message comes on the screen, just press right click on that message .. message will scroll to left.

Regards,

Naimesh Patel

matt
Active Contributor
0 Kudos

You will have to split your text into two or more variables that are less than 70 chars, then use:

message s000(zvar) with l_text1 l_text2.

Alternatively, put the text as a new message number in your message class ZVAR. Then you can have it all; with variables if you want.

matt

Former Member
0 Kudos

split the message into 2 .,.

message s000(zvar) with text-001 text-002.

Former Member
0 Kudos

Hi

in the message class when you are maintaining the Text there is a checkbox for LONG TEXT tick that and maintain the long text in ediotr

then when the message displays, double click on it it displays that complete long text

Regards

Anji

Former Member
0 Kudos

Display whole message at a time as type 'I'...

message i000(zvar) with text-001.

Former Member
0 Kudos

Hi Varitka,

Try this way - divide your message into individual text elements containing not more than 49 character each and try to dispaly by the below staments

MESSAGE E000(ZMSG) WITH text-001 text-002 text-003 text-004.

you can also try this way

MESSAGE E001 WITH '1234567890 12345678901e'

'1234567890 12345678902e'

'1234567890 12345678903e'

'1234567890 12345678904e'.

Thanks

SDN Powered