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

syntax

Former Member
0 Likes
406

Hi Gurus,

I have a condition where I need to check if V_lowv_high < v_lowv_med then don't proceed else

write " we can proceed"

Can you please help me to write the syntax for thsi one.

Tahnks

Rajeev Gupta

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
381

HI,

data : lv_value1 type i,

lv_value2 type i.

lv_value1 = v_low + v_high.

lv_value2 = v_low + v_med.

if lv_value1 < lv_value2.

proceed.

else.

stop

endif.

2 REPLIES 2
Read only

Former Member
0 Likes
382

HI,

data : lv_value1 type i,

lv_value2 type i.

lv_value1 = v_low + v_high.

lv_value2 = v_low + v_med.

if lv_value1 < lv_value2.

proceed.

else.

stop

endif.

Read only

Former Member
0 Likes
381

Hi,

I forget to mention that in else condition I need to stop processing, can you also tell me how to achieve this as well.

Thanks

Rajeev Gupta