Show the "Related Treatment-Emergent Adverse Events" data subset, which the sponsor chose to label as "Related TEAE" (line 15). This data subset is defined as a compound expression (line 18) that combines 2 subclauses using the "AND" logical operator (line 19).
Lines 21-23: Show the first subclause defined as an instance of the ReferencedDataSubset class that references the instance of the DataSubset class identified as "Dss01_TEAE" (line 22).
Lines 24-32: Show the second subclause defined as a simple condition that specifies that the value of the AEREL variable in the ADAE dataset is either "POSSIBLE" or "PROBABLE". This subclause condition could be expressed as:
ADAE.AEREL IN ('POSSIBLE', 'PROBABLE')
When the condition for the data subset referenced by the first subclause is retrieved and combined with the condition for the second subclause using the specified logical operator, this compound expression could be expressed as:
ADAE.TRTEMFL EQ 'Y' AND
ADAE.AEREL IN ('POSSIBLE', 'PROBABLE')