The Cognos planning

天府之国
  博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

Report Access design

Posted on 2010-02-12 09:26  Cognosplanning  阅读(206)  评论(0编辑  收藏  举报

FM Query Object demo:

 

Demo
 1 SELECT        DISTINCT    
 2             B.CostCenterCode,
 3             B.CostCenterName,
 4             B.DepartmentName,
 5             B.BusinessUnit    AS BUName,
 6             B.Region        AS SubCompanyName,
 7             A.Country
 8 FROM        NEDW.dbo.D_AccessControl AS A  
 9 LEFT JOIN    NEDW.dbo.D_COSTCENTER AS B 
10 ON            A.CostCenterCode = B.CostCenterCode
11 WHERE        B.CostCenterCode IS NOT NULL
12             AND A.UserName = #sq($account.defaultName)#