Exporting data in a format other than Excel

HI,
I am exporting data displayed on UI/JSPX page to an excel sheet using exportCollectionActionListener.
what other types are supported to export the data and whats the procedure.
I am specifically interested in PDF , CSV and txt formats.
Thanks,
Sachin

Hi,
as the tag document say, only Excel export is supported
Frank

Similar Messages

  • Exporting in a different format other than HTML?

    Hello.  I made an animation in Adobe Edge Animate CC Pro and I can play it on my computer just fine with the .HTML document.  Just when I tried to post it to Facebook to show everyone it wasn't one of the supported file types. Ok np it's just facebook.  I recently started up my Creative Cloud online storage and when I tried uploading just the .HTML file it wouldn't play, yet images show up just fine on my CC file storage.  You would think this .HTML would be easy to open in any browser, is there anyway to export these animations I make as GIF's? Why would the HTML file not play on the Cloud server? Do I need to have the whole project saved to the drive anywhere I go for it to play in its .HTML format?
    Please Help.

    If you really want others to check out your animation without having a true web-hosting facility (so not really published, but as a test or sneak-peak), try using this method:
    set the Publishing settings to generate a Web instance, and let it publish the lot. Find the folder, rename the html file to something like "check_this_out.html" (so recipients know which file to open), and zip it. Send this zip file by email, or put this one any cloud to be downloaded. Hopefully the interested users know how to open a zip file...
    Note: check the Publishing setting "Host runtime files on Adobe CDN" - it must be OFF to let users view your animation also off-line, otherwise the animation will start looking for some essential auxiliary files online.
    Most cloud servers are not really "web" servers, so they don't store files in a way that physically reflects the proper hierarchy of files and folders as you upload them. The comprehension between i.e. the html files and images can't be retrieved and put to work on such servers. Just like Facebook, they store everything in huge databases, as a matter of fact.

  • How to export data to specified format as EXCEL(XXL)

    Dear Experts,
    Good day!
    Who can help me that to export data in SAP by KE30 Transaction Code? We planed to do some things on browser using SAP GUI for HTML and ITS 6.20 in SAP R/3 640. Now, our end-user occur one problem that they need outgoing the data wanted through browser from SAP(Triggered by KE30). In the SAP GUI for Windows, they can do it to export data into specified format (as XXL), but that for HTML can't done. The problem had a message shown below: The presentation server does not function in Windows. Which other way to resolve this? Please tell us, thank you!

    The XXL export is not supported by Sapgui for HTML(Webgui) via Office Integration. See note: 512068    Office integration and SAP GUI for HTML
    However there is a workaround available, this is described in note:                                 
    #435769 ALV WebGUI: Excel download by saving into local file    
    can help you.         
    (the note is old - but the information in it still holds true)                                         
    Please note that the download and upload functionality of the SAPGui for HTML (WEBGUI)  requires a Java Virtual Machine.          
    Please see note 980772 for a list of the supported JVMs.
    One can also using the following link to check your current JVM version in your Browser:         
    http://www.java.com/en/download/help/testvm.xml

  • How to export data from a Dynpro table to Excel file?

    Hi
    Here I go again. I read the post <b>Looking for example to export data from a DynPro table to Excel file</b> and put the code lines into a Web Dynpro Project where we need to export a dynpro table to Excel file but exactly at line 23 it doesn't recognize <b>workBook = new HSSFWorkbook();</b>
    1     //Declare this in the end between the Begin others block.
    2     
    3     private FileOutputStream out = null;
    4     private HSSFWorkbook workBook = null;
    5     private HSSFSheet hsSheet = null;
    6     private HSSFRow row = null;
    7     private HSSFCell cell = null;
    8     private HSSFCellStyle cs = null;
    9     private HSSFCellStyle cs1 = null;
    10     private HSSFCellStyle cs2 = null;
    11     private HSSFDataFormat dataFormat = null;
    12     private HSSFFont f = null;
    13     private HSSFFont f1 = null;
    14     
    15     //Code to create the Excel.
    16     
    17     public void onActionExportToExcel(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
    18     {
    19     //@@begin onActionExportToExcel(ServerEvent)
    20     try
    21     {
    22     out = new FileOutputStream("C:/mydirectory/myfiles/testexcel.xls");
    23     workBook = new HSSFWorkbook();
    24     hsSheet = workBook.createSheet("My Sheet");
    25     cs = workBook.createCellStyle();
    26     cs1 = workBook.createCellStyle();
    27     cs2 = workBook.createCellStyle();
    28     dataFormat = workBook.createDataFormat();
    29     f = workBook.createFont();
    30     f1 = workBook.createFont();
    31     f.setFontHeightInPoints((short) 12);
    32     // make it blue
    33     f.setColor( (short)HSSFFont.COLOR_NORMAL );
    34     // make it bold
    35     // arial is the default font
    36     f.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
    37     
    38     // set font 2 to 10 point type
    39     f1.setFontHeightInPoints((short) 10);
    40     // make it red
    41     f1.setColor( (short)HSSFFont.COLOR_RED );
    42     // make it bold
    43     f1.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
    44     f1.setStrikeout(true);
    45     cs.setFont(f);
    46     cs.setDataFormat(dataFormat.getFormat("#,##0.0"));
    47     
    48     // set a thick border
    49     cs2.setBorderBottom(cs2.BORDER_THICK);
    50     
    51     // fill w fg fill color
    52     cs2.setFillPattern((short) HSSFCellStyle.SOLID_FOREGROUND);
    53     cs2.setFillBackgroundColor((short)HSSFCellStyle.SOLID_FOREGROUND);
    54     // set the cell format to text see HSSFDataFormat for a full list
    55     cs2.setDataFormat(HSSFDataFormat.getBuiltinFormat("text"));
    56     cs2.setFont(f1);
    57     cs2.setLocked(true);
    58     cs2.setWrapText(true);
    59     row = hsSheet.createRow(0);
    60     hsSheet.createFreezePane(0,1,1,1);
    61     for(int i=1; i<10;i++)
    62     {
    63     cell = row.createCell((short)i);
    64     cell.setCellValue("Excel Column "+i);
    65     cell.setCellStyle(cs2);
    66     }
    67     workBook.write(out);
    68     out.close();
    69     
    70     //Read the file that was created.
    71     
    72     FileInputStream fin = new FileInputStream("C:/mydirectory/myfiles/testexcel.xls");
    73     byte b[] = new byte[fin.available()];
    74     fin.read(b,0,b.length);
    75     fin.close();
    76     
    77     wdContext.currentContextElement().setDataContent(b);
    78     }
    79     catch(Exception e)
    80     {
    81     wdComponentAPI.getComponent().getMessageManager().reportException("Exception while reading file "+e,true);
    82     }
    83     //@@end
    84     }
    I don't know why this happen? Any information I will appreciate it.
    Thanks in advance!!!
    Tokio Franco Chang

    After test the code lines appears this error stacktrace:
    [code]
    java.lang.NoClassDefFoundError: org/apache/poi/hssf/usermodel/HSSFWorkbook
         at com.sap.tc.webdynpro.progmodel.api.iwdcustomevent.ExportToExcel.onActionAct1(ExportToExcel.java:232)
         at com.sap.tc.webdynpro.progmodel.api.iwdcustomevent.wdp.InternalExportToExcel.wdInvokeEventHandler(InternalExportToExcel.java:147)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleAction(WebDynproMainTask.java:101)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:304)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:649)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:252)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:392)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:345)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:323)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:865)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:240)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:159)
    Thanks in advance!!!
    Tokio Franco Chang
    [/code]

  • Export data in cloumn format in Essbase v11.1.1

    Hi Everybody,
    I have installed essbase 11.1.1 in my personal desktop recently, to understand the new features and I observe dataexport in column format is not working as intended. When i select option called "export in column format" data is not exporting in cloumn format, exporting in blocks(normal export). In version 7.1.6 we did data export several times using column format and data was exported in cloumn format.
    Do i need to change any settings in cfg file to export data in cloumn format?
    Please some one share your views on this?
    Thanks,
    Ram

    Export in SQLLoader format has been changed to generate the data in a separate file from the control file. This was done as there are restrictions in the data that can be embedded in the control file. You should now find two files generated for each loader format export: a .ldr and a .ctl file.
    Joyce Scapicchio
    SQL Developer Team

  • Thread: Export Data in TSV format (International / Unicode characters)

    Hi OAF Gurus,
    Question: Export data in TSV format ? how
    I am working in JDEV 10g, OA Framework 12.0.6.
    I have a page which has a OA Table populated with data, I need to export this data in a TSV (*Tab Separated values*) format.
    I know that we can add a “Export” button and then the data is exported in a CSV (comma Separated values) format.
    The question is how to save in TSV format instead.
    Reason for using TSV format: Our Data contains Unicode characters(Asian characters) which CSV files will not support. (FYI: Oracle Forms export in TSV format)
    Thanks in Advance
    Chaitanya

    use class CL_ABAP_CONV_OUT_CE
    2) or use obn application server
      open dataset file for output in  legacy  text mode code page p_code.
    (for codepage look  in tabele TCP00!)
    grx
    A.
    Edited by: Andreas Mann on Nov 8, 2010 11:23 AM

  • How to play videos in other formats other than mp4 in ipod touch.

    how to play videos in other formats other than mp4 in ipod touch.
    I have tried an app named VLC streamer. But I never knew how to use it...
    Can someone suggest anything else?

    Under "General" in iTunes Preferences, does "Play
    Videos in.." allow you to set the playback of videos
    as you desire?
    kind of. It does spawn a new window, which is great (thanks!). But it seems to be at a lower resolution - does iTunes compress further or display at lower res? What is the function that people are supposed to be able to use to use iTunes as a media center to watch movies?

  • Problems emailing any other file format other than a .jpg

    I am having problems emailing any other file format other than a .jpg in mac Mail in Leopard. Is anyone else having this problem?
    I have tried PDF, .tif and .doc documents, and they are small files, less than 150 kb. I have checked to ownership on the images and it says that I can read and write to them. I have also checked with my ISP and my mailbox capacity is 10 MB and was recently emptied. I am able to log into my ISP's webmail portal and send these types of attachments through there successfully, which has made me convinced that it has to do with Leopard or Mac Mail because I did not have these problems in Tiger.
    When I send a message like this, Mail says, "Sending" for a while, and then says "Cannot send message using server:(Name of my server) Sending the message content to the server failed. Select a different outgoing mail server."

    I've been sending .doc files with/without also .jpg as attachments without problems so it is possibly not a Leopard problem. I know this doesn't solve your problem though. Someone else may be able to solve the problem.

  • Leading Zeros Missing - When exporting data from ALV grid display to Excel

    Hi,
    Am exporting the data from ALV GRID DISPLAY to Excel sheet using standard toolbar icon 'Local file'
    the leading zeros displayed in the ALV output is missing in the EXCEL sheet.
    (eg)  in ALV o/p - 0029. 
            in Excel - Only 29 is appearing.
    As per the requiement i have to show the leading zeros in excel also.
    Pls help on this issue.
    Thanks in advance..

    Hi ,
      Please set the property  :
      wa_fieldcat-lzero = 'X' .
    when you are creating field catalog for display alv data .
    your prob will solved .
    Regards ,
    Nilesh Jain

  • Urgent Help !!!  Export data into insert format (Oracle Sql developer)

    Hi all,
    Please help , when i try to export ms access table which have 400,000 over rows to insert format using oracle sql developer 1.5.5. After the export have done the exported file xxx.sql is empty.
    Is it because of too many rows? or what tool or function should i use for exporting table with many rows.
    It used to have exported successfully with
    Insert into table( ) values ();
    Insert into table( ) values ();
    Insert into table( ) values ();
    Insert into table( ) values ();
    ----- when i try to export table with over 10,000 row.
    Regard,
    Tun

    Another option is to export your file as Formatted text (space delimited). This will create a fixed format file. You can either create an external table to access the file or use sqlloader to load it. In your control file or access parameters you will specify the positions of the fields you are interested in. Your control file will look something like this:
    OPTIONS (BINDSIZE=50000,ERRORS=50,ROWS=200,READSIZE=65536)
    LOAD DATA
    CHARACTERSET US7ASCII
    INFILE '/home/FIXED_FORMAT.dat' "FIX 58"
    CONCATENATE 1
    INTO TABLE "EMP2"
    APPEND
    REENABLE DISABLED_CONSTRAINTS
    "ID" POSITION(1:2) INTEGER(2) ,
    "REGION" POSITION(3:3) INTEGER EXTERNAL(1) ,
    "DEPT" POSITION(4:6) INTEGER EXTERNAL(3) ,
    "HIRE_DATE" POSITION(7:14) DATE(8) "mmddyyyy" ,
    "SALARY" POSITION(15:19) DECIMAL(9,2) ,
    "NAME" POSITION(20:34) CHAR(15)
    SQLDeveloper does not currently provide an option to import fixed format files.

  • Can you download RAR Risk Analysis reports to something other than Excel?

    When you run a RAR Risk Analysis and go to export the resulting reports, RAR automatically exports this into an Excel spreadsheet.
    Is it possible to export the reports into some other kind of format/tool?  (SQL would be ideal.)
    We are on GRC 5.3 SP13.
    Thanks.

    Our CMG group runs a company-wide risk analysis 2-3 times a year to use in their SOD Review process.  We are looking into loading this report into QuickView to give them more capabilities with using the report.  QV will work with Excel, but you have to load every spreadsheet and every page separately. 
    We are looking to see if we could download it into some other format that would contain all of the report in just one file.  Would make the QV load easier.  Something like SQL would probably be ideal.
    Thanks.

  • How can I go to a specific date in the future other than by clicking one month at a time?

    Would like to go to a specific date several years from now and see what else I have scheduled (if any) or to see if that day is a holiday or even just to see what day of the week that day falls on. Can I do this in some way other than clicking on the NEXT MONTH button a gazillion times?
    I am using Windows 7 (64-bit) on a Dell THX computer.
    Thanks,
    DannyBoy

    tried clicking on the year in the calendar?

  • How to change the default structure when exporting data in CSV format?

    Hello,
    can some one tell us how to change the default structure in CRM when exporting lists in CSV format (with Option "Always use unformatted list format (CSV) for download" ? Because we want to add a new structure for our own -is it possible ?
    If it is possible where can we find these structure ? In the blueprint customizing ?
    Thank you very much,
    Christian

    There is a workaround to move from 1.5 version to the older 1.4 version. But this could be specific to the browser setting the JRE version.
    Excerpts from sun docs:
    However, a user can still run older versions. To do so, launch the Java Plug-in Control Panel for the older version, then (re)select the browser in the Browser tab.
    Example:
    Assume you are running on Microsoft Windows with Microsoft Internet Explorer, have first installed version 1.4.2, then version 5.0, and you want to run 1.4.2.
    Go to the j2re1.4.2\bin directory where JRE 1.4.2 was installed. On a Windows default installation, this would be here: C:\Program Files\Java\j2re1.4.2\bin
    Double-click the jpicpl32.exe file located there. It will launch the control panel for 1.4.2.
    Select the Browser tab. Microsoft Internet Explorer might still appear to be set (checked). However, when 5.0 was installed, the registration of the 1.4.2 JRE with Internet Explorer was overwritten by the 5.0 JRE.
    If Microsoft Internet Explorer is shown as checked, uncheck it and click Apply. You will see a confirmation dialog stating that browser settings have changed.
    Check Microsoft Internet Explorer and click Apply. You should see a confirmation dialog.
    Restart the browser. It should now use the 1.4.2 JRE for conventional APPLET tags.
    Details are here
    http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/jcp.html
    My system (Windows XP) has the version 1.5_09 set as the default. However i just installed JRE 1.5_06 and would like to revert back to _06 as the default JRE..
    Will update if i find more information

  • Getting report (rdf) output in different language format other than english

    I have a report registered in apps with the output type as pdf.when i run it,the output comes in pdf but in a language other than english.
    when i run the report in the reports builder the output in pdf comes in english.I am using EBS R12.
    pls suggest.....Thanx in advance...
    Regards,
    Kranthi

    >
    Can you help me how can i implement using xliff file.
    >
    nice guide - Translating Reports - http://docs.oracle.com/cd/E10415_01/doc/bi.1013/e12187/T421739T432386.htm
    >
    To generate an XLIFF file from an RTF template
    Open your template in Microsoft Word with the Template Builder for Word installed.
    From the Template Builder menu, select Tools > Translations > Extract Text.
    BI Publisher extracts the translatable strings from the template and exports them to an XLIFF (.xlf) file.
    Save the file to the desired location.
    >
    >
    One more clarification if i am going for 'create lang-template per lang' then do i need to have MLS configured in my EBS.
    >
    not sure about your point
    what do you mean "configured" ?
    mls is the ability to run you application on different language like italian, russian ....
    so if you want check how many lang do you have then
    select nls_language from fnd_languages where installed_flag in ('B','I');for my test instance i have only "AMERICAN"
    but i can run my report with 'lang-template per lang' in different lang
    so when you run your concurrent then click "options" and indicate "template language"
    if you have
    template name: XXTMP_ru.rtf lang: Russian
    template name: XXTMP_en.rtf lang: English
    then you can choose for "template language" - Russian and English

  • Premiere CS2 won't accept any format other than MPEG-1

    Hi there.
    The fact that i'm using an old version of Premiere isn't relevent, please do not ask me to upgrade.
    I've had the same problem with the same version on my old cumputer by the end, but it works perfectly for the first couple of months. However, Pro 2 always reachs a point in his life where, like now, he becomes as stuborn as an old man, and suddenly stars to refuse any -I really mean ANY- format, with the unfortunate exception of MPEG1. Divx, MPEG2, Uncompressed AVI, DV, HDV, nothing works except this crappy MPEG1.
    When I try to import DivX, it crashes. With HDV or any MPEG2, it keeps "Indexing" the file, over and over and over again. Since I work with HD Video, and have an HDV cam, you can see it's really a problem...
    I tried to uninstall/re-install, repair, nothing worked.
    Every other function works, including the Export, in any usual format (Avi, Adobe HD, MPEG2.....)....
    I didn't find any other topic relating to my problem. I remember seeing one where the guy thought it was because the Folder was set on "Read only", but it's been the case since the very begining (the joys of Vista), and has nothing to do with the problem.
    Thanks for your help !

    I really rarely use DivX, I only use MPEG2, or MOV files. I used DivX only for some special effect some time ago. and did a project after that that went really well (with HDV).
    This is interesting, as PrPro has never handled DivX (or Xvid) well, if at all. At best, one usually got either the Video, or the Audio (the former was usually the case).
    I wonder - have you installed any CODEC packs? Have you installed FFDShow? These often break PrPro's ability to handle formats/CODEC, that once worked. I strongly recommend on their complete removal.
    Now, back to DivX/Xvid: I have both on my machines, and neither has ever given me a problem. I do not try to edit those CODEC's, as they are highly-compressed and are designed for delivery-only.
    I'd look at things like the CODEC packs, mentioned above. Your issue is likely there, or very similar.
    Good luck,
    Hunt

Maybe you are looking for

  • Premiere Pro cs6 projects won't open

    I'm working on multiple Mac systems, 2 Mac Pro (3 years old) desktops and one fairly new macbook pro.  Recently, I've run into a very serious problem.  My projects that I've been working on for days, will suddenly not open any more - on any of my mac

  • Question about usage of aaa accounting commands

    Hi everyone, I have the problem that Cisco routers and switches do not send some accounting command information to ACS. Accounting commands do not send to ACS are "show log" and "show version". Accounting commands send to ACS are "show runn", "conf t

  • Error 1064 while starting the Oracle BI Scheduler in Windows 7 - 32 bit

    Hi Everyone, When starting the OBIEE Version 10.1.3.3.3 's BI Scheduler, the following error has been retreived. ( I have installed newly and the rpd and the webcat has been placed in the corresponding folders newly. Before placing the rpd newly , wh

  • How to list Target Dependencies

    Hi all, Sorry if this is real noddy question but can anybody tel me how to list all the dependencies for a given target such as a server or database, assumming of course all my services/ systems are setup correctly. We have a very distributed applica

  • Lightroom 3 & Element 10

    Hi, I wonder, is it possible to connect Lightroom 3 (due to superior RAW/DNG processing and photo handling) and Photoshop Elements 10 (for retouching, when needed)? Martin Evening'a book only speaks about opening a photo in CS and retouching there. T