I have two file of the same format and columns and i am comparing them by passing them in a joiner and setting join key to all the fields.
file a:
ID DESC CODE COMMENT VALUE
1 AFAF 34 GDG 34
2 DGF 45 DGDF 45
file b:
ID DESC CODE COMMENT VALUE
1 AFAF 34 XXX 34
2 XXX 45 DGDF 45
IN jOINER, I am setting join key as {ID},{DESC},{CODE},{COMMENT},{VALUE} Using the example file both records will go into Unused port.
My question here is, is it possible to get to know due to which field the record is rejected. As in is it possible to get the below output
1 AFAF 34 XXX 34 Comment mismatch
2 XXX 45 DGDF 45 DESC mismatch
Graph used:
Input file---->Reformat-------
|----Joiner----Output
Input file 2---->Reformat----- --Unused
strong text