‎2008 Nov 18 8:36 AM
Dear all,
In the syntax MESSAGE 'Invoice No is' TYPE 'I'.
how can i pass the number of the invoice number generated.This is saved in a variable NUMBER.
If I write MESSAGE 'Invoice No is' &NUMBER& TYPE 'I'. it throws a syntax error.
Plz let me know.
Rahul.
‎2008 Nov 18 8:49 AM
Hey Rahul,
First of all create a message class,(say ztest) by going to SE91.
Then enter against message number 000 ( or against any number ),
Invoice No is &
and then go back to your code... and write the following command
MESSAGE i000(ztest) WITH number.
Cheers,
Vishnu
‎2008 Nov 18 8:38 AM
MESSAGE 'Invoice numer is &' TYPE 'I' WITH NUMBER.
General:
MESSAGE 'Text &1 &2 &3' TYPE 'I' WITH VAR1 VAR2 VAR3.
Edited by: Amit Gupta on Nov 18, 2008 9:38 AM
‎2008 Nov 18 8:38 AM
‎2008 Nov 18 8:49 AM
Hey Rahul,
First of all create a message class,(say ztest) by going to SE91.
Then enter against message number 000 ( or against any number ),
Invoice No is &
and then go back to your code... and write the following command
MESSAGE i000(ztest) WITH number.
Cheers,
Vishnu