Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 16 Oracle Analytics Lounge
- 216 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 79 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Custom Export to Excel Link

I've created a custom Export to Excel link(on OBIEE dashboard) to export a dashboard as text filed with the following HTML code:
<script type="text/javascript">
function DashboardExportXls(){
saw.dashboard.exportToExcel('/Shared Folders/RM/Rep1/Dashboards/Rep1 Reports/', 'Print My report', true);
}
</script>
<button class="Excel" onclick="DashboardExportXls()">Export to Excel</button>
<style>
.Excel{
top:90px;
background-color:#79bbff;
-moz-border-radius:28px;
-webkit-border-radius:28px;
border-radius:28px;
border:1px solid #84bbf3;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:14px;
padding:6px 20px;
text-decoration:none;
text-shadow:0px 1px 0px #528ecc;
}
.PDFButton:hover {
background-color:#378de5;
}
.PDFButton:active {
position:left;
top:8px;
}
</style>
When I execute it, I am getting the following error:
Invalid path (/Shared Folders/RM/Rep1/Dashboards/Rep1 Reports/) -- not allowed to be empty
Error details: Error Codes: QM3V3HLV
What am I missing?