Obiee - The SearchId (Sid) - ResultSet ID

Saw Object

About

Answers assigned unique ID to result set associate with an answers request (called SID). If you want to retrieve the data set from an answer call, you can pass this parameter in a Go Url to retrieve the same result set.

http://obieehost/analytics/saw.dll?Go&searchid=sid

How to get the Sid ?

The Sid is present as attribute of the TD and DIV HTML elements. The principle is to add an element (in our example div with the id anchor) and to search the sid attributes in the parent nodes.

<div id="anchor"></div>

<script language="javascript">

function GetSid(nodeId) {
        
        var container = document.getElementById(nodeId);
	var sid = null;
	
	// Code to capture SID
	var x = container;
	do {
		if (x.nodeName == 'TD' || x.nodeName == 'DIV') {
			sid = x.getAttribute('sid');
			if (sid != null && sid != '')
				break;
		}
		x = x.parentNode;
	} while (x != null);

       return sid;
}

alert(GetSid("anchor"));

</script>





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