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: 

MESSAGE

Former Member
0 Kudos
104

I'VE WRITTEN THE FOLLOWING CODES:

DATA: MESS(100).

CONCATENATE 'material document or year is not a valid ' 'return delivery document' INTO mess.

MESSAGE i208(00) WITH mess.

BUT IN THE OUTPUT I ONLY GET:

( material document or year is not a valid r)

IT DOESNOT SHOW ME FULL MESSAGE.HOW CAN I GET THE FULL MESSAGE.

PLZ HELP.

4 REPLIES 4

Former Member
0 Kudos
54

You can get the message whose length is around 50 characters. I am not sure about the exact length. But it is near to 50 characters including spaces.

Best Regards,

Vibha

*Please mark all the helpful answers

Former Member
0 Kudos
54

Hi Priya,

do one thing

split the message into two texts like

mess--material document or year is not a valid

mess2--return delivery document

now message i208(00) with mess mess2.

-


note that this mess will be for 50 char

and in a message u can give four text

message i000 with mess mess2 mess3 mess4

each holding 50 char each ..

regards,

Vijay

try this code ..

MESSAGE I208(zm) with text-001 text-002.

zm IS UR MESSAGE CLASS ,

AND TEXT-001 , TEXT 002 CONTAINS UR TEXT VALUES ..

-


MESSAGE I208(zp824) with text-001 text-002.

-


This is working fine for me

Message was edited by: Vijay

Former Member
0 Kudos
54

Priya

Once u go to the particular message in the message class, there is one option called long text. It may meet your requirement.

Shane

Former Member
0 Kudos
54

try this....

CONCATENATE 'material document or year is not a valid ' 'return delivery document' INTO mess <b>separated by ','</b>.