Excel option is displaying blank Excel in Report output

Hi All,
We have created the ALV report and everything is working fine except the Excel icon in the report output screen. When we are clicking on the excel icon it is displaying the blank excel. In our systems MS Office 2007 has been installed.
Is there any link between MS office version that has been installed in the system and the Excel Icon option in the report output screen.
Please provide me the solution. Thanks in advance.
Thanks & Regards,
Sreelatha Gullapalli.

Please try the following steps:
1. Click on Microsoft excel icon on the toolbar from ALV report.
2. Right click on the toolbar of the excel and select u2018Customize Quick Access Toolbaru2019.
3. Select Trust Centre -> Trust Centre Settings
4. Check u2018Trust access to the VBA project access modelu2019 checkbox in Macro Settings.
5. Save the settings and rerun the report.
You should now be able to see data in the excel if you click on the Microsoft Excel icon on the toolbar from the ALV report.
Regards,
Shayeree

Similar Messages

  • FM to display Selection screen on report output??

    Hi Experts,
    Is there an FM to display Selection screen on report output.
    Thanks In Advance.

    Hi Ashwin,
    Refer to below link
    http://help.sap.com/saphelp_nw04/helpdata/en/2a/755b94ca5911d299af5c9604c10e27/content.htm
    or
    The easiest way is to define your selection screen in the TOP include of your module pool.
    Then call the selection screen.
    Selection Screen
    selection-screen begin of screen 1010 as window title text-001.
    selection-screen begin of block b1 with frame title text-002.
    parameters: p_vornr type resb-vornr,
    p_refno(20) type c,
    p_plnid type zplcfg-plnid as listbox visible length 20,
    p_sorts type c as listbox visible length 20.
    selection-screen begin of line.
    selection-screen comment (20) text-004.
    selection-screen position 33.
    parameters: p_order as checkbox default 'X'.
    selection-screen end of line.
    selection-screen end of block b1.
    selection-screen end of screen 1010.
    Now call the selection screen.
    call selection-screen 1010.
    if sy-subrc = 0.
    perform get_production_orders.
    perform process_orders.
    endif.
    Thanks!!

  • Displaying radio button on report output

    hi folks,
             how to display radiobuttons on the report output.
           thanks,
           santosh.

    Declare parameter as RADIOBUTTON
    like
    Single radio button
    PARAMETER p_purch RADIOBUTTON.
    Two radio button with same group.
    PARAMETER p_sales RADIOBUTTON GROUP opt.
    PARAMETER p_purch RADIOBUTTON GROUP opt.
    Regards,
    Mahesh
    Edited by: Mahesh Guragol on Jan 23, 2008 4:12 PM

  • Display Icon in write report output

    Hi,
    How do I display/write an icon to the screen?
    Thanks,
    John

    Hi,
    If you are looking to in the report output?
    INCLUDE <list>.
    WRITE icon_green_light AS ICON.
    aRs

  • Displaying pages in classical report output

    Hi all,
    I am developing a report. In the report output I am displaying 4 lines. When I click on 1st line then list will display but on the second page after the intial output page and when I click on 2nd line then list will display on the third page after the second page.
    My requirement is when I click on each line it will display the related page.
    I can get the page and page line  by the syntax:
    read line 1 of page sy-index.
    But how to display this one.
    Suggest.
    Thanks
    Sanket sethi

    hiii
    for selecting lines like you gave in example..you can use
    AT LINE-SELECTION.
      CASE sy-lilli.
          WHEN '5'.
                 logic for display page 2nd.
        WHEN '6'.
                 logic for display page 3rd.
        WHEN '7'.
                 logic for display page 4th.  
    WHEN '8'.
                 logic for display page 5th.
      ENDCASE.
    regards
    twinkal

  • Excel Help Examples Displays Blank

    From what i can tell is that Excel help is using the Microsoft Excel Services REST api with javascript
    http://msdn.microsoft.com/en-us/library/office/hh315812(v=office.14).aspx
    We are having an issue where users cannot see any of the excel help examples IE: Sum example.
    Environment
    Windows 7 (64bit) + Office 2010 Standard (32bit) + Internet Explorer 8 (Both versions installed but assuming that the program is using 32bit API's).
    We have used an unrestricted proxy and this issue is still apparant.
    When we upgrade the Internet explorer to IE9 it seems to work, however i cannot find anywhere online from microsoft that this functionality is not supported in IE8.
    I have looked for the js files as described (Minified .js files for the JavaScript object model are installed
    in the %ProgramFiles%\Common Files\Microsoft Shared\web server extensions\14\TEMPLATE\LAYOUTS directory. The name of the file is EwaMoss.js.)  
    and i am unable to locate them on the local computer.
    Can anyone help please?

    as i said this is the excel help functions within microsoft office 2010
    here is the code.
    var fileToken = "SD7274120315C4F6FB!458/8247236622081652475/t=0&s=0&v=!ANm1tDqSNAE49SE";
                  // run the Excel load handler on page load
                  if (window.attachEvent)
                  window.attachEvent("onload", loadEwaOnPageLoad);
                  else
                  window.addEventListener("DOMContentLoaded", loadEwaOnPageLoad, false);
                  function loadEwaOnPageLoad()
                  // grab some references
                  var frame = document.getElementById('cntXLWA-2042510967');
                  var frameDoc = frame.contentWindow.document;
                  // set some style
                  frame.style.width = "100%";
                  frame.style.height = "346px";
                  frameDoc.body.setAttribute('style', 'margin:0; padding:0');
                  // create the div
                  var div = frameDoc.createElement('div');
                  div.setAttribute('style', 'height: 100%; width: 100%');
                  div.setAttribute('id', 'cntIFrameDiv');
                  frameDoc.body.appendChild(div);
                  // load the script element
                  var se = frameDoc.createElement('script');
                  se.setAttribute('type', 'text/javascript');
                  se.src = 'http://r.office.microsoft.com/r/rlidExcelWLJS?v=1&kip=1';
                  var callback = function() {
                  if (se.readyState) se.onreadystatechange = null;
                  else se.onload = se.onerror = null;
                  var props = {
                  uiOptions:
                  selectedCell: "'Sheet1'!A1"
                  interactivityOptions: { }
                  // grab the Ewa reference once the script is loaded…
                  window['Ewa']= frame.contentWindow ['Ewa'];
                  Ewa.EwaControl.loadEwaAsync(fileToken, 'cntIFrameDiv', props, onEwaLoaded);
                  if (se.readyState)
                  se.onreadystatechange = function() {
                  if (se.readyState === 'loaded' || se.readyState === 'complete')
                  callback();
                  else
                  se.onload = se.onerror = callback;
                  frameDoc.getElementsByTagName('head')[0].appendChild(se);
    Even in the code it indicates that it uses this API.
     * This code uses the Microsoft Office Excel Javascript object model to programmatically insert the
                  * Excel Web App into a div with id=myExcelDiv. The full API is documented at
                  * http://msdn.microsoft.com/en-us/library/hh315812.aspx. There you can find out how to programmatically get
                  * values from your Excel file and how to use the rest of the object model.
    Can anyone confirm what pre-requesits this code requires on the users end ?

  • Reports 6i keeps displaying old version of report output

    Hi
    I am using Forms and Reports 6i. Using web.show_document to diaplay the report.
    Each time I run the report from the form it keeps displaying the same old information and the date on the report is always 20 Sep 2007. I have changed columns on the report, but the report still shows a report run on 20 Sep 2007 with the original columns.
    However, I have run the same application from a different PC with the same log in id and password and the report works fine. Is there something like logs etc on my pc that needs to be cleared?
    Thanks

    I have noticed that when I run the report and the old version displays, I then go to Internet Explorer, click on Tools, then Internet Options and Delete Files, and run the report again, then the latest version displays.
    Any help?????

  • How to display icon in alv report output

    hi,
    my ewquirement in in alv report in one column to diaplay the icon(tickmark) based on some codition.
    how to achieve it??
    condition is
    Affected (Locked on Current ECM) u2013 can use symbols    for affected and   for changing u2013
    u2022     Lock AEOI u2013 CCLCK for AE01-OBJKT (Material) lock.
    Condition:
      If AEOI u2013 CCLCK is activated then display symbols  (tickmark)  in line of their AE01-OBJKT (Material). else display
    (x mark)

    Hi,
    In field catalog of grid set
    Ex--
    when 'Field'.
      lwa_fcat-icon      = c_true.
    based on your condition
    set the desired icon in table.
    Ex.... lwa_table-field = icon_tick.

  • Blank page in report o/p and o/p notprinted when contains multiple pages

    Dear Friends,
    I am facing couple of issues while modifying an existing report
    1. First page of the report is Blank
    2. Report output is not printed when the output contains multiple pages.
    Currently, along with the data, the report prints the output format in the first page and some totals in the last page.
    The requirement is that we do not want these first and last pages.
    For this, i made the following modifications to the report.
    In the Layout Model,
    *1. Under the body of Header section, we have a repeating frame which is printing the output format that comes out as report first page.*
    Both Horizontal and Vertical Elasticity are set to Fixed and below is the code in the format trigger on this repeating frame.
    function R_HEADER_PAGESFormatTrigger return boolean is
    begin
    if :p_header_pages = 0
    then return(false);
    else return(true);
    end if;  return (TRUE);
    end;I modified this format trigger to always return false as shown below
    begin
    return false; --statement added by me
    if :p_header_pages = 0
    then return(false);
    else return(true);
    end if;  return (TRUE);
    end;*2. Under the Body of Trailer section, we have a main frame which prints summary information.*
    Both Horizontal and Vertical Elasticity are set to Fixed and below is the contents of the Format trigger on this frame
    function M_CONTROL_GRPFRFormatTrigger return boolean is
    begin
    if :report_term_count > 0
    then return(true);
    else return(false);
    end if;  return (TRUE);
    end; I have modified this trigger to always return False as shown below
    function M_CONTROL_GRPFRFormatTrigger return boolean is
    begin
    return false; --statement added by me
    if :report_term_count > 0
    then return(true);
    else return(false);
    end if;  return (TRUE);
    end;When i run the report after doing these modifications, i am facing the above mentioned problems.
    Any idea on why a blank page is coming out before the actual data?
    Also when the report output contains multiple pages, the output is not printed. Any idea on this?
    Regards,
    Sreekanth
    Edited by: Sreekanth Munagala on Mar 23, 2012 1:15 AM
    Edited by: Sreekanth Munagala on Mar 23, 2012 1:18 AM

    Hi InoL,
    I have tried by setting vertical elasticity to variable but the blank plage is still coming in the output.
    Also, i am just wondering that blank page is not shown for the trailer page even though the Horizontal and Vertical Elasticty is set to Fixed.
    Could you please let me know if you have any idea on this?
    +InoL Wrote:+
    +And this didn't happen before you made the changes to the format triggers?+ Sorry for not mentioning that this happens when i delete the entire fields and frames in Header section.
    Setting the Vertical Elasticy of Header to False and returning false in Format trigger still prints the blank page in addition to the actual data pages.
    I have also tried setting the option BLANKPAGES=NO in the concurrent program execution options but still the blank page is not suppressed.
    Regards,
    Sreekanth
    Edited by: Sreekanth Munagala on Mar 25, 2012 8:33 PM

  • Displaying serial number in the report output

    Hi everyone
    may i know hw can we display serial number inthe report output.

    hi,
    Assuming that you wanted to print the entries of internal table record by record ... do this way ...
    loop at itab.
    write : sy-tabix.  " Record Position
    endloop.
    Regards,
    Santosh

  • Urgent: Reports Output File location on 9iAS -Repost:

    Hi,
    Reference my earlier posts last one appended below:
    1- Jun 12, 2006 6:39 AM
    2- Jun 13, 2006 10:08 PM
    Please help me my manager is now getting upset. Or at least point me to the list of documents that I should study to sort this problem out.
    Thanks
    ---------------------------------------------------------------------------------------------------<Hi,
    I need your help in producing report output to OS file and dowloading it on to client's machine. This is 9iAS and Reports 6i patch 15 on Windows 2000 server.
    Output as PDF is stored in ...\Server\Cache, but output as Delimited or DelimitedData is un-traceable on server.
    I have created a folder with changed rights to "Everyone" and directing output to the folder. The report server displays a message that report output has been created succefully, but the folder remains empty.
    Please help!
    TIA!

    Hi,
    did you chaeck with customer support (metalink.oracle.com) in case you are hitting a bug ?
    Frank

  • Long text in report output

    Hi all,
    I want to display long text in report output how is it possible.
    how can i get the long text for fb60 or fb70.
    Edited by: D Tarun Kumar on Aug 23, 2008 11:26 AM

    How can i get these
        ID                            =
        LANGUAGE                      =
        NAME                          =
        OBJECT                        =
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
      TABLES
        LINES                         =
    Thanks

  • Excel 2002 displays blank sheet when open a report in R/3

    Hi,
    I am having a problem in the SAP R/3 and office 2002 integration . When i open a report in R/3 and try to display the report using excel view ( Environment -> Options -> select Microsoft Excel for Office integration.). I get a blank excel sheet. I've run  the provided sap/ office  integration tool test and there was no error , and set the macro security in excel but nothing seem to be working.
    I am runing SAP R/3 4.6C, SAP GUI 640 patch 23, and excel 2002 SP3
    any input on this iuuse .
    Regards,
    fahad

    What you could try is downloading the report to the client pc using WEBUTIL_FILETRANSFER.URL_TO_CLIENT, then open the locally save file using something like:
    CLIENT_HOST('cmd /c rundll32.exe url.dll,FileProtocolHandler "localfilename"');

  • MS Excel Option in Custom Report of MM

    Hi Sap Gurus,
    We build a custom report of MM where in If I click on the Icon of Xl File in the report it is taking me xl file (MS Office Tool) & not displayed the data on the xl file of SAP ALV data,
    Anyone have an idea what settings we need to make on MS EXCEL application to display on the sap screen?
    Seeking your expert advice.
    Regards
    TG

    Hi thanks to Every one for keen observations on the issue, But My concern is to trigger the data on the Xl file in SAP Screen itslef, that is possible in SAP only; the option we need to have is from MS excel application some settings needs revisit. The thing u mention in the thread is good which i tried works fine as an export option.As an example u can try with sample t codes of SAP
    Like:-
    S_HRJ_73000013
    S_HRJ_73000014
    S_HRJ_73000019
    S_HRM_42000003
    S_HRM_42000004
    S_HRM_42000005
    S_HRM_42000006
    S_HRM_42000007
    S_HRM_42000008
    S_HRM_42000009
    S_HRM_42000010
    S_HRM_42000011
    S_HRM_42000012
    & Click on the icon of  Xwithpage or CtrlShiftF7
    Regards
    Tg

  • Xml report output in excel format without using options tab in EBS

    How to get xml publisher report output in excel format without using options tab in EBS?
    I am getting XML Publisher report output in excel format by using options tab while submitting the concurrent request .
    But i want to get excel output automatically.
    Can anyone give idea to get XML publisher Report output in excel without selecting options tab.
    Thanks in advance
    Sandeep V

    Hey Sandeep,
    I am working on a similar format for a report and if possible can you please give me some guidelines. I have initially created reports using XML Publisher, but for those , the output preview format was PDF. So, if I select the preview format as EXCEL will it give me output in Excel and for this to happen, how do I define the rtf template. I believe the working will be same as for PDF, create a rdf report, get output in XML and apply the template to get the data in Excel or there is something different to this.
    Thanks,
    Sunil

Maybe you are looking for

  • Help on calling a dynpage on click of a URL

    hi all, I have a iview of a jspdynpage and it contains a url link as below.. http://amsdc2-s-917.europe.shell.com/irj/servlet/prt/portal/prtroot/com.shell.ep.siep.sapportals.service.c000326_login_management_client.default?id=0&targeturl=http://sww-je

  • HT1386 Why do all my playlists disappear when I plug my iPod Touch Gen 5 into iTunes?

    When I plug my iPod touch gen 5 into my MacBook into iTunes (the latest version) using my included USB cord, it deletes all of my playlists on the iPod. Why is this and how can I make it stop?

  • How to map user-defined fields in XML communication on SRM site

    Hi All! We use the External sourcing scenario and we transfer requirements from ERP  in SRM through XI (PurchaseRequestERPSourcingRequest_In) We should transfer the user-defined fields, but we can not map it in SRM site. We have enhanced enterprise s

  • Problem with special characters: € among others

    Hi everyone, I am trying to update some special characters on my DB. But whenever i try to update i still get the same data, even though the YPDATE Clause says that the data has been correctly updated. For example, whenever I try to update and € sign

  • Problems with HTML in 11g

    Got 11g up and running without too much difficulty (Win2003) but I'm having trouble getting HTML content to render. For example, create a simple analysis, add a narrative view, check the "Contains HTML Markup" button, and put HTML in there, but it co