Viewer Crosstab Excel Export - Limit to Static Worksheet

I'd like to know if it's possible to limit the export of a crosstab worksheet to excel to just a static worksheet (eg. Crosstab_Static excel worksheet ). In advance, thanks for your assistance.

Hi Alvaro
Not sure of your question and what exactly you mean by a static worksheet. If you want to export static data why not use the command line interface? This way you can define how the worksheet looks and then call it to produce the output without any intervention from any users who might go and change the format.
Does this help?
Regards
Michael

Similar Messages

  • Excel export options now showing in report viewer

    HI,
            I'm workin on a project and I'm having some problems when exporting to excel using crytal reports server XI. When i try to export to excel, first the excel export options is not showing. Second, when I export to excel, the columns are correctly align. it's like exported all over the place. Please help

    Excel export options are not shown when exporting from the viewer in .NET.  You will need to set up the excel export options like you want them to be in the designer first under File|Export|Report Export Options.

  • Export Calendar View to Excel

    Hi,
    Is there a way to export the calendar view into Excel. The display should look exactly like the calendar view.
    Please help

    if you want look exactly same, you can connect sharepoint to outlook
    here and export it to excel
    here
    or you can do it programmatically using java, this is the example
    http://geekswithblogs.net/djacobus/archive/2013/11/22/154708.aspx
    http://geekswithblogs.net/djacobus/archive/2013/11/20/154674.aspx

  • Excel export are merging cells for data on multiple lines !

    Hello,
    I'm using Crystal Report XI R2, when we are doing an export to Excel with have an unexpected formatting.
    For example the value of the name is on 2 lines:
    => So, on Excel the result is on 2 lines but merged. We want to have this result only on one cells.
    Remark: if we delete the 2nd lines, because cells are merged we obtain the expected result.
    Proposal A:
    Are they any set-up available concerning the formatting of Excel ?
    Proposal B:
    Could we run some VBA when we click on Export button to make queries on the Excel ?

    When they introduced Unicode support in Crystal 9 (I believe), they had to completely re-write the export routines. At that time, they made a decision to change the functionality of the excel export. Crystal is attempting to remain absolutely faithful to the graphical layout of the report as you see it in the viewer. So it creates merged cell sections, empty columns between columns, and empty rows to give you as close to exactly what you see in the viewer as possible. Unfortunately, the result is typically less than useful. Iu2019ve had several conversations with Business Objects (now SAP) with regards to this when they changed it between versions 8.5 and 10, and they have no intention of changing the functionality as it now exists.
    There is a document which is now likely somewhere on the SAP portal that explains what you need to do to obtain the best results when exporting to excel.
    The jist of it is this:
    Line up all of the columns detail data with thier headers, and make sure that data fields are the same size as thier headers. 
    Line up all rows (headers and detail rows). (ie: select everything in the row, right click, align tops, and make the same height)
    cram everything as close together as possible. zero space in the report translates to zero extra collumns and rows in the export.
    the other option is to use the export to data only functionality, but that may not be what you're looking for either.

  • How to freeze the columns in excel exported from SSRS report??

    We have created a report for our client. The client wants the report in excel format. As there are nearly about 30,000 rows in the excel. Client wants us to freeze the column header names in the excel so that even after scrolling down they
    will be able to see the column names.
    can anybody have idea how to achieve this in SSRS?

    Hi Shard,
    Thanks for your post, You can achive your requiremets by using the below logic. hope this will help you.
    Steps to achieve it
    1. Select the tabix and click on Tablix properties.
    2. In the General tab under Column Headers section you can see "Keep header visible while scrolling" checkbox, check it.
    3. Now the header row will be remain fixed in the report.
    OR
    1.    In the grouping pane, make sure to turn on advanced mode (click on the small black down arrow on the far right of the grouping pane) 
    2.  Select the corresponding (Static) item in the row group hierarchy
    3.  In the properties grid, set RepeatOnNewPage to true
    4. KeepwithGroup to After
    OR
    1)Freeze the header of all columns[ Freezing table header ] : To do select static member of table header row from  row groups [ Advanced Mode ] and set  FixedData to true
    2) Freeze the initial 2 columns : To do select static member of columns in column group and set fixedData to true .
    How do you freeze the tablix header row in an Excel export file in SSRS 2008
    Suhas Kudekar
    Mark as Answer if this resolves your problem or "Vote as Helpful" if you find it helpful.
    My Blog
    Follow @SuhasKudekar

  • Add columns to EXCEL exported from ALV

    Hi,
    I'm using the function module REUSE_ALV_GRID_DISPLAY, to display an ALV report. This report shows a standard text when users click on one column.
    I wanna know if its possible to add the standard text as a column into the EXCEL exported from this ALV? and if so, how can I do it?
    Regards.
    Gregory.

    Thanks again Raymond,
    With internal tables that have a type from ABAP dictionary works fine. My problem is that my internal table is declared into my program's global variables. My code bellow:
    DATA: BEGIN OF it_excel OCCURS 0,
             department  TYPE adcp-department,
             bname       TYPE usr02-bname,
             name_text   TYPE adrp-name_text,
             agr_name    TYPE agr_users-agr_name,
             text        TYPE agr_texts-text,
             from_dat    TYPE agr_users-from_dat,
             to_dat      TYPE agr_users-to_dat,
             tcode       TYPE agr_tcodes-tcode,
             ttext       TYPE tstct-ttext,
             tdesc       TYPE string,
          END OF it_excel.
    * fills the it_excel table
    perform fill_excel_data.
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        EXPORTING
          window_title         = 'File location'
          file_filter          = cl_gui_frontend_services=>filetype_excel
          prompt_on_overwrite  = 'X'
        CHANGING
          filename             = v_file
          path                 = v_path
          fullpath             = v_fpath
          user_action          = v_useraction
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      CHECK sy-subrc EQ 0 AND v_useraction EQ 0.
      CREATE OBJECT v_excel 'EXCEL.APPLICATION'.
      SET PROPERTY OF v_excel 'VISIBLE' = 0.
      CALL METHOD OF v_excel 'WORKBOOKS' = v_workbooks.
      CALL METHOD OF v_workbooks 'ADD'.
      SET PROPERTY OF v_excel 'SHEETSINNEWWORKBOOK' = 1.
      CALL METHOD OF v_excel 'Worksheets' = v_sheet
        EXPORTING #1 = 1.
      CALL METHOD OF v_sheet 'Activate'.
      CLEAR v_subrc.
      CALL METHOD cl_gui_frontend_services=>clipboard_export
        IMPORTING
          data                 = it_excel[]
        CHANGING
          rc                   = v_subrc
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      CHECK v_subrc EQ 0.
      GET PROPERTY OF v_excel 'ACTIVESHEET' = v_sheet.
      CALL METHOD OF v_sheet 'PASTE' NO FLUSH.
      CALL METHOD OF v_sheet 'SAVEAS'
        EXPORTING #1 = v_fpath #2 = 1.
    When calling cl_gui_frontend_services=>clipboard_export method the variable v_subrc is equal to 0 and sy-subrc is equal to 1 and the EXCEL file is not saved.
    Can you please tell me, what am I doing wrong?
    Regards,
    Gregory
    Edited by: Gregory Mayorga on Sep 7, 2010 10:56 AM

  • ALV to Excel export - rowmarks not considered any more?

    Dear experts,
    as you know there are at least 3 different ways to export ALV-Data to MS EXCEL:
    1. Switching the ALV View to Excel Inplace
    2. Export to Excel
    3. Export to local file -> Excel (just download, no automatic opening of the file)
    The last mentioned variant was up to now the only one that just downloaded the rows that were marked in the ALV.
    The first two variants always transfer all the lines regardless which rows have been marked or not.
    This was not only the case for the ALs in our own programs but also in standard programs as i.e. SE16/data browser.
    This seems to have changed now, and nobody (here) knows due to what kind of changes this had happened.
    Now the variant 3 also doesn't care any more about the row marks.
    Unfortunetaly our customers want to be able to specify the lines/rows that are supposed to be exported to Excel.
    Does anybody know what to do in order to get that functionality back again?
    Thanks in advance
    Andreas

    Why not simply add an event with a button that does a selected row download...you could get the rows selected into your rows table in your event, get the corresponding rows from your internal table that drives the ALV output, put them into a download table (after a clear, in case it aready had been used by this user/session), and proceed to download that to the desktop.
    Edited by: DaveL on Aug 29, 2011 1:43 PM

  • Strange Disco 10 excel export issue

    Hi all,
    I have a report which returns 24141 rows.
    I can export to Excel ok in Discoverer 10 Desktop.
    However, a strange thing happens when trying to export in Plus / Viewer. The export seems to go ok and an excel file is created in the location, eg my desktop.
    But then when I try and open the file from Excel I get an error message as below.
    "somefilename.xls cannot be accessed. The file may be read-only, or you may be trying to access a read-only location. Or, the server the document is stored on may not be responding."
    Any ideas? It appears the file is getting corrupted in some way via the export process from plus/viewer and this affects several users.
    rg

    Well, can you go into Discoverer Plus, do a very simple report, export to Excel, and get that to work? Or do you have the same problem even with a very simple, basic report? Maybe this is a Microsoft office problem/bug? I am able to export to Excel from my Discoverer Plus and open up the spreadsheet files just fine. I am thinking this is something that you want to log a service request with Oracle support about. Something somewhere is not right, whether in the Oracle code or in Microsoft code.
    John Dickey

  • How do you freeze the tablix header row in an Excel export file in SSRS 2008?

    So this is totally killing me.
    I've found out how to make a tablix header row repeat on each page of a PDF export file in SSRS 2008 (which I won't even get started on because all I can say is that 2005 is way better), but I cannot figure out how to make a simple header row of a tablix
    freeze in an Excel export file.  The tablix is right at the top of the body and spans the entire width of the design area.  How in the world do you get it to freeze in the Excel export file?

    Rashiki777,
    From your information, I get that you want to freeze the tablix header when view the report in Excel. Please follows
    these steps:
     Click
    the header row
    Click
    View menu on  top of the toolbar, then you will Freeze Panes
    Select one kind of Freeze based on your requirement.
    This link supplies the detailed steps
    http://inpics.net/tutorials/excel2007/vis5.html If you have any concern, please feel free to ask.
    Of course,
    you could utilize the list control to display a certain rows on one sheet, then every sheet in Excel will have one header, the steps are following:
    Drag a list into report body, right-click
    Details in Row Groups panel to select Group Properties….
    Click
    Add button, then type in expression =ceiling(RowNumber(nothing)/25)
    in the textbox Note: 25 is just 25 rows per page, you could reset this value based on your requirement.
    Drag the table control into this list control.
    If you want to display every page in every sheet, you could add a page break to the table control in the list.
    Best regards,
    Challen Fu

  • How to Avoid Empty Space in Excel Export , while using SubReport.

    We have a sceneraio where we have parent child relationship and we are using the SubReport Concept to map the child data by taking input parameter from Parent Report.
    The RPL/HTMl viewer , PDF works fine, but  when we export data into excel empty rows are comming.
    Could  you please suggest how can we avoid empty space in Excel Export.
    we have kept the cell (width and height ) same as SubReport Width and height.

    Hi SubhadipRoy,
    According to your description, did you use separate subreport to display the data rather than insert subreport in tablix?
    Based on my test, if we are use separate subreport to display the data in the report, when we export to Excel we will get an additional row. We can adjust the minimum gap between tablix and subreport to work around the issue. In SSRS 2012, if we paste tablix
    and subreport without empty space in report design, it will not display the additional row. You can try to put the tablix and subreport in a rectangle to resolve the issue. 
    Reference:
    http://stackoverflow.com/questions/20367960/remove-additional-column-from-exporting-to-excel-from-ssrs
    There is a screenshot for your reference:
    If the issue is persist, please elaborate the issue for further investigation.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Excel export error, in edit mode

    Hi,
    when I take an excel export of my web intelligence report in edit mode, there is  an error occurring (started after implementation of SSL) as it ws running fine earlier. And this problem is only IE specific. while if we take an excel export in view mode it works fine.
    ERROR:-
    Internet explorer can not download cdz servlet from (serverIP).
    Please suggest some solution.
    Thanks,
    Bhawna Gaur

    Hi,
    Try this option:
    1. Ensure there is no pop-up blocker option selected in IE to prevent file export.
    If the report contain hyperlinks, it is advisable to use the export feature in View mode.

  • I need to restrict users to submit data from Smart view or Excel Addin.

    Hi All,
    I need to restrict users to submit data from Smart view or Excel Addin.
    I cant provision them as read access because I want them to write from the Hyperion Planning Web Form.
    Any help on the same will be highily appriciated.

    John,
    Thanks for the reply . if i dont give them essbase write role user cant submit data through smartview or Excel addin. at the same users want to see adhoc reports making connection in smartview through planning, then users can send data.
    1. I want users to restrict export dataform to smartview, if they can export dataform to smartview it automatically makes connection using planning and users can pretty much change data.
    2. is there any way to restrict users making connection through planning in smartview.
    3. when users make smartview connection through essbase, the secuirty works fine and they cant change the data.
    Please let me know if you any solution ....
    advance thanks,
    NM

  • Excel Export - Numbers are displayed as text

    Hello,
    When the report is exported to excel from SAP LIst Viewer screen -
    List -> Export -> Spreadsheet ->All Available format --> In Office 2003 XML format.
    The report opens up in excel, the numbers (numerical values) are displayed as text. How can we change the system setting, so when the report is exported to excel, the numbers are not converted to text.
    I found SAP Note 1393974 - WD ABAP ALV: Excel export: Numbers are interpreted as text - which is related to WD setting.
    But it does not mention about the GUI ALV.
    Appreciate helpful replies.
    Thanks,
    Madhu

    Hi,
    Try this
    List->Export->Local file  and then select spreadsheet from the list.
    You will get the actual data in excel sheet.
    Regards,
    Aravind.

  • Excel export is not working

    Hi All,
    User is not able to do Excel export(say with PIVOT Table) wants formatted data, he was able to do so few days back (1week).
    I confirmed with him that his frontend patch level 22 (640)
    I suggested him reinstall frontend. But it did not work.
    As it is a monthend requirement, It become urgent issue.
    Those who are familiar issue, Respond to me ASAP
    Plz Plz suggest your views, in resolving this issue
    Thanks in Advance
    RK
    Message was edited by:
            Ramakrishna Velidandi

    Hi Ramakrishna,
    Can you have the user log into a different machine and see if a different installation of the GUI would work?
    Another solution would be to have the user export the list to a local file and then open it up directly in Excel. This won't work for pivot tables but would allow them to at least see the data and format as needed.
    Note that this also might be an issue with the Office installation. Does an error message appear in SAP or Excel? A few other things to check would be authorizations (both in SAP and the workstation), the event log, and a trace within SAPGUI (which would have to be turned on first).
    Hope this helps.
    J. Haynes
    Denver, CO

  • How to remove the tabs Export to Excel, Export as CSV in z0ADHOC web templa

    We have made a copy of 0ADHOC - standard web template  as Z0ADHOC.
    Now we would want to remove the tabs  Export to Excel, Export as CSV from thcopied Z0ADHOC.
    Can any one help out.
    Regards

    Devaraj,
    If you look at the Z0ADHOC through the WAD closely in the overview tab, you will find a web item called GR1Toolbar. This is in turn linked to another web template called 0ADHOC_TABLE. Click on GR1Toolbar and view its properties to see this detail. Now if you open the web template 0ADHOC_TABLE in the WAD, you will see soms text elements. The last two:[SAP_BW_TEXT_!IID_546],
    [SAP_BW_TEXT_!IID_549] are the ones for export to xl and CSV. Now to achieve this in your scenario, I think you will have to create another Z Template called Z0ADHOC_TABLE, remove these two text elements and then Link it to the template Z0ADHOC. Try this and let me know if it works.
    Cheers
    Anand

Maybe you are looking for

  • How to fix mms size restriction

    some of my incoming text messages say "media content was not included due to a picture resolution or message size restriction", how can i fix this?

  • Event date

    When importing or moving photos the event date and the photo date are the date of import, not the date taken.  I created a new library and imported a few photos; they had the correct date.  Now what do I do?

  • Which subtitle software for me?

    I need to get my video (Full HD when extracted from Blu Ray) separated from the Subtitles. And also need to have the possibility to edit the subtitles (font, color, size, shadow). Which software would you recommend for this manner? I need it to be a

  • Can I create a "UPSERT" Service which calls 2 services without using BPM ??

    Hi all, I'm on PI 7.10 and have the following problem. I want to Upsert (Update or Insert) an Account into a 3rd Party System. The third party system does not have one web service that does this, instead it has Update -> Will update an existing accou

  • XML as datasource in GUI components framework

    Hi all, I'm looking for a framework to use XML data as datasouce to GUI components like Swing ones. I've investigated SwingLabs but in it XML databinding namely is under process now. Can anyone suggest something on the subject? WBR, Max