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

probelm with syntax MESSAGE text TYPE type

Former Member
0 Likes
892

hai experts,

i am working in ecc6.0 and in a module programming i am using MESSAGE text TYPE type'. to raise a message. i am not getting the message text which i am giving in 'text' . i am getting ( message text 'no vendor found' irrelevant one with same type as mentioned by me( i mean error or information ).how can i avoid this and populate my text.

5 REPLIES 5
Read only

Former Member
0 Likes
748

Hi,

Try this way...

MESSAGE e016(pn) WITH 'Enter Valid Month'(e01)

Read only

Former Member
0 Likes
748

what is the data type that u have specified for text and how u r populating it?

Hit an f1 on message u'll get example on how to do it.

Read only

0 Likes
748

Hi Kiran ,

you can write

message 'NO VENDOR FOUND FOR THIS MATCH ' TYPE 'E' .

BUT THIS WILL NOT WORK IN 4.7 .

REGARDS

Digvijay Rai

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
748

HI friend i too faced the sameprobs in ecc 6.0.

create a message in se91 with ' &' as value.

then call it in program.

Ex:

message e000(ZSD) with 'No data found'.

Read only

Former Member
0 Likes
748

Thank u experts for suggesting me the solutions to solve my problem