Application Development 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: 

POP-UP

Former Member
0 Kudos

I WANT A POP UP SCREEN WHICH TELLS OR RAISES ERROR SAYING

“Not a valid Accounting Debit Note”.

HOW SHOULD I GO ABOUT IT. AND WHAT WILL BE THE STEPS.

6 REPLIES 6

Former Member
0 Kudos

Hi priya,

1. simple

2. just use

3. MESSAGE 'Not a valid Accounting Debit Note' TYPE 'I'.

regards,

amit m.

anversha_s
Active Contributor
0 Kudos

hi,

give like this.

message 'Not a valid Accounting Debit Note' type <b>'I'.

</b>

for information it will give pop up.

rds

anver

pls mark all hlpful answers

former_member223537
Active Contributor
0 Kudos

Hi,

You can use FM COPO_POPUP_TO_DISPLAY_TEXTLIST.

Other way is to Use Message of type i.

Best regards,

Prashant

Former Member
0 Kudos

Hi Priya,

You need to write:

MESSAGE 'Not a valid Accounting Debit Note' TYPE 'E'.

Regards,

Dharitree

0 Kudos

if u want screen with msg..then use

call subscreen

Former Member
0 Kudos

Hi priya ,

If u want to raise an error msg..

use..

MESSAGE 'Not a valid Accounting Debit Note' TYPE 'E'.but this wont be a pop-up..it will come in status bar

If u want to a pop-up..

use..

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

Regards,

Ajith

Mark if helpfu.