COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => SDK => Topic started by: gauravd20 on 09 Jul 2008 03:34:40 AM

Title: Security Filters using SDK
Post by: gauravd20 on 09 Jul 2008 03:34:40 AM
How can i implement data level security filters using COGNOS Java SDK?
Any ideas?
Title: Re: Security Filters using SDK
Post by: raro on 09 Jul 2008 08:04:31 AM
As the Cognos-BiBus creates and eventually executes the SQL-statements fetching data to be incorporated into reports, you have to implement data-level-security in the frameworkmanager-model.
e.g. in WHERE-Clause of query-subject use something like:
SELECT s.myproductline,
           s.myproduct,
           s.myvalue
FROM sales s, productline_security ps
WHERE s.myproductline = ps.productline
  and ps.USERID = #sq($account.personalInfo.userName)# )

In Java-SDK you would login into Cognos-Server using named-user logins.

hth.
Title: Re: Security Filters using SDK
Post by: gauravd20 on 10 Jul 2008 04:24:57 AM
Thanks for the reply.
Actually i am looking on how to create security filters to apply on specific query subject using COGNOS SDK from external application.
Any ideas if some API is being used for its implementation?
Title: Re: Security Filters using SDK
Post by: raro on 29 Jul 2008 05:47:23 AM

Imho data-level-security must be done in fm-model on sql-basis as said before.

You can read and write FM-Models via SDK. So you might want to read the fm-model via SDK from the contentstore. Manipulate it as you need and send it back to the contentstore.

hth