Obiee - The nQuireID ( Authentication nqid )

Obi Edition

About

Passing the nQuireID in the Go Url pull the authentication out and replace the need to pass credential (login/password) to authenticate (ie, like SSO or trusted sign on).

How to get Nqid

In the cookie, the available values are :

  • sawU=UserId
  • nQuireId=tvs4…….
<script language="javascript">

function readCookie(name) {

	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function GetNqid() {
        var nid = readCookie('nQuireID');
        alert('Nid : ' + nid);
}

GetNqid();

</script>

Result :
Obiee Nid





Discover More
Saw Object
OBIEE - BI Presentation Service (SAW/OBIPS)

AnswersInteractive DashboardsDelivers The Oracle BI Presentation Service Server: is a pure Web Environment visualize data from the Oracle BI Server through the creation of Interactive Dashboards...
Obiee Mapviewer Annee1998
OBIEE 10G - Integration of a heat-map with Mapviewer

This article show you how Mapviewer can receive data from OBIEE. To transmit data, Mapviewer need an xml file. Obiee can create a xml file with the help of the Go Url. For this purpose, we need to give...



Share this page:
Follow us:
Task Runner