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 in Modulepool

Former Member
0 Likes
506

Hi All,

How to create a warning message in Modulepool.

Thanks

Basheer

1 ACCEPTED SOLUTION
Read only

faisalatsap
Active Contributor
0 Likes
484

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
Read only

Former Member
0 Likes
484

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

Read only

faisalatsap
Active Contributor
0 Likes
485

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