2006 Oct 13 10:12 AM
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.
2006 Oct 13 10:21 AM
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
2006 Oct 13 10:28 AM
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
2006 Oct 13 10:31 AM
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
2006 Oct 13 10:33 AM
try this....
CONCATENATE 'material document or year is not a valid ' 'return delivery document' INTO mess <b>separated by ','</b>.