Hi @Victor Emil Søe Rasmussen,
Please try the following solution.
It will work starting from SQL Server 2017 onwards.
-- DDL and sample data population, start
DECLARE @tbl TABLE (ParentRecID VARCHAR(5), DeployIssue VARCHAR(30));
INSERT @tbl (ParentRecID, DeployIssue) VALUES
('ID1', 'Process Issue'),
('ID1', 'Timing Issue'),
('ID2', 'Process Issue'),
('ID3', 'Process Issue'),
('ID4', 'Timing Issue'),
('ID4', 'Technical Issue');
-- DDL and sample data population, end
SELECT ParentRecID
, DeployIssue = STRING_AGG(DeployIssue, ' | ')
FROM @tbl
GROUP BY ParentRecID;