‎2007 May 28 11:33 AM
‎2007 May 28 11:35 AM
‎2007 May 28 11:35 AM
Hi,
ranges is also useful for giving the selections.these are same as like select-options.but the diff is ranges will not create an internal table internally like select-options.
rgds,
bharat.
‎2007 May 28 11:36 AM
this is just the declaration similar to select option
this will store the values for carrid
s_carrid1-sign = 'I'.
s_carrid1-option = 'BT'.
s_carrid1-low = '100'.
s_carrid1-high = '1000'.
append s_carrid1.
‎2007 May 28 11:36 AM
Hi
It is used to group a range of values into an internal table like thing, which is created similar to the selection table when we decalre select0options on the selection screen
the selection table consiist of the field SIGN,OPTION,LOW and HIGH fields
Reward points if useful
Regards
Anji
‎2007 May 28 11:37 AM
hi,
it consists of range of values cassid..
select-options contains the same but select-options does the user interactions, gives a screen to enter the values.
but ranges does not..
Ranges contains the values (low--high) , when used get all the values b/w low and high values given and present in DB..
rewards if useful..
regards,
nazeer
‎2007 May 28 11:39 AM
ranges are just like select-options but select options are appearing in selection screen and user can give the input to it during run time. but ranges are not appearing in the selection screen so programmers has to fill the data for ranges. you can use ranges like select-option in your select query also ( with IN operator).
regards
shiba dutta