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: 

selection-screen input

Former Member
0 Kudos

hi all,

in selection screen i got field

mat type with no-interval.

i can enter only 2a or 2b and combination of 2a and 2b, how to

do this.

Regards

Suprith

1 ACCEPTED SOLUTION

Former Member
0 Kudos

at selection-screen

if data-low = 2a or data-low = 2b or data-high = 2a or data-high = 2b.

else.

message e000(msg_class).

endif.

Edited by: Amit Gupta on Oct 3, 2008 1:02 PM

2 REPLIES 2

Former Member
0 Kudos

at selection-screen

if data-low = 2a or data-low = 2b or data-high = 2a or data-high = 2b.

else.

message e000(msg_class).

endif.

Edited by: Amit Gupta on Oct 3, 2008 1:02 PM

Former Member
0 Kudos

at selection-screen.

if not '2a' in mat or not '2b' in mat.

"->> error message.

endif.

Regards,

Aparna