Oracle Business Intelligence Applications

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

Custom Export to Excel Link

Received Response
1
Views
1
Comments

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?

Answers