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

selection-screen input

Former Member
0 Likes
429

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

Former Member
0 Likes
396

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

Former Member
0 Likes
397

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

Read only

Former Member
0 Likes
396

at selection-screen.

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

"->> error message.

endif.

Regards,

Aparna