Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am new to Talend and I am building this expression in tmap. can you help me convert the below logic into talend expression?
If part.flatRateExceptCode = 0
and Header.partsFlatRateInd = 'F'
and Header.partsDollarPercentChrg <>0
and Part.flatPartAmount <> 0
and not null then
work_order.part_amount = Part.flatPartAmount
Else
work_order.part_amount is NULL
thank you!
@AAA OOO , you need to use the below sample way.
row1.flatRateExceptCode ==0 && row1.partsFlatRateInd .equals("F") ? row1.flatPartAmount : null
Thanks,
Manohar
Thank you! @Manohar B will try this..😀