Option to stop Excel download from OLAP analysis application

Hi Experts,
As a project requirement, we have to control (stop) Excel download from OLAP analysis application.  The PDF download however need to continue.
I don't find any option using the "Authorization Control" on BOE platform. Is there anyway, we can achieve this ?
Regards,

Ahh... sorry Anil... I wasn't clear in my response. When I said "Ironically, it’s one of the features where we get requests for new capabilities." what I meant was that customers want to export to Excel feature to have even more capabilities.
For example we added the option to have key and text values in separate columns, or to repeat the members names in stacked hierarchies. We also added supported for XLSX to overcome the 65535 row limit and changed the Export to Excel to use a streaming model so it is more efficient.
In short, no one else has asked for Excel to be disabled... hence why posting to Idea Place is good.
Kind Regards

Similar Messages

  • Excel download from ALV not working inproduction

    Hi all,
    I am using "set_table_for_first_display" for alv display. the excel download from alv is woking fine in development and quality stystem but in production only first 3-4 rows are getting downloaded. Other rows donot appear in excel.
    Any Idea !!!
    Thanks
    Madhu

    Hi Experts,
    I have noticed that same problem is occuring in development system also with same set of data . The ascii file created has some missing rows. I guess its due to some special characters though i am not able to see any special character . Any solution for this.
    Regs
    madhu

  • Is there a user exit for Excel download from Web Template?

    Hi,
    Is there a user exit for Excel download from Web Template?
    Thanks,
    Frank

    Hi,
    I need to do some data manipulation before export to Excel.  I could use Table Interface to manipulate the data before rendering to the Web.
    Regards,
    Frank

  • How to download from spool to application server

    Hi all,
       Can any one tell me how to download from spool to application server. Quick response would be appreciated.
    thanks
    mahesh

    Hi Kilaru,
    Please find the sample code for your req,t and let me know if you found any difficulty on the same.
    <b>Just copy paste the code :</b>
    This will Convert spool to PDF format and download.
    data: w_ident     like tsp01-rqident,
          w_doctype   like tsp01-rqdoctype,
          w_bytecount type i.
    data: itab_pdf    like tline occurs 0 with header line.
    parameter spoolnum like tsp01-rqident obligatory.
    selection-screen begin of block a2 with frame.
    parameters:  to_pc   radiobutton group a2 default 'X',
                 pcfile like rlgrap-filename lower case,
                 to_unix radiobutton group a2,
                 unixfile(255) lower case.
    selection-screen end of block a2.
    at selection-screen on block a2.
      if to_pc = 'X' and pcfile is initial.
        message e398(00) with 'Enter PC File Name.'.
      elseif to_unix = 'X' and unixfile is initial.
        message e398(00) with 'Enter Unix File Name.'.
      endif.
    at selection-screen on spoolnum.
      select single rqident rqdoctype
             into (w_ident, w_doctype)
             from tsp01
             where rqident = spoolnum.
      if sy-subrc ne 0.
        message e398(00) with 'Spool' spoolnum 'not found'.
      endif.
    at selection-screen on value-request for pcfile.
      call function 'WS_FILENAME_GET'
           exporting
                mask     = ',.,..'
           importing
                filename = pcfile
           exceptions
                others   = 1.
      if sy-subrc <> 0.
        message id sy-msgid type 'I' number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    start-of-selection.
      if w_doctype = 'LIST'.
        perform get_abap_spool_in_pdf.
      elseif w_doctype = 'OTF'.
        perform get_otf_spool_in_pdf.
      endif.
      if to_pc = 'X'.
        perform write_pdf_spool_to_pc.
      else.
        perform write_pdf_spool_to_unix.
      endif.
      message i398(00) with 'Completed OK'.
    form get_abap_spool_in_pdf.
      refresh itab_pdf.
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
           exporting
                src_spoolid              = w_ident
           importing
                pdf_bytecount            = w_bytecount
           tables
                pdf                      = itab_pdf
           exceptions
                err_no_abap_spooljob     = 1
                err_no_spooljob          = 2
                err_no_permission        = 3
                err_conv_not_possible    = 4
                err_bad_destdevice       = 5
                user_cancelled           = 6
                err_spoolerror           = 7
                err_temseerror           = 8
                err_btcjob_open_failed   = 9
                err_btcjob_submit_failed = 10
                err_btcjob_close_failed  = 11
                others                   = 12.
      if sy-subrc ne 0.
    message e398(00) with 'Cannot convert to PDF. Error =' sy-subrc.
      endif.
    endform.
    *********************************************************form get_otf_spool_in_pdf.
      refresh itab_pdf.
      call function 'CONVERT_OTFSPOOLJOB_2_PDF'
           exporting
                src_spoolid              = w_ident
           importing
                pdf_bytecount            = w_bytecount
           tables
                pdf                      = itab_pdf
           exceptions
                err_no_otf_spooljob      = 1
                err_no_spooljob          = 2
                err_no_permission        = 3
                err_conv_not_possible    = 4
                err_bad_dstdevice        = 5
                user_cancelled           = 6
                err_spoolerror           = 7
                err_temseerror           = 8
                err_btcjob_open_failed   = 9
                err_btcjob_submit_failed = 10
                err_btcjob_close_failed  = 11
                others                   = 12.
      if sy-subrc <> 0.
    message e398(00) with 'Cannot convert to PDF. Error =' sy-subrc.
      endif.
    endform.
    *********************************************************form write_pdf_spool_to_unix.
      open dataset unixfile for output in binary mode.
      if sy-subrc ne 0 .
        message e398(00) with 'Cannot open unix file for output:' unixfile.
      endif.
      loop at itab_pdf.
        transfer itab_pdf to unixfile.
        if sy-subrc ne 0 .
          message e398(00) with 'Cannot write to unix file:' unixfile.
        endif.
      endloop.
      close dataset unixfile.
    endform.
    *********************************************************form write_pdf_spool_to_pc.
      call function 'WS_DOWNLOAD'
           exporting
                bin_filesize            = w_bytecount
                filename                = pcfile
                filetype                = 'BIN'
           tables
                data_tab                = itab_pdf
           exceptions
                file_open_error         = 1
                file_write_error        = 2
                invalid_filesize        = 3
                invalid_type            = 4
                no_batch                = 5
                unknown_error           = 6
                invalid_table_width     = 7
                gui_refuse_filetransfer = 8
                customer_error          = 9
                others                  = 10.
      if sy-subrc <> 0.
    message e398(00) with 'Cannot download to PC. Error =' sy-subrc.
      endif.
    endform.
    Hope this will help you.
    Cheers
    Sunny
    Rewrd points, if found helpful

  • Stop music downloading from cloud

    How do I stop my iPhone from downloading tunes from the cloud when the tune comes up in shuffle (which it shouldn't if it's not on the device in the first place)
    It was recently restored and music I haven't sync'd back on the phone (mostly EP's I got from the 12 days of Christmas) keep downloading and playing as they come up on shuffle.
    I have iTunes Match turned off in Music and iTunes settings.
    I also have 'use mobile data' turned off in iTunes.
    It only does it when I am on a wireless network thank god, but I don't want these tunes in my playlist. Once they do download I then can't seem to delete them either.

    Hi,
    I've got the same issue, was anybody able to sort it?

  • Excel download from ALV grid, for characters more than 1020

    Hi,
    When i am trying to download the report which is having character more than 1020, it is coming in two rows. I want all fields in one row. Please give solutions.
    I am using below field catalog.
    Car Eligibility
      CLEAR lw_fieldcat.
      lw_fieldcat-fieldname = text-001.
      lw_fieldcat-reptext_ddic = text-011.
      lw_fieldcat-tabname = text-021
      APPEND lw_fieldcat TO gt_fieldcat.
    I am using below FM.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = sy-repid
          is_layout          = gt_layout
          it_fieldcat        = gt_fieldcat[]
          it_sort            = gt_sort[]
          it_events          = gt_events[]
        TABLES
          t_outtab           = gt_data
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
    Thanks in Advance,
    Ravi Kumar

    ravi,
    its not about how you have used your field catalog or how you called ALV FM. its excel download functionality,
    what you need to do is:
    set pf-status '<<some value>>' -> you can find where to pass in ALV FM call.
    then add a application toolbar button though this pf status.
    then at  use_command event, check sy-ucomm and if its the same as your new icons fcode then use the method to download it in excel.

  • Cannot save the Interactive form downloaded from abap webdynpro application

    Hello Everyone,
    Can anyone help me here.
    I have created an interactive form in SFP tcode and used in abap webdynpro application.
    scenario is i can downloade the form,fill it, sign it,save it and submit the form.
    Some thing is going wrong when i try to sign the form downloaded from the application.It is giving the error ->
    The document could not be saved. there was a problem in reading the document(26).
    When i try to sign the form save as dialog box will come where we can save the filled form.but here when itry to save it is giving above error.and also i cannot save thye form form file option.
    but form is working fine from sfp tcode not form application link.
    What is going wrong.Can somebody please help me here.
    Regards,
    Menaka.H.B

    Check the enabled and readOnly property of the InteractiveFormUI element in your application.
    enabled should be true and readOnly should be false.
    Also just FYI interactive forms are licensable in Productive environment for which you need Adobe Credentials. You may contact SAP Account Manager and Note 736902 for it.
    Chintan

  • Issue in Excel download from ALV output

    Dear Experts,
    I have generated an ALV Output using FM "REUSE_ALV_GRID_DISPLAY". When i try to download the ALV Output in Excel spreadsheet, I am not getting the data in Excel sheet. Kindly help me in this regard.
    Thanks in advance,
    Regards,
    Ramesh Manoharan

    hi ramesh,
    Please try below options.
    after getting the ALV disply , Go to Menu  LIST->Export->Spreadsheet.or microsoft excel view (Cntrl + Shift + F7)
    It will give some options to see the data in spread sheet format, hope you can save this to local desktop also.
    or
    please check the extension, it should be .XLS not .XLSX  .some times .XLSX format wont be supported
    regards,
    pradeep
    Edited by: Pradeep Kandgal on Aug 4, 2010 6:54 PM
    Edited by: Pradeep Kandgal on Aug 4, 2010 6:54 PM

  • Excel Download from Portal

    I have a requirement to download R/3 data to MS Excel from a portal page.  I have developed a JSPDynPage iView to allow various user parameters to be entered, and retrieve data from R/3 by executing a remote function module (using JCA).  I've reviewed most forum articles which describe downloading R/3 data to MS Excel and have concluded the following:
    1) Use POI or html tables to transfer data to Excel (I’m using html tables currently)
    2) Excel should be invoked from an AbstractPortalComponent rather than a JSPDynPage.
    3) Launch the AbstractPortalComponent from an event within the JSPDynPage (using EPCM.doNavigate or response.write("<script>window.open('" + url + "')</script>")
    My question is; how is the best way to transfer data between the JSPDynPage and AbstractPortalComponent?  I have tried passing an IRecordSet using the Session Context:
    JSPDynPage:
    IPortalComponentSession mySession = request.getComponentSession();
    mySession.putValue("personnelData", personnelData);
    AbstractPortalComponent:
    IPortalComponentSession mySession = request.getComponentSession();
    personnelData = (IRecordSet) mySession.getValue("personnelData");
    However,  when I try to access the IRecordSet and launch Excel from the AbstractPortalComponent, I receive what looks like a portal sign-on screen within the Excel document.  I have tried both IPortalComponentSession and HTTP Session to transfer the data.
    Any assistance will be greatly appreciated.
    Thanks.
    Mark

    Thanks for the quick response.  Dominik, yes, the AbstractPortalComponent gets called correctly, and excel gets launched correctly; and yes, I have access to the raw data, but in the JSPDynPage.  In the initial prototype, I simulated the values to pass to excel from within the AbstractPortalComponent, and it all worked.  Now I'm trying to pass live data between JSPDynPage and AbstractPortalComponent and I am having trouble accessing the data in the AbstractPortalComponent.
    I launch Excel as follows (which works fine):
    IPortalComponentSession mySession = request.getComponentSession();
    HttpServletResponse res = request.getServletRespons(true);
    try {
         res.setContentType("application/vnd.ms-excel");
         res.setHeader("Content-disposition","inline; filename=test.xls");
         OutputStream os = res.getOutputStream();
         String data = new String("<TABLE><TR><TD>2</TD><TD>9</TD></TR><TR><TD>3</TD><TD>22</TD></TR><TR><TD>=SUM(A1:A2)</TD></TR></TABLE>");
         ByteArrayOutputStream htmlout = new ByteArrayOutputStream();
         PrintStream ps = new PrintStream(htmlout);
            ps.println(data);
         OutputStream outputstream = res.getOutputStream();     
         htmlout.writeTo(outputstream);
         outputstream.flush();
         outputstream.close();
    I'll include more of the code in a follow-up post.
    Thanks.
    Mark

  • HT4539 How do you stop a download from downloading completely?

    I started downloading a movie to my Ipad Mini and realized it was going to take too long, so I wanted to stop it and remove it from being downloaded. How do I do that?

    Once an item enters the download queue, the user cannot remove it. Either let it complete the download (easiest) or contact the iTunes Store customer support department through the Contact page  and ask them if they'll remove the item(s) from your queue for you.
    Regards.

  • How can i stop others' downloads from automatically downloading onto my itunes?

    I share an Itunes account with my family, but we all have separate itunes on different laptops. Evertime anyone downloads a ton of apps or music I dont like, it automatically downloads onto my itunes the next time i open it up. Although i could just pause the downloads and delete them all, they all come back and start downloading again the next time i open up itunes. I only want my music and my apps, how can i stop this!?
    Thanks for any help!

    Turn off -> Automatic Downloads.

  • Regarding excel download from ALV report tree

    Hi Experts,
    I have a ALV report tree program. In that i need the functionality to download report output in excel file.
    Can any body suggest how can i achieve download to excel functionality in it.
    Any useful suggestion will be appreciated.
    Thanks in advance,
    Akash

    The data for the tree exist in the NODE table in a different format. So, even you download that table, it will not be downloaded in the TREE format. So, the user will not be able to understand the data unlike the case of a ALV GRID.
    Whether it is a TREE / GRID, ultimately its the data of a internal table, that gets downloaded. But in case a TREE, we don't have the data in a straight forward way . i thnk it is not possible . i am not sure too for this .

  • Excel download from ALV OOPS , columns rearranged

    Hi ,
      When I am downloading the data using the Export button - option Spreadsheet few of the columns are getting re-arranged. I am using OOPS ALV using Custom container.I even specified the column position in the field catalogue.
    Can anyone help me to have the columns in the same order as displayed in SAP.
    Many Thanks
    Supriya

    hi,
    for this problem u need to create a varient layout. here u customize the output.
    while seeing the output u can use this layout.
    hence your output will be similar as u seen in the system.
    try and let me know...
    pradeep.

  • Excel Download from Oracle Table

    Dear All,
    Can anyone suggest me how to download a excel file to my oracle directory using pl/sql code?
    I tried with utl_file using tab delimeter but the file got saved in text tab delimated file.
    Thanks in Advance.
    Cheers,
    San

    Your requirement is not clear to me, However this link may help you: SQL and PL/SQL FAQ

  • How to generate an excel spreadsheet from an Oracle Application forms runni

    I need URGENT generate an Excel spreadsheet with rows and columns populated from a forms that is running on Oracle Application R11.5 and open this worksheet for the User save.
    I want to include a PL*SQL code on a button and this button to run the spreadsheet open save for the User.
    Sorry my poor English, thanks for the comprehension

    909356 wrote:
    I need URGENT generate an Excel spreadsheet with rows and columns populated from a forms that is running on Oracle Application R11.5 and open this worksheet for the User save.
    I want to include a PL*SQL code on a button and this button to run the spreadsheet open save for the User. This functionality is already available in the application (File > Export) and you do not need to write a code to do that.
    How To Export Form Data To a CSV Format File [ID 779079.1]
    How To Setup Action Export Functionality in Release 11i [ID 136074.1]
    Thanks,
    Hussein

Maybe you are looking for