Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have recently started working on Talend and need some help to implement the below logic :
If (Field1 is null)
{
If (Length(Field2)>0)
{
Field2
}
else
{"ABC" }
}
else
{
If (Length(Field3)>0)
{
Field3
}
else
{"ABC" }
}
I have used the operators in talend to code this but somehow keep coming up with the null pointer exception. Please help .