COGNOiSe.com - The IBM Cognos Community

Legacy Business Intelligence => COGNOS ReportNet => Topic started by: mrcool on 29 Oct 2005 07:03:20 AM

Title: [Solved] How to use session parameters in tabular sql
Post by: mrcool on 29 Oct 2005 07:03:20 AM
Hi frnds...Can anyone tell me how to use session parameters in tabular SQL..I searched forÃ,  this topic and didnt find any...Waiting for ur Reply ;)



Thanks,
S
Title: Re: How to use session parameters in tabular sql
Post by: Cornelis on 31 Oct 2005 06:44:37 AM
This is what I did for one of my customers.

The SQL is native SQL, make sure you've got connection to your datasource (you can select this in the properties of the tabular SQL).

Select dbo.tblGebruiker.strNTUsername,dbo.tblItemOnzichtbaar.intItemID
from dbo.tblItemOnzichtbaar, dbo.tblGebruikerSecurityGroep, dbo.tblGebruiker
where dbo.tblItemOnzichtbaar.intSecurityGroepID=dbo.tblGebruikerSecurityGroep.intSecurityGroepID
andÃ,  Ã, dbo.tblGebruikerSecurityGroep.lngGebruikerID=dbo.tblGebruiker.lngGebruikerID
andÃ,  Ã, dbo.tblGebruiker.strNTUsername=#sq($account.personalInfo.userName)#Ã, 

This works like a charm.

Cornelis
Title: Re: How to use session parameters in tabular sql
Post by: mrcool on 02 Nov 2005 01:42:11 AM
Thnx....its helpful...