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

warning message !!!!

Former Member
0 Likes
623

hello everyone, thank u first,

does anyone know how to display a warning message in the dynpro of a transaction.

for my case i need to display a warning message using the contents of a sales document in the transaction " DP91, BILLING REQUEST " .

thank you for your time.

5 REPLIES 5
Read only

Former Member
0 Likes
575

Hello Kamal,

First create a message class in SE91

in the messages just put &( for dynamic values)

and in the program call the message in the following way

Message W000(ZMESG) with 'your message &'.

Regards

Chandu

Read only

former_member787646
Contributor
0 Likes
575

Hi

If you are using SAP version above 4.6 then the following line is enough.

Message 'Your Message Goes Here' TYPE 'W' .

Hope this would help you.

Murthy

Read only

Former Member
0 Likes
575

thank you for your help,

a last question, how to introduce this few lines in the abap standard code source wich allow to display the screen of the transaction DP91 with the warning message, is there an enhacement point or somthing simular

thanks a lo.

Read only

0 Likes
575

Hi

You need to have Access Code to change the Standard SAP Program to inlcude your code inside, as

you are Modifying the Standard SAP Program.

Hope this would help you.

Murthy

Read only

Former Member
0 Likes
575

Hi

U need to have Access Key for modify a SAP standar program

For write a message, look this code

     message W000(su) with text-002.

Regards

Gregory