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

length message error

Former Member
0 Likes
2,366

hi boy,

is it possible to modify the length of the error message?

message e000(su) with 'xxxxxxxxxxxxxxxxxxxxxxx'.

I should stamp a long message and it cuts him/it to me

thk.

Edited by: francesco aiello on Oct 29, 2009 10:52 AM

Edited by: francesco aiello on Oct 29, 2009 10:53 AM

1 ACCEPTED SOLUTION
Read only

agnihotro_sinha2
Active Contributor
0 Likes
1,270

hi,

If your message class(SU) has '&&&&' then you can fit in 50,50,50,50 text length i think.. but the way you fit in the message depends.

use

MESSAGE e000(SU) with text-001 text-002 text-003 text-004.

Text element shud be created with your message splitted in each of them

ags.

2 REPLIES 2
Read only

Former Member
0 Likes
1,270

Hi

What do you really mean?

If I remember the max lenght of a text displayed by a message can be about 50 char, so u can use a variable as text:

data msg(50) type c.

message e000(su) with msg.

Now the lenght will depend on the text loaded in to MSG

If you need a message longer than 50, u need to use a long text linked to the message.

Max

Read only

agnihotro_sinha2
Active Contributor
0 Likes
1,271

hi,

If your message class(SU) has '&&&&' then you can fit in 50,50,50,50 text length i think.. but the way you fit in the message depends.

use

MESSAGE e000(SU) with text-001 text-002 text-003 text-004.

Text element shud be created with your message splitted in each of them

ags.