‎2005 Nov 22 12:04 PM
select-option : z_stat_e FOR jest-stat
i'm asking:::
loop at z_stat_e
if it_table cd z_stat_e
endif.
endloop.
but i get always "IEQXXXX"
i made -low but i want to get only XXXX without IEQ
‎2005 Nov 22 12:06 PM
yehiel braha
Change like this:
<b>
if it_table cd z_stat_e-low.</b> "<-- for lower limit checking
<b>
if it_table cd z_stat_e-high.</b> " <-- for high limit checking
Thanks
Kam
‎2005 Nov 22 12:06 PM
yehiel braha
Change like this:
<b>
if it_table cd z_stat_e-low.</b> "<-- for lower limit checking
<b>
if it_table cd z_stat_e-high.</b> " <-- for high limit checking
Thanks
Kam
‎2005 Nov 22 12:06 PM
loop at z_stat_e
if it_table cd <b>z_stat_e-low</b>
endif.
endloop.
Did you make the above change?
Are you already looping the it_table ?
‎2005 Nov 22 12:07 PM
Hi What is your exact question.
loop at z_stat_e
if it_table cd z_stat_e-<b>low.</b>
endif.
endloop.
Please Revert.
Regards
vijay
‎2005 Nov 22 12:11 PM
Hi yehiel,
1. Your field is a SELECT-OPTION (AND NOT A PARAMETER)
2. Hence, in Open Sql, we need to use
IN
instead of =,cd etc.
BCOS it is a RANGE.
3. ur line should be
it_table IN z_stat_e
HOPE IT HELPS.
Regards,
Amit M.