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

loop at select-option

Former Member
0 Likes
691

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
607

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

4 REPLIES 4
Read only

Former Member
0 Likes
608

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

Read only

Former Member
0 Likes
607

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 ?

Read only

Former Member
0 Likes
607

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

Read only

Former Member
0 Likes
607

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.