‎2008 Nov 28 3:44 AM
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
‎2008 Nov 28 3:54 AM
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
‎2008 Nov 28 3:50 AM
‎2008 Nov 28 3:54 AM
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