OLAP Cube with DrillThrough Example

Hi, I try to use  drillThrough with OLAP Cube. I use this connection string but this cube return me an error with relation engine. Can you send me example with drill through and OLAP Cube that working? Thank you.

2 Replies

SA Scintilla Arul Jothi Raj Syncfusion Team March 23, 2018 12:27 PM UTC

  
Hi Simone,   
  
Thanks for contacting Syncfusion Support,  
  
We have prepared sample based on your requirement.  To work with drill-through, the option needs to be enabled at cube level and kindly ensure that at your end. Also “layout” needs to be passed in drillthroughHierarchies function. Please refer the below code snippet in controller file.   
 
Code Snippet:[C#] 
[System.Web.Http.ActionName("DrillThroughHierarchies")] 
[System.Web.Http.HttpPost] 
public string DrillThroughHierarchies(Dictionary<string, object> jsonResult) 
{ 
   var layout = "normal"; 
OlapDataManager DataManager = new OlapDataManager(connectionString); 
DataManager.SetCurrentReport(OLAPUTILS.Utils.DeserializeOlapReport(jsonResult["currentReport"].ToString())); 
return olapClientHelper.DrillthroughHierarchies(DataManager, layout, jsonResult["cellPos"].ToString()); 
} 
 
 
And we are facing issue with hierarchy selector option in drill-through dialog (“Exception occurs while using hierarchy option in drillThrough feature”)  and logged a defect report. The fix for this issue will be available in the upcoming Essential Studio 2018 Volume 1 Service Pack Release 2 which is estimated to be roll out by end of April 2018.  
 
Please let us know, if you have any concern. 
 
Regards, 
Scintilla A 



SA Scintilla Arul Jothi Raj Syncfusion Team April 25, 2018 04:41 PM UTC

Hi Simone, 
We are glad to announce that our Essential Studio Volume 1, SP 2 2018 (v16.1.0.37) is rolled out and is available for download under the following link. 
The fix for the issue “Exception occurs while using heirarchy option in drillthrough feature is included in this version. We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance. 
Regards, 
Scintilla A

Loader.
Up arrow icon