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 options values

Former Member
0 Likes
418

Hello All, i have a selection option like

select-options:

doc_type(1) type c.

and i ahve 5 different DB tables each stores each one stores doc type A, D, K, X, Z seperately

means table one will have only doc type A related data.

now i want to check waht user has entered in the selection values . for eg if user enters range lower value C higher value P. Then i should select only two DB tables which contains D and K.

is there any way that i can check "if D is in user selection ".

or is there any other way to achieve this?

thanks in advance

Best Regards

Amarender Reddy B

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
388

Hi

use the AT SELECTION-SCREEN ON VALUE event to validate what the user has entered

you can check

if doc_type-low is between 'C' and 'P' or/AND DOC_TYPE-HIGH BETWEEN

endif.

try this out.

regards

Ramchander Rao.K

2 REPLIES 2
Read only

GauthamV
Active Contributor
0 Likes
388

hi,

use at selection screen on field event.

Read only

Former Member
0 Likes
389

Hi

use the AT SELECTION-SCREEN ON VALUE event to validate what the user has entered

you can check

if doc_type-low is between 'C' and 'P' or/AND DOC_TYPE-HIGH BETWEEN

endif.

try this out.

regards

Ramchander Rao.K