â2006 Nov 03 4:45 PM
If BSEG-KOART = K or BSEG-BUZID = T
*Ignore this item and exit
I don't want to append below record
...
Endif.
In the above case the logic should be
IF ut_bseg-koart <> 'K'
AND ut_bseg-buzid <> 'T'.
ENDIF.
OR
IF ut_bseg-koart <> 'K'
OR ut_bseg-buzid <> 'T'.
...
ENDIF .
I hope the first one is correct .
â2006 Nov 03 4:48 PM
Sam,
F ut_bseg-koart <> 'K'
AND ut_bseg-buzid <> 'T'. is correct.
-Anu
â2006 Nov 03 4:48 PM
Sam,
F ut_bseg-koart <> 'K'
AND ut_bseg-buzid <> 'T'. is correct.
-Anu
â2006 Nov 03 4:48 PM
hi Sam,
the first statement gets triggered when both the conditions are satisfied where as the second if either of the statement is statisfied ..
i guess in your case it should be the first one ..
Regards,
santosh
â2006 Nov 03 4:49 PM
The first is correct.
IF ut_bseg-koart <> 'K'
AND ut_bseg-buzid <> 'T'.
ENDIF.