Customize export options (JSP)

<p>Hi all,</p><p>I&#39;m developing a web application with JSP technology. I would know if is possible to disable some export options displayed in the html export page created automatically by the JRC. Particularly I would disable RPT export format.</p><p>I&#39;ve modified the function getFormatDropdownList() in export.js file, but it doesn&#39;t work. I suppose that the combo-box containing export options is created by some JRC class. </p><p> Thanks in advance. <br /></p>

<p>Hi, I am actually not sure off the top of my head how to do this. In the old days with the ActiveX it was easy because we could just get rid of the Export Format DLL and the viewer would honor that, but with Java I am quite sure it is not as easy. I will look into this and get back to you on this one. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) </p>

Similar Messages

  • Customize the Export option as ONLY in CSV format

    I designed the detail report which has 17585 rows and 52 columns, If I export the report in excel its taking long to download (7-10 Mins 148 MB Size with all formatting properties), where as in DATA CSV format its taking less than a min and the file size is 4.4 MB.
    Is there is any option where I can only customize the Export option as CSV format. Also my report contains Narrative view for the Heading, Can I add the Export link some where on the Narrative view that is in CSV format.
    Please help me out with this issue.
    Thanks

    Try to use url for the same report and add the these at the end of url, so that on click user can download only as .csv
    *&Format=txt&Extension=.csv*
    Irrespectiev of version you can use the below link for URL
    http://docs.oracle.com/cd/E21043_01/bi.1111/e16364/apiwebintegrate.htm#CACCHBHC
    Just in case check this too to disable links
    Re: Disable or Hide return link
    Appreciate if you mark as correct/helpful if helps
    Edited by: Srini VEERAVALLI on Dec 20, 2012 5:05 PM

  • Problems in Limiting Export option in Web Analysis shortcut menu options

    Hi everyone,
    i'm trying to limit the shortcut menù option in Web Analysis studio following the instructions in the WA 9.3.1 user guide: "Limiting Web Analysis Studio Shortcut Menu Options" page 293. Exactly i would hyde the Export to some users (an user with Viewer and Expoler permissions).
    The problem is that the solution does not work.
    Resuming:
    First, I have created the WAMenu.xml file, with restrictions for the roles: Viewer and Explorer (using the same tags of the Sample XML File in the guide)
    Second, I have modified the WebAnalysis.properties file removing the # ahead this two lines:
    "WAStudioMenuControl= C:/Hyperion/Analyzer/conf/WAMenu.xml
    ModuleName=WebAnalysisStudio"
    and modified the path with the correct location of the XML file.
    At last, i have restart the services regarding Workspace and Web Analysis.
    But, it does not work. The user can still see the export options in the shortcut menu..I don't understand what is wrong..
    I really hope that someone can help me!!

    Hi Iain,
    thanks for answering.
    Unfortunately it doesn't restrict neither in the workspace nor in the WA studio.
    I made a lot of attempts, not only with export but also with other option, and there are no changes!!
    Do you remember if you made the same steps descripted above, or there is something that i did not make (or made wrong)??
    Cheers,
    Angelo

  • How to restrict 'Broadcast and Export' option of BW report through web.

    Helllo,
    Please anyone let me know, how NOT to give/allow "Broadcast and Export' option in BW report, when accessed through Web.
    Is there is any Auhtorization object which restrictes this option.

    Hi,
    Please check this, it may help you.
    http://help.sap.com/saphelp_nw70/helpdata/en/80/1a68b4e07211d2acb80000e829fbfe/frameset.htm
    Regards,
    Madhu

  • IR export options and embedded HTML

    Good day,
    Apex 3.2.1.00.12, 9.2.0.8 DB, on AIX 5.3.
    I have an IR where in I use html in the SQL that defines it to format certain columns such as the below
    "<div style=""overflow:auto;height:50px;"">column value here</div>"I then define the display type as ' Standard Report Column '.
    That obviously allows me to have some "formatting" power that the IR does not give by default.
    Problem is when I do the export to a CSV I get the html markup included as the value of the column.
    Is there a way I can keep my formatting desires and export without the html included in the value ?
    Also, can I export the whole result set to CSV, not just whatever I have pagination set to ?
    I do NOT have a print server.
    Thanks for your time,
    CLG

    What export option you used.
    I am using default export option and it exports all the records on report. Not current page.
    Furthermore for your requirment I ahve done lot of test regaring same thing. But I didnt find any solution. So what I did was create my own export function for those reports and then use that.
    Thanks
    * If this answer is helpfull or correct then please mark it and grant the points.

  • Export options in Voyager

    I created Voyager documents for my cubes. The tool is great in terms of its ability to report data from the multiple measures and dimensions. When it comes to Export options - The export to excel is pretty clean, but it doesn't carry the formatting to the exported file. This feature is something that our users really felt was missing. Can this feature be released as a patch or part of a service pack release? Also, the export doesn't carry the title of the report to excel or PDF (print to PDF - Data).
    Thanks in Advance!!
    Harish

    To confirm:  Column formatting like display -> Name:Caption ..  .. is not being exported to excel
    please refer to Note # 1345585
    this behaviour will be enhanced in XI3.0 Sp3 - due end 2009.
    regards,
    Henry

  • ReportViewer 2010:how to hide pdf in export option in subreports in reportviewer

    Hi,
    I am using ReportViewer 2010 and using code (posted below) to hide certain options from export, its working fine for parent report,  but when i am clicking on parent report to view child report, then export option in child report is showing all the
    items in export option which all are hided in parent report. So please help me out.
    private void DisableUnwantedExportFormats()
                FieldInfo info;
                foreach (RenderingExtension extension in rptviewerByBrandBySentimentAttribute.ServerReport.ListRenderingExtensions())
                    if (extension.Name != "PDF" && extension.Name != "ASPPT" && extension.Name != "ASPPTX" && extension.Name != "EXCEL" && extension.Name != "MHTML") // only PDF and Excel
    - remove the other options
                        info = extension.GetType().GetField("m_isVisible", BindingFlags.Instance | BindingFlags.NonPublic);
                        info.SetValue(extension, false);
                    if (extension.Name == "ASPPT") // change "Excel" name on the list to "Excel 97-2003 Workbook"
                        info = extension.GetType().GetField("m_localizedName", BindingFlags.Instance | BindingFlags.NonPublic);
                        if (info != null) info.SetValue(extension, "PowerPoint 2003");
                    if (extension.Name == "ASPPTX") // change "Excel" name on the list to "Excel 97-2003 Workbook"
                        info = extension.GetType().GetField("m_localizedName", BindingFlags.Instance | BindingFlags.NonPublic);
                        if (info != null) info.SetValue(extension, "PowerPoint 2007");
    neha

    Hi,
    Thank you for this article.
    I am using the localreport ReportViewer 2010 and other code examples weren't working.
    Apparently, the m_isVisible field was not available in earlier version of ReportViewer
                        info = extension.GetType().GetField("m_isVisible", BindingFlags.Instance | BindingFlags.NonPublic);                    info.SetValue(extension, false);
    Code that wasn't working:
                FieldInfo info = extension.GetType().GetField("m_serverExtension",            BindingFlags.NonPublic | BindingFlags.Instance);            if (info != null)            {                object actualExtension = info.GetValue(extension);                if (actualExtension != null)                {                    PropertyInfo propInfo = actualExtension.GetType().GetProperty("Visible");                    if (propInfo != null && propInfo.CanWrite)                    {                        propInfo.SetValue(actualExtension, false, null);                    }                }            }
    Thanks again, chupaul :)

  • How do I share a new project on imovie if the export option is greyed out and not an option?

    how do I share a new project on imovie if the export option is greyed out and not an option?

    nicoleking wrote:
    ... I heard that if you bring in your old iPhone, they will give you a new one with some kind of fee, but I don't know how that works.
    https://discussions.apple.com/message/22920500

  • Convert pdf to word doc-but don't have the export option.

    I want to convert a pdf (that I got from an email) into a Word doc so I can edit it the way I want to. However, for some reason now I don't have the 'Export' option in my File drop down list.
    Funny thing is, I've converted the document once already and have entirely forgotten how I did it obviously!
    I've made so many changes in my first conversion I want to start over.
    why don't I have the 'Export' option? Or ... when I do a 'save as' and chose 'word doc' it only does a copy - paste type save - where I can't make any changes. It's like it puts it into a text box or something.
    I have MSWord 2010.

    Hi Kelly,
    MsDennis1465 wrote:
    When I do the steps below, the Word doc that is saved is like a photo. I am unable to work with the document. Why does it do that? I have converted pdf’s before without that happening but I think I did it on a free 30-day trial of X Pro.
    This usually happens when you're dealing with a very poor quality scanned document that doesn't have enough data for the Acrobat OCR engine to actually process.
    As for Acrobat 6.0 Pro, I don't believe the Save as Word function was introduced until version 8.0, but it's been a few years and the memory of Acrobat 6 has faded a bit.
    -David

  • Invalid Export Options error

    Post Author: Kit
    CA Forum: .NET
    Why would an export to html, which has for many months  performed correctly, suddenly start producing the "Invalid export options" error?Our application is a Microsoft Dynamics GP third party add-on, developed in Dexterity ( The MS Dynamics GP native development tool) and using a home-grown .NET component to export reports to HTML.In our scenario we have a production environment where three reports are produced each evening, exported to HTML, and then published via FTP. Crystal 10 is installed on the server. This has worked well for a long time but lately one or more of the three  reports have failed each time, with a "Invalid export options" error.The failure is not consistent -  for example one time the first two reports were successful, but the third failed, but the next time the first two both failed, whereas the third was succesful.Ou first thought was that the error could be caused by a bad report setup within the Dexterity side of the application, however we have investigated this possibility and debugged the application and can find no likely cause there.Here's the error;CrystalDecisions.CrystalReports.Engine.InvalidArgumentException: Invalid export options.   at CrystalDecisions.CrystalReports.Engine.EngineExceptionUtils.DoThrowException(String message, EngineExceptionErrorID id)   at CrystalDecisions.CrystalReports.Engine.ExceptionThrower.ThrowEngineException(String messageID, EngineExceptionErrorID id)   at CrystalDecisions.CrystalReports.Engine.HTMLExporter.GetPage(Boolean bSeparatePages, Boolean bDHTML, Int32 startPage, Int32 endPage)   at CrystalDecisions.CrystalReports.Engine.HTMLExporter.Export()   at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.ReportDocument.Export(ExportOptions options)   at KIT.Crystal.RunReport()" KIT.Crystal.RunReport is from our component, and contains the following code                    rptDoc = SetupRptDoc();                    // Set the options for saving the exported file to disk                    destOpts = new DiskFileDestinationOptions();                    destOpts.DiskFileName = outputFilename;                    expOpts = new ExportOptions();                    expOpts.DestinationOptions = destOpts;                    // Set the exporting information                    expOpts.ExportDestinationType = ExportDestinationType.DiskFile;                    switch (exportFormat)                    {                        case ExportFormatEnum.CRS:                            expOpts.ExportFormatType = ExportFormatType.CrystalReport;                            break;                        case ExportFormatEnum.DOC:                            expOpts.ExportFormatType = ExportFormatType.WordForWindows;                            break;                        case ExportFormatEnum.HTML:                            htmlOpts = ExportOptions.CreateHTMLFormatOptions();                            htmlOpts.HTMLBaseFolderName = new FileInfo(_outputFilename).DirectoryName;                            htmlOpts.HTMLFileName = new FileInfo(_outputFilename).Name;                            htmlOpts.HTMLEnableSeparatedPages = false;                            htmlOpts.HTMLHasPageNavigator = false;                            expOpts.ExportFormatOptions = htmlOpts;                            expOpts.ExportFormatType = ExportFormatType.HTML40;                            break;                        case ExportFormatEnum.RTF:                            expOpts.ExportFormatType = ExportFormatType.RichText;                            break;                        case ExportFormatEnum.XLS:                            expOpts.ExportFormatType = ExportFormatType.Excel;                            break;                        case ExportFormatEnum.PDF:                        default:                            expOpts.ExportFormatType = ExportFormatType.PortableDocFormat;                            break;                    }                    //Export the report                    rptDoc.Export(expOpts);

    Post Author: Kit
    CA Forum: .NET
    Why would an export to html, which has for many months  performed correctly, suddenly start producing the "Invalid export options" error?Our application is a Microsoft Dynamics GP third party add-on, developed in Dexterity ( The MS Dynamics GP native development tool) and using a home-grown .NET component to export reports to HTML.In our scenario we have a production environment where three reports are produced each evening, exported to HTML, and then published via FTP. Crystal 10 is installed on the server. This has worked well for a long time but lately one or more of the three  reports have failed each time, with a "Invalid export options" error.The failure is not consistent -  for example one time the first two reports were successful, but the third failed, but the next time the first two both failed, whereas the third was succesful.Ou first thought was that the error could be caused by a bad report setup within the Dexterity side of the application, however we have investigated this possibility and debugged the application and can find no likely cause there.Here's the error;CrystalDecisions.CrystalReports.Engine.InvalidArgumentException: Invalid export options.   at CrystalDecisions.CrystalReports.Engine.EngineExceptionUtils.DoThrowException(String message, EngineExceptionErrorID id)   at CrystalDecisions.CrystalReports.Engine.ExceptionThrower.ThrowEngineException(String messageID, EngineExceptionErrorID id)   at CrystalDecisions.CrystalReports.Engine.HTMLExporter.GetPage(Boolean bSeparatePages, Boolean bDHTML, Int32 startPage, Int32 endPage)   at CrystalDecisions.CrystalReports.Engine.HTMLExporter.Export()   at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.ReportDocument.Export(ExportOptions options)   at KIT.Crystal.RunReport()" KIT.Crystal.RunReport is from our component, and contains the following code                    rptDoc = SetupRptDoc();                    // Set the options for saving the exported file to disk                    destOpts = new DiskFileDestinationOptions();                    destOpts.DiskFileName = outputFilename;                    expOpts = new ExportOptions();                    expOpts.DestinationOptions = destOpts;                    // Set the exporting information                    expOpts.ExportDestinationType = ExportDestinationType.DiskFile;                    switch (exportFormat)                    {                        case ExportFormatEnum.CRS:                            expOpts.ExportFormatType = ExportFormatType.CrystalReport;                            break;                        case ExportFormatEnum.DOC:                            expOpts.ExportFormatType = ExportFormatType.WordForWindows;                            break;                        case ExportFormatEnum.HTML:                            htmlOpts = ExportOptions.CreateHTMLFormatOptions();                            htmlOpts.HTMLBaseFolderName = new FileInfo(_outputFilename).DirectoryName;                            htmlOpts.HTMLFileName = new FileInfo(_outputFilename).Name;                            htmlOpts.HTMLEnableSeparatedPages = false;                            htmlOpts.HTMLHasPageNavigator = false;                            expOpts.ExportFormatOptions = htmlOpts;                            expOpts.ExportFormatType = ExportFormatType.HTML40;                            break;                        case ExportFormatEnum.RTF:                            expOpts.ExportFormatType = ExportFormatType.RichText;                            break;                        case ExportFormatEnum.XLS:                            expOpts.ExportFormatType = ExportFormatType.Excel;                            break;                        case ExportFormatEnum.PDF:                        default:                            expOpts.ExportFormatType = ExportFormatType.PortableDocFormat;                            break;                    }                    //Export the report                    rptDoc.Export(expOpts);

  • Export Options not displaying in Object Style Options panel

    Hi,
    I'm trying to create an object style for decorative images as artefacts and set that style for export to PDF, but in the Object Style Options panel the Export Options settings (which I've seen before, bottom left of the panel) are not displayed. Can anyone tell me how I can make them visible? I'm on InDesign CS6.
    Thanks, Ally

    Hi changilainen2,
    Yes, we are following Adobe Forum!!!
    Thanks for your inputs. Actually while implementing this feature we were bit confused if it is of more importance to have these options in the Object Styles. That's why you are finding it missing from there.
    But feedback from you and some other folks, made us realize that we should have it in object styles too.
    Thanks we'll try incorporating this in the feature.
    ~Monica.

  • I want to save my Bookmarks, but unable to find either Import or Export options, Kindly help

    In Earlier version Firefox use to have Import & Export options under File menu, but in the new version 7.0.1, I cannot find Import & Export options, as I was trying to save my Bookmarks. Kindly help.
    Thanks & Regards,
    Subodh.

    Hi Subodh. I have encountered the exact same problem. It seems that the Import & Export options under the File menu are now removed starting from version 7. This leaves another exact (yet longer) way to do this.
    Here's the article that explains everything: https://support.mozilla.com/en-US/kb/Importing%20bookmarks%20and%20other%20data%20from%20other%20browsers?s=import+bookmarks&r=0&as=s

  • Universal Highest Quality Export Option?

    I am looking for a universal export option on my iMovie HD movies and iPhoto slide shows. It needs to be the highest quality that Apple TV can take while also being compatible with my iPhone. I've tried the "To AppleTV" option but that one is not compatible with the iPhone. I only want to encode once and not keep two or three different formats of my projects. TV shows and movies I get from the iTunes store are great quality on my TV and also sync to my iPhone. Why can I not accomplish the same? What am I missing? Please help.

    Can't be done. You'll want to have two exports.
    The iPhone doesn't have any "HD" options and the Apple TV does (720).
    Some (most HD versions) you buy at the iTunes Store actually download two different files (one smaller version for the iPhone and iPod). The smaller version is the one that can sync to the iPhone.
    Look here for some clues:
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-ipod-vi deo-formats-and-display-resolutions/

  • Report Export option on the top

    Hi In Oracle Apex reports,
    Can we have Report Export option on top and bottom simultaneously?
    Thanks,

    Hi,
    You can't do that using any report settings as such, but you could update a report template to do that. In a report template, you can use #CSV_LINK# wherever you want the export option to appear. By default, this is underneath the report (in the "After Rows" template setting), but you could also add this in above the report (in the "Before Rows" template setting).
    When working with templates, it is always a good idea to work on a copy of an existing template - especially if the change is only for one report. In Shared Components, Templates, create a new Report Template and base this on a copy of your existing template. Once created, make the change as above and Apply Changes. Then, on your report, switch its template to your new one.
    Andy

  • CR2008 SP3 - Export options

    Environment:
    OS: Windows XP (SP3)
    Crystal Reports : 12.1.0.892
    We are making use of Report Viewer in our applciations (.Net)
    And when we want to export to Excel 2007 and CSV we are not able to find options.
    We can see only Excel (97-2003) and other options.
    How we can get export to CSV and Excel 2007 (.xlsx)

    Not sure why that would be the case. See the wiki [Available Export Formats, Crystal Reports 9.1 to Crystal Reports for Visual Studio 2010|http://wiki.sdn.sap.com/wiki/x/FINiAw] for more details.
    Three things I'd like to mention / recommend
    1) You are on CR 2008 Service Pack 1. Update to SP4 by installing, then installing SP4. Service packs can be found on the downloads page:
    http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm
    2) Note from the wiki that the some export options are not available via the viewer, but are available via the engine (not sure if this is the case here).
    3) For an exporting sample app see vbnet_win_export.zip from this location:
    http://wiki.sdn.sap.com/wiki/x/JQBmBQ
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

