I have fields aa, bb, cc, dd, hostname and sometime few filed value may be null in payload. What i want to do. if (aa, bb is not null) than lookup abc.csv name output name hostname ip if (cc, dd is not null) than lookup abc.csv name output name hostname ip if hostname=echo than lookup abc.csv name output name hostname ip Here is the catch, if 1st if condition is executed it should ignore 2nd & 3rd. if 2nd if statement executed than 3rd should ignored. Like wise i have to go upto 10 if condition.
... View more