In Reporting we can get userid by using function 'USER()' but there is no flexibility on how to get password
To get password we need to do little trick as shown below.
Create new session initialization block with sql query as
select ':USER',':PASSWORD' from dual
And assign these values to session variables, example GetUser, GetPassword
access these session variables on report by VALUEOF(NQ_SESSION.GetUser) or VALUEOF(NQ_SESSION.GetPassword) respectively.
No comments:
Post a Comment
Please give me your feed back