Hello !
I am trying to compare payment terms (ZTERM) from two tables: LFB1 & EKKO
Currently my formula below is not working because the cases where LFB1.ZTERM is showing as - in an OLAP table and EKKO.ZTERM has a value, is not marking it has Different Terms. I have tried ISNULL(column) and = and = NULL.
CASE
WHEN LFB1.ZTERM= AND EKKO.ZTERM !=
THEN Different Terms
WHEN LFB1.ZTERM != AND EKKO.ZTERM =
THEN Different Terms
WHEN LFB1.ZTERM != EKKO.ZTERM
THEN Different Terms
WHEN LFB1.ZTERM = EKKO.ZTERM
THEN Matching Terms
ELSE NULL
END