Hi All,
I could not remove duplicates in the report using the below query.
select Job.* from Job where JobDefinition in(select JobDefinition.UniqueId from JobDefinition where JobDefinition.BranchedLLPVersion = "+MASTER+") and Job.status in ('K','E') order by Job.RunStart;
Right now I am getting both the child job name and parent job name as same if there is error in the child jobs. I want only parent job name even there are more than one child job errors.
Please help me to get the report.