Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to get all records in seperate column which has the word 'PAY'. Hw to acheive it using tmap?
@RAMYA DHANASEKARAN , you wan to get the records which had PAY records to out put ? then in tMap output section enable filter option use the code below way.
("PAY").equals(row1.col)
Thanks,
Manohar
@RAMYA DHANASEKARAN , you wan to get the records which had PAY records to out put ? then in tMap output section enable filter option use the code below way.
("PAY").equals(row1.col)
Thanks,
Manohar
Thanks @Manohar B .. I tried by adding row1.fieldname.contains condition to my job to bring the records seperately. Solution provided by you is also working.Thanks!!