‎2007 Feb 02 7:24 AM
Hello Friends
How can I display message with runtime value ?
message e001 with 'Minimum Delivery Quantity is &lv_qty&' .
This &lv_qty& is caluculated at runtime.
Regards,
‎2007 Feb 02 7:46 AM
message e001 with 'Minimum Delivery Quantity is' lv_qty .This will display the value.
Check the message 001 in the message class contains minimum two & &.
‎2007 Feb 02 7:27 AM
HI,
Yes you can do that you need to provide place holder for your runtime values. So in the message class when you define message you need to provide place holder usig the &1 &2 etc.
Example.
001 This &1 is invalid.
Then call
DATA: param1 type string.
MESSAGE E001(MSG) WITH parm1.
Regards,
Sesh
‎2007 Feb 02 7:28 AM
Hi,
You need to create the Message 'Minimum Delivery Quantity is &.
And in the Report,
message E001 with LV_QTY.
Regards
Sudheer
‎2007 Feb 02 7:44 AM
swati,
just write...
message e001 with 'Minimum Delivery Quantity is ' with lv_qty.
pls check the message no(001), whether it holds minimum of one &.
here & is the place holder.
regds,
kiran
‎2007 Feb 02 7:46 AM
message e001 with 'Minimum Delivery Quantity is' lv_qty .This will display the value.
Check the message 001 in the message class contains minimum two & &.
‎2007 Feb 02 10:11 AM