Maybe you are looking for

  • Doubt in GUI_UPLOAD function

    Hi friends, CALL FUNCTION 'GUI_UPLOAD ' EXPORTING FILENAME = FILE FILETYPE = 'ASC' *HAS_FIELD_SEPARATOR = 'X' TABLES DATA_TAB = ITAB. In the GUI_UPLOAD function what the filetype should be and has_field_separator should be given what value? What does

  • Import MS Access 2013 tables into SQL Server 2012

    Hi there, Is there a step by step example somewhere showing how to import an MS Access 2013 table into SQL Server 2012? I have read the existing posts and don't see a definitive answer. I have installed MS Access 2010 engine, first 32 bit then 64 bit

  • Define a line layout variant for item display

    I am getting the following message "Define a line layout variant for item display" while displaying the document via FPL9. Thanks for the help. Kumar

  • Assigning a Custom Workflow.

    Hi, I want to ask that How to assign/attach a custom design WorkFlow to an Oracle Standard Form. For Example: In Move Orders there is a planner to which the notification is forwarded. I want to attach a custom design workflow in this form, which will

  • Where can I download Adobe software for Mac OS?

    Just purchased a MAC computer but alas although my package came complete with botth a Windows and a MAC disk I never thought I would buy a MAC (Too expensive). So now I have one and I threw my MAC disk away some time ago. Is there anyway of downloadi