This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT proj.PROJ_NAME AS ProjectName | |
| ,proj.PROJ_UID as ProjectUID | |
| ,CT.Customer | |
| ,PCC.CostCenter | |
| ,PP.ProjectAccount | |
| ,pr_owner.RES_NAME AS ProjectOwner | |
| ,pr_owner.RES_UID as OwnerResourceNameUID | |
| ,CASE WHEN PPS.ProjectStatus IS NULL THEN 'Undefined' ELSE PPS.ProjectStatus END AS ProjectStatus | |
| FROM (SELECT PROJ_UID | |
| ,PROJ_NAME |