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

Value Ranges

Former Member
0 Likes
808

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.

6 REPLIES 6
Read only

Former Member
0 Likes
774

Specify your select-option with no intervals.

Read only

Former Member
0 Likes
774

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.

Read only

Former Member
0 Likes
774

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

Read only

Former Member
0 Likes
774

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

Read only

former_member404244
Active Contributor
0 Likes
774

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

Read only

Former Member
0 Likes
774

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