2007 Aug 23 5:04 PM
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
2007 Aug 23 5:07 PM
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.
2007 Aug 23 5:07 PM
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.
2007 Aug 23 5:07 PM
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
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |