Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Capturing Username from logon screen & Changing Brio query dynamically

Status
Not open for further replies.

quezak

Programmer
Apr 17, 2002
1
US
Hi,

I want to capture the Username from the Brio logon screen after it is validated, and based on this username I would want to generate the Brio report dynamically based on the roles he has defined in a table Eg Access to country -Belgium.In this case I want to limit the user to view data for country Belgium only.

Thanks in advance,
Zak
 
Try writing a EIS screen as a login. Ask the User to enter the User name and password check that with a query (Pass them as Limits to the Query).



 
ActiveDocument.Sections["Query"].Limits["Rlso User Name"].SelectedValues.Add(ActiveDocument.ODSUsername)
ActiveDocument.Sections["Query"].Process()

Use the ODSUsername to limit
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top