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: 

drop down selection screen field.

Former Member
0 Kudos

Hi record id ( s_recid) is in my selection screen.

I want to validate DDL01 and ASN01 values to s_recid.

How to do?

3 REPLIES 3

Former Member
0 Kudos

Hi Kumar,

Do your validation in At selection-screen event.

like this,



At selection-screen 

if s_recid <> 'DDL01' or s_recid <> 'ASN01' .

Message 'Your Error Message' , type 'E'.

Endif.

it will display your message other than DDL01 and ASN01 in selection-screen.

Thanks

Murugan.B

Former Member
0 Kudos

hi,

in at selection-screen on input

use FM F4IF_INT_TABLE_VALUE_REQUEST.

this will resolve ur problem.

Rgds.,

subash

0 Kudos

Subash can u pls advise me how to use this FM?