2009 Feb 09 3:16 AM
Hi,
How can I check 2 variable with OR
IF NOT v_tab OR v_tab1 IS INITIAL.
do the required cahnges
ENDIF.
Is the above logic correct, if not how to do.
2009 Feb 09 3:18 AM
Hi,
IF NOT v_tab is initial OR
NOT v_tab1 IS INITIAL.
do the required cahnges
ENDIF.Best regards,
Prashant
Hi,
How can I check 2 variable with OR
IF NOT v_tab OR v_tab1 IS INITIAL.
do the required cahnges
ENDIF.
Is the above logic correct, if not how to do.
2009 Feb 09 3:18 AM
Hi,
IF NOT v_tab is initial OR
NOT v_tab1 IS INITIAL.
do the required cahnges
ENDIF.Best regards,
Prashant
2009 Feb 09 3:20 AM
yes you can do it :
If v_tab is not intial
or v_tab1 is not initial.
do something.
endif.
2009 Feb 09 3:19 AM
hi
Do like this
IF NOT ((v_tab IS INITIAL ) OR (v_tab1 IS INITIAL)).
do the required cahnges
ENDIF.
Regards
Madhu
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |