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: 

Warning message in Modulepool

Former Member
0 Kudos

Hi All,

How to create a warning message in Modulepool.

Thanks

Basheer

1 ACCEPTED SOLUTION

faisal_altaf2
Active Contributor
0 Kudos

Hi,

Use the following Way You can use it in PAI.

message 'Please Enter the correct Customer ID' type 'E'.

Remember 1 thing that it will Block all of your input field, to handle this you will have to use the following in the u201CFlow Logicu201D.

process after input.
  chain.
    field:  field1,
            field2,
            fieldn.
    module user_command_0001.
  endchain.

After using Chain EndChain you will be able to use these input field.

Kind Regards,

Faisal

Edited by: Faisal Altaf on Feb 4, 2009 7:36 PM

2 REPLIES 2

Former Member
0 Kudos

Hi Basheer

For which case do you want the warning message?

You can write a simple

MESSAGE test-100 TYPE 'W'. 

statement in the PAI of the screen.

Pushpraj

faisal_altaf2
Active Contributor
0 Kudos

Hi,

Use the following Way You can use it in PAI.

message 'Please Enter the correct Customer ID' type 'E'.

Remember 1 thing that it will Block all of your input field, to handle this you will have to use the following in the u201CFlow Logicu201D.

process after input.
  chain.
    field:  field1,
            field2,
            fieldn.
    module user_command_0001.
  endchain.

After using Chain EndChain you will be able to use these input field.

Kind Regards,

Faisal

Edited by: Faisal Altaf on Feb 4, 2009 7:36 PM