You are currently browsing the archives for the pepeQvDocumentService category


beeye::getBeeyeQvReportList

Code Sample :: PHP


private $_docName = "c:/QlikView/Online Sales.qvw";
private $URI = "http://localhost:8240/beeye/org?wsdl";

$SoapCl = new SoapClient($this->URI, $param=array());
$RSult = $SoapCl->getbeeyeQvReportList($this->_docName);

Usage

This function is a helper, to get a list off all Report Objects inside the specified document

Datasample

DocName ObjectName Report Name
c:/QlikView/Online Sales.qvw Report\RP1 This is my Sample Report
Online Sales XML

beeye:getbeeyeQvFieldList(_DocName)

Code Sample :: PHP


private $_docName = "c:/QlikView/Online Sales.qvw";
private $URI = "http://localhost:8240/beeye/org?wsdl";

$SoapCl = new SoapClient($this->URI,$param=array());
$Rslt = $SoapCl->getbeeyeQvFieldList($this->_docName);

Usage

This function is a helper, to get a list off all Fields inside a QlikView Document. Currently sorted by creation order inside the load skript.

Datasample

DocName FieldName
c:/QlikView/Online Sales.qvw ProductId
Online Sales XML


<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<GetbeeyeQvFieldListResponse xmlns="http://www.beeye.org">
<GetbeeyeQvFieldListResult xmlns:a="http://schemas.d.../pepeQvService" xmlns:i="http://www.w3.org/...e">
<a:beeyeQvField>
<a:DocName>c:/QlikView/Online Sales.qvw</a:DocName>
<a:FieldName>$Field</a:FieldName>
</a:beeyeQvField>
<a:beeyeQvField>
<a:DocName>c:/QlikView/Online Sales.qvw</a:DocName>
<a:FieldName>$Table</a:FieldName>
</a:beeyeQvField>
<a:beeyeQvField>
<a:DocName>c:/QlikView/Online Sales.qvw</a:DocName>
<a:FieldName>$Rows</a:FieldName>
</a:beeyeQvField>
<a:beeyeQvField>
<a:DocName>c:/QlikView/Online Sales.qvw</a:DocName>
<a:FieldName>$Fields</a:FieldName>
</a:beeyeQvField>
</GetbeeyeQvFieldListResult>
</GetbeeyeQvFieldListResponse>
</s:Body>
</s:Envelope>

beeye::getbeeyeQvObjectList(_docName)

Code Sample :: PHP


private $_docName = "c:/QlikView/Online Sales.qvw";
private $URI = "http://localhost:8240/beeye/org?wsdl";

$SoapCl = new SoapClient($this->URI, $param=array());
$RSult = $SoapCl->getbeeyeQvObjectList($this->_docName);

Usage

This function is a helper, to get a list off all Objects inside a QlikView Document.

Datasample

DocName ObjectName SheetName
c:/QlikView/Online Sales.qvw Document\BU75 0
Online Sales XML


<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<GetbeeyeQvObjectListResponse xmlns="http://www.beeye.org">
<GetbeeyeQvObjectListResult xmlns:a="http://..." xmlns:i="http://www.w3.org...">
<a:beeyeQvObject>
<a:DocName>c:/QlikView/Online Sales.qvw</a:DocName>
<a:ObjectName>Document\BU75</a:ObjectName>
<a:SheetName>0</a:SheetName>
</a:beeyeQvObject>
<a:beeyeQvObject>
<a:DocName>c:/QlikView/Online Sales.qvw</a:DocName>
<a:ObjectName>Document\BU76</a:ObjectName>
<a:SheetName>0</a:SheetName>
</a:beeyeQvObject>
</GetbeeyeQvObjectListResult>
</GetbeeyeQvObjectListResponse>
</s:Body>
</s:Envelope>

My QV Reports Access Point

Hi,

the new “My Reports” Share Point Service is working! Now a user can log in to the beeye QvService Host and start the PDF generation on the fly;) If he is a allowed reciever.

Next steps will be, to allow the user subselects to fields within his filter;)

My Reports Sample

new SOAP method for QlikView Objects

So, as I currently work on a solution, where you will be able to implement a graph from QlikView into a webpage (as bmp or gif). I needed to get the ObjectID’s of a specific QlikView Document. So reading the API i can now inroduce the new funtion:

getbeeyeObjectList(_docName)

This returns an Object with the following parameters:

  1. _docName
  2. _ObjectID
  3. _SheetID

With this combination, it is possible to refenrence any object by the SOAP Service;)

Continue reading →


Tags