EQL display responsability value

START WITH ChangeRequest
SELECT 
   Code,
   Description,
   DateRegistered,
   Attributes["Global", "Tijdelijke wijziging"].Value,
   Attributes["Global", "Risicoanalyse"].Value,
   Attributes["Global", "Regularisatiewijziging"].Value,
   Responsibilities.Person.FullName,
   Responsibilities.ResponsibilityType.Name,
   AuditDetails.Person.FirstName,
   AuditDetails.Person.Surname 
WHERE 
   Class.Code = 'BELV-M' 
ORDER BY 
   Code

Responsibilities.ResponsibilityType.Name, shows me for example "Change package creator"

I would like to display the the persons name instead of the type of responsability..

can anybody help me?

Parents Reply Children
  • Hello pmari,
    As per my knowledge it is not possible to show two different responsibility type people in two different columns, all different responsibility types will be displayed in a single column but in different rows.
    Again if you want to display a person having two different responsibility types in single column then use ‘And keyword’
    e.g.WHERE Responsibilities.ResponsibilityType.Name='Hoofdaannemer' AND Responsibilities.ResponsibilityType.Name='Change Package Creator'
    If you want to display person having either of the two responsibilities i.e. 'Hoofdaannemer' or 'Change Package Creator' then use ‘Or’ keyword.



    Answer Verified By: Carma De Villiers