Von wem hast du das denn?1337 hat geschrieben:Aber mit "AND" kann ich ja nur einmal prüfen.
Code: Alles auswählen.
IF ( a = b or a = c ) and ( x = y or x = z).
Code: Alles auswählen.
IF a IS INITIAL
AND b = c
AND d = e
Code: Alles auswählen.
IF a IS INITIAL
AND (b = c)
AND (d = e)
Code: Alles auswählen.
IF a IS INITIAL
AND:
b = c,
d = e.
Code: Alles auswählen.
IF ( sy-index = 1 OR sy-fdpos = 0 ) AND ( sy-tabix = 2 OR sy-fdpos = 3 ).
Code: Alles auswählen.
($a == $b) ? $c = $a : $c = $b;