ExportReport
Exports the specified report.
Input
| Name | Type | Required | Accepts Output Streams | Description |
| DocumentID | String | True | False | The identifier of the document to export. |
| Type | String | True | False | The type of the document to export. Values are Excel 2007, Excel 2003, PDF, ZIP, XML.
The allowed values are Excel 2007, Excel 2003, PDF, ZIP, XML. |
| DPI | Int | False | False | Resolution in dots per inch (dpi) for generated charts. Value between 75 and 9600. Default is 300 for PDF format, 96 for all other formats. |
| Unit | String | False | False | A string that defines the unit that sizes will be reported in. Values are metric, millimeter, point, and pixel (default).
The allowed values are metric, millimeter, point, pixel. |
| RawValues | Boolean | False | False | Boolean. Default is false. If true, the raw values and their types are exported with the formatted values. |
| Optimized | Boolean | False | False | Boolean. Default is false. If true, the generated output is optimized for calculations inside Microsoft Excel. |
| LocalPath | String | False | False | The absolute location where the file will be saved. |
| OutputStream | String | False | True | An instance of an output stream where file data is written to. Only used if LocalPath is not set. |
Result Set Columns
| Name | Type | Description |
| FileData | String | If the LocalPath and FileStream inputs are empty, file data will be output encoded in base64. |
| Success | Boolean | Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details. |
| Details | String | Details of execution failure. NULL if success=true. |