cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

i have a parameter called zzzzz

i want that the user can chosse only '99' and '88'

how i do it?

thanks.

0 Likes
View Entire Topic
Former Member
0 Likes

pass the values 99 & 88 in a field in an internal table and use Function module 'F4IF_INT_TABLE_VALUE_REQUEST' to c these values when user presses F4.

to validate, u can issue an error message if he enters something else.

eg.. if ( val <> '99' or val <> '88' ).

message 'value not proper' type 'E'.

endif.

Regards,

Bikash

thats exactly what i meant when i said populate values 99 & 88 in an internal table & use FM for F4 help. it ll pop up these 2 values in the box when user clicks F4

Message was edited by: Bikash Agarwal