‎2006 Sep 25 11:07 AM
Hi All,
I am using select options i have resrict the user for a particular fields to select only the allowed values for that i have created a new DE and Domain where i have specified the Value ranges , what more should i need to do ?
Thanks and regards.
‎2006 Sep 25 11:11 AM
‎2006 Sep 25 11:11 AM
Hi aima,
1. It can be done in case of parameters
PARAMETERS : WERKS LIKE T001L-WERKS <b>value check.</b>
2. but in case of select-options,
i think its difficult
3. We have to filter out the wrong
values, in our abap code itself.
regards,
amit m.
‎2006 Sep 25 11:12 AM
u can specify that in the select-options also
click on the extensions tab and there in the 3rd and 4th tab u can specify the values to restict the user from those values
‎2006 Sep 25 11:13 AM
hi
U should use the value table at domain to restrict the user entry
Or provide the foreign key on that column
regards
Pulkit agrawal
‎2006 Sep 25 11:13 AM
Hi aima,
If u have specified in the domain level ,u will get the specified values only..
select-options : s_zfield for tabname-fieldname.
Regards,
Nagaraj
‎2006 Sep 25 11:18 AM
Hi,
at selection-screen.
if not s_field[] is initial.
SELECT * FROM DD07L in to table i_values
WHERE DOMNAME = 'ZRECONCILE' AND
DOMVALUE_L = INT_ZBKTSTKREC_EDIT-
loop at s_field.
read table i_values with key s_field-low = i_value-
DOMVALUE_l.
if sy-subrc <> 0.
message e000 'invalid entry'.
endif.
endif.
endloop.
Regards
Amole