Hi jeevankumarg,
As was already suggested, I think you need to start from combining the data using the transaction command. I had a look at your picture, but it wasn't entirely clear what sort of data you already have in your index. I'm assuming that you already have the data in the top of your picture?
So, I suppose you could go along with something like:
...| transaction SrcFileName TgtFileName
|eval LastStatus=mvindex(Status,-1)
|eval LastEndDateTime=mvindex(EndDateTime,-1)
|eval LastExecutionStep=mvindex(ExecutionStep,-1)
|eval LastDestinationServer=mvindex(DestinationServer,-1)
|rename LastStatus as Status
|rename LasteEndDateTime as EndDateTime
|rename LastExecutionStep as ExeceutionStep
|rename LastDestinationServer as DestinationServer
|table BusinessObject, SrcFileName, SourceServer, DestinationServer, Environment, ExecutionStep, Status, TgtFileName, StartDateTime, EndDateTime
The idea here is that within the transaction, the eval-command mvindex gets you the last value for that particular field, as transaction creates a multi-value field for fields that do not have identical values across the transaction. (If there is only one value, the field will not be multi-value, unless you give the option mvlist=true to transaction .)
Hope this helps you or at least gives you some idea for a solution.
... View more