‎2006 Oct 04 8:52 AM
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.
‎2006 Oct 04 8:55 AM
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
‎2006 Oct 04 8:55 AM
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
‎2006 Oct 04 8:59 AM
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
‎2006 Oct 04 9:00 AM
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
‎2006 Oct 04 9:00 AM
Hi Priya,
You can change your Message Statement to following.
MESSAGE ID '00' TYPE 'I' WITH 'Not a valid Accounting Debit Note' .
Regards,
Raghav
‎2006 Oct 04 9:05 AM
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.
‎2006 Oct 04 9:05 AM
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..