Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 52 Oracle Analytics and AI Sharing Center
- 19 Oracle Analytics and AI Lounge
- 288 Oracle Analytics and AI News
- 57 Oracle Analytics and AI Videos
- 16.3K Oracle Analytics and AI Forums
- 6.5K Oracle Analytics and AI Labs
- Oracle Analytics and AI User Groups
- 111 Oracle Analytics and AI Trainings
- 21 Oracle Analytics and AI 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?