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

MESSAGE STATEMENT REQUIRES ERROR NO.

Former Member
0 Likes
2,243

WHEN I WRITE:

(MESSAGE 'Not a valid Accounting Debit Note' TYPE 'I'.)

TO GENERATE A POP-UP.

THEN IT GIVES ME AN ERROR I.E.

(THREE-DIGIT ERROR NUMBER XXX REQUIRED IN THE "MESSAGE EXXX.." STATEMENT.)

HOW CAN I RECTIFY THIS.

PLEASE HELP.

1 ACCEPTED SOLUTION
Read only

andrea_galluccio2
Contributor
0 Likes
1,976

Hi A.,

try with this statement.

Message i208(00) with 'Not a valid Accounting Debit Note'.

Look at standard help to see the syntax of the "message" statement using F1 on command.

Bye

Andrea

Pls reward if it helps

6 REPLIES 6
Read only

andrea_galluccio2
Contributor
0 Likes
1,977

Hi A.,

try with this statement.

Message i208(00) with 'Not a valid Accounting Debit Note'.

Look at standard help to see the syntax of the "message" statement using F1 on command.

Bye

Andrea

Pls reward if it helps

Read only

anversha_s
Active Contributor
0 Likes
1,976

hi,

go to se91.

create a message class.

let the name of class be zm050.

message number is 001.

*Message is 'Not a valid Accounting Debit Note'.'

MESSAGE s001(zm050).

it will work.

rgds

anver

pls mark hlpful answers

Read only

Former Member
0 Likes
1,976

Hi

You can use

message i000 with 'Not a valid Accounting Debit Note' .

You need to give message class, say ZZ with the program name as message-id ZZ.

Regards,

Navneet

Read only

Former Member
0 Likes
1,976

Hi Priya,

You can change your Message Statement to following.

MESSAGE ID '00' TYPE 'I' WITH 'Not a valid Accounting Debit Note' .

Regards,

Raghav

Read only

Former Member
0 Likes
1,976

Hi Priya,

GOto se91(message maintenance)

Create message class

if message class name is "TESTC"

001 'Not a valid Accounting Debit Note'

then write <b>message e001(testc).</b>

Regards,

Ajith

Mark if helpful.

Read only

Former Member
0 Likes
1,976

hi,

Without giving any msg. class or number, you can generate a pop-up with the statement:

Message 'Not a valid accounting debit note' type 'I'.

what you have done is correct...try giving the same statement in the at selection-screen event..