ALV to EXCEL-2007 issue

We are in the midst of changing over from Excel 2003 to Excel 2007.
We are seeing an issue in Excel 2007 with the use of the Microsoft Excel View option from the ALV output.
When the Excel view comes up, the Send button is grayed out. The users have to save the file to their PC and then re-open it before they can e-mail it. The Send button works for those that are still using Excel 2003.
If they use List-Export-Spreadsheet-Table-Microsoft Excel the Send button is there, but not all of our ALV report have this as an option.
Are there any thoughts on how to activate the Send button when using the Microsoft Excel View?

Before contacting OSS, search for notes. there are a number related to Excel 2007.
Rob

Similar Messages

  • Excel 2007 issue

    I have imported a webi report into live office excel 2007.
    The report contains multiple charts in it. After importing to LO, i couldn't find the option LO>>properties.
    But, the same works fine in Excel 2003.

    Hi,
    Is your SAPGUI up to date (latest patch) ?
    Further more: check out notes 1067844 and  1147660 because there are some limitations.
    Regards,
    Bert

  • BPC Admin and Excel 2007 issues

    Having issues with excel when using BPC Admin. Excel keeps freezing up. It seems to happen on a team member's computer also. Any idea what might be causing it?

    Hi Krishna,
    This happens due to improper user access. You need to create the user profile again. And also you can check the following steps for the same:
    Enable OSoftAddIn from Excel Options :
    Open Excel Options
    Click Add-Ins
    Select Disabled Items in the Manage box and then click Go
    Select OSoftAddIn from the list and the click Enable
    Reconnect to BPC for Excel so changes could take effects
    If, when you re-open Excel, the add-in still shows as disabled, follow these steps first:
    Open Interenet Explorer, Click Tools>Internet Options, Advanced tab, Security
    Make sure the box for u201CDo not save encrypted pages to disku201D is checked. Apply changes.
    Hope this helps.
    Rgds,
    Poonam

  • Excel 2007 graph into Illustrator CS2

    I have discovered an issue with Illustrator CS2 and Excel 2007...when I try to edit a graph in Illustrator (either by cutting and pasting or printing to a pdf and opening in Illustrator), all of the graph lines are no longer lines. They are individual shapes with fills instead of strokes. Does anyone know of a way of fixing this? I edit graphs for a living and this is a tragic discovery! I had no problems with Excel 2003. Would this problem go away if I upgraded to CS3?

    Having the same problem with Illustrator CS3. All Excel 3D graph/chart are individual shapes. Looks horrible.
    Don't have Office 2003 installed. So sure if it only an Excel 2007 issue.
    No problem with Excel 2004 on the Mac.

  • Download data from ALV to excel issue

    Hi All,
    Could you please tell me if there has any restriction on ALV grid data download to excel? I've a report contains 68 columns and about 500 rows, I want to download the data using the standard menu list->export->save to local file. but after I download them, I found the first 65 columns display in one line and the rest columns display in next line, just like ALV do not allow too many characters in one row and have to switch to new line. I can hide some columns but it's very strange that even after i hide 3 columns to fit the 500 rows download, then if the rows increase, the same problem occurs.
    I searched the forum and in the thread Re: Export ALV in EXCEL Issue Mr. Suvajit provided a solution by using menu List->export->spreadsheet, it looks very good. But I still want to know how this happen and is there a standard way to download data with more than 65 columns to local file with extension .xls so that user can open it directly?
    PS: I'm using FM REUSE_ALV_GRID_DISPLAY and the SAP version is SAP ECC6 with kernal package SAPKB70103.
    Thank you very much.
    Best Regards,
    Jeff
    Edited by: Jeff_liu_2010 on Mar 10, 2011 7:21 AM

    Hi Jeff,
    Please check if following analysis is helpful to you.
    Analysis/Solution:
    When we export ALV data to excel worksheet, as sap notes say the maximum lenght allowed is 1023 charaters and the max no of columns supported is 90.
    (I never faced any issue related to no of columns as it worked fine for columns >90 too)
    Issue occured when row size of exported data gets more than 1023 character.
    Therefore the row data must not exceed 1023 character, otherwise column splits and moves to next row.
    One additional aspect generally missed is that:
    When data in any particular column changes it's length, alv header also changes its lengh (short text, medium text, long text; depending on the length of of the longest cell in the column)
    therefore even if you have total length of row less than 1023 character, there might be cases when your ALV header size exceeds this length.
    Reducing the header size (by forcing to use short text or specifying own header names) should resolve the issue.
    Regards,
    Parveen

  • Known issues for OBIEE Office Add in with Excel 2007?

    Hi,
    Does anybody know if there are issues for the office add-in with Office 2007?
    i'm playing around a little bit to see how it works, but it seems that Excel interferes with the layout.
    I do get different grafs and also i tried the tutorial with the excel template and my changes come only partly through.
    Thanks
    Sandra

    Hi Sandra,
    Were you able to use OBIEE Office Add in with Excel 2007? I am planning to look at this compatibility. I am looking here to seeif anyone found issues with this setup..
    Thanks,
    Bharat

  • ALV download to EXCEL -- probs with SAPGUI 6.40 and EXCEL 2007

    I have a method in an ALV grid which performs a dowload to excel
    Here's the method
    method download_to_excel.
    field-symbols:
           <fs0> type standard table,
           <fs1> type standard table.
        assign g_outtab1->* to <fs0>.
        assign g_fldcat1->* to <fs1>.
           call function  'LVC_TRANSFER_TO_KKBLO'
          exporting
            it_fieldcat_lvc   = <fs1>
        is_layout_lvc     = m_cl_variant->ms_layout
             is_tech_complete  = ' '
          importing
            es_layout_kkblo   = ls_layout
            et_fieldcat_kkblo = lt_fieldcat.
        loop at lt_fieldcat into lt_fieldcat_wa.
          clear lt_fieldcat_wa-tech_complete.
          if lt_fieldcat_wa-tabname is initial.
            lt_fieldcat_wa-tabname = '1'.
            modify lt_fieldcat from lt_fieldcat_wa.
          endif.
          l_tabname = lt_fieldcat_wa-tabname.
        endloop.
        call function 'ALV_XXL_CALL'
             exporting
                  i_tabname           = l_tabname
                  is_layout           = ls_layout
                  it_fieldcat         = lt_fieldcat
                  i_title             = sy-title
             tables
                  it_outtab           = <fs0>
             exceptions
                  fatal_error         = 1
                  no_display_possible = 2
                  others              = 3.
        if  sy-subrc <> 0.
          message id sy-msgid type 'S' number sy-msgno
                 with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.
    endmethod.
    Basically the method converts the GRID table I'm displaying into the format requred for FMOD ALV_XXL_CALL' -- the field catalog is slightly different but no big deal here.
    This works fine when downloading to  EXCEL 2003 but short dumps when trying to do the same thing for EXCEL 2007.
    Workstation is running Windows XP / SP2 build 2600 in both cases.
    Any fixes etc or should I stick with EXCEL 2003 until forced to upgrade.
    Cheers
    jimbo

    Hi all
    Seems the problem disappeared after applying the latest patch to SAP_GUI 6.40.
    I haven't tried SAP_GUI 7.0 yet.
    Thanks anyway
    Cheers
    jimbo

  • Excel 2007 to Acrobat 9 Pro cell fill / font issue

    When attempting to convert a workbook from Excel 2007 to a pdf using Acrobat 9 Pro, the cell font color prints slightly lighter than the cell fill color, even when the colors are the same - amber, green or red.  Never had an issue previously until now.  Not visible within the file, only when printing.  Any insight or suggestions are greatly appreciated! 

    Thanks for your reply Bill@VT.  I am converting using the Acrobat addin in Excel.  I read your e-mail and played with some of the Excel sheets.  The problem seems to arise when I am converting a landscape page that has been reduced to fit on one page whether by percentage or by fit to x pages by x pages.  I have tried various settings and in print preview they all look just fine but once I click the convert but the page size grows.  I am wondering if this is not an Acrobat problem but rather an Excel problem.

  • Excel 2007 csv file formatting issue

    Our users create .csv files for upload to SAP. Their habit is to include a number of blank lines in excel to make it more readable.
    In Excel 2003, blank lines were handled as, literally, blank lines, and opening in a text editor shows exactly that, a blank line (with a CR-LF character to terminate the row).
    In Excel 2007 however, the blank line consists of a number of commas equal to the no. of columns, followed by the CR-LF termination. Hope that makes sense.
    While the 2003-generated .CSVs are fine, the 2007 versions cause SAP to throw an exception  ("Session never created from RFBIBL00") and the upload fails. The question therefore is, has anyone ever come across anything similar, or is anyone aware of any remediation that might be possible? Haven't been able to find any documentation on this Excel 2003-2007 change sonot able to address the issue through Excel config.
    Thanks!
    Duncan

    Hello
    Please refer to the consulting note 76016 which will provide information on the performance of the standard program
    RFBIBL00.
    Regards.

  • Analyzer for Excel and Office 2007: Issue on Data Refresh and Parameters

    Hi all,
    for a customer BIP workshop I want to prepare a demo and experience a strange issue. Hope this is known and bugfix or workaround exists.
    Created a very simple demo report with two columns and a numeric parameter. Called Excel Analyzer, the document opens correctly in Excel, data are filtered properly using the parameters initial value. I always have to log in to BI Publisher Server first, when a new instance of Excel is opened.
    Then I choose 'Show parameters' from the BIP add-on menu. My parameter is shown with its correct inital value. But: After pressing 'Refresh Data' (regardless if parameter value has been changed or not), a VBA error message (Code 1004) occurs. Then the excel cursor remains hourglass and no BIP related function is available in this opened Excel instance anymore.
    And another thing: After choosing 'Show Parameters' there appears a new empty column under 'Report Parameters' and the first cells of the table data are overwritten with parameter values.
    Think, something goes wrong there with Excel 2007. Unfortunately I only can use this version.
    Thanks in advance for hints. If I cannot fix this until Friday, customer will probably not be exalted by BIP :( .
    Edited by: KaiMoeller on 10.08.2009 23:57 'typos'

    fschulze,
    I face the same issue in Excel 2003: Run-time error 91, Object variable or With block variable not set.
    This happens everytime when I try to refresh the data after I open a saved excel template. But the refresh works fine when the report is initially downloaded using the Analyzer for Excel button
    Have you found the workaround for this problem ?
    Thanks.

  • BO Excel 2007 Upgrade- Help ..Graph Issues

    Hi All,
    I am wanting to troubleshoot some formatting challenges we are having and would like to add Excel 2007 as a download format to see if it cures my issue. Can I request somewhere or can we upgrade to 2007?
    My challenge is that the chart formatting in BO is perfect but the excel file changes things like size, frequency of labels, etc. I am hoping because we dump in 2003 excel that somehow the compatibility is making those adjustments on its own. I can only test that theory if 2007 is available to BOu2026 make sense? Currently takes me about 25-30 minutes to adjust in excel where that could be a zero time. 
    Regards
    Sanjeev Gubyad

    After upgrading the SAP Business One to 2007B version, When I looked into the user tables and user defined fields, all nvarchar fields got changed to nvarchar(max) from nvarchar(n). Why did it change so? How should I proceed in this?
    System habit the nvarchar(max). Create keys (indexes cannot be defined over it).
    In CR your should cast the User Defined fields as nvarchar with limited length for grouppin , summarize and parameters
    (cast (U_TEXT as nvarchar(10)) as U_TEXT in your CR Query.
    Regards,
    János

  • Office 365 OneDrive issues in relation to Excel 2007

    Hi support
    I have a client with Office 365, where he uses OneDrive on a local PC with Office 2007.
    On this PC he can't open Excel files using the Windows Explorer where he navigates to the OneDrive-folder. It simply says:
    "Cannot open file" , and it is the samme error if he tries to copy the Excel file to his local desktop, or tries to open it as an attached file in a mail.
    The event-log does not show anything neither.
    However if he opens Excel 2007 on his PC, and opens the Excel document THROUGH the program, then he can open the file sucessfully. (There is also no problems with other files on OneDrive, like Word or PDF-files, only Excel files that are causing the error)
    Other users can open the exact same files with no problems using an Excel 2013 on their local PCs.
    We have tried to run a repair of the Office 2007 and OneDrive, but it didn't solve the problem.
    I hope you can help
    Best regards
    John B.

    Hi,
    Does the issue occur if the Excel file is in your other folders apart from the OneDrive folder? If yes, let's try the steps below in Excel 2007 to fix the issue:
    1. Click the Microsoft Office Button, and then click
    Excel Options.
    2. Click Advanced, and then clear the Ignore other applications that use Dynamic Data Exchange (DDE) check box in the
    General area.
    3. Click OK.
    For more information, you can refer to this kb below:
    http://support.microsoft.com/kb/211494
    I hope the information is helpful.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Issue with excel 2007(not supporting 10lakhs records)

    Hi Gurus,
    I have a small issue . As we know that Excel 2007 supports 10 lakhs records and 2003 supports 65000 records. So when  I am executing the query in Excel 2007 , getting only 65000 records after that it is not displaying any data. we are using  BW  3.5 version and SAP log on is 710.
    I have saved excel as a excel workbook it is showing 10 lakhs rows but data is not displaying. And I am thinking that we need to install support packages , so can any one suggest me that what version/type of support packages we need to go  or any one have faced this kind of issue before.
    Please post your valuable comments.
    Thanks,
    Kulkarni

    Hi,
    Even executing in WEB , while exporting it is showing only 65000 records in Excel 2007 supposed to show 10 lakhs records.
    Thanks,
    Srikar

  • BEXAnaylzer, Excel 2007 and Win 7 32 bit / 64 bit Issue

    Good Day,
    After install of the application, when running, Bexanaylzer.exe, open query, I receive a error message - "Encountered an Improper Argument".  I have Bex 7.0 installed. I used the following source files for install.
    Source install - gui720_0-10007878.exe
    Patch used - bi720sp01p_101-20006596.exe
    The Sap gui side works with no issues.  My only problem seems to be the BexAnalyzer.exe. It does launch excel with no issues and puts ribbon bar up.  Its upon selecting open query that I consistantly receive this error.  Event Viewer shows that excel open and closed normally, but no information about the improper argument is logged.  Process monitor shows a couple of buffer overflows, however I am not sure they are directly related to bex / excel 2007.
    I have run NwCheckWorkstation.exe to check front end, it returns with no errors detected.
    Has anyone encountered this issue with Win 7 installs? Theories and or resolutions would be appreciated.
    thanks
    -K

    Thanks for your answer. But I didn't undestand enough good. Can you explain it more?
    You say that you removed three BAK files.. From which directory?
    When I search for BAK files, I find them it the following directory:
    C:\Program Files (x86)\SAP\FrontEnd\SAPgui\wwi
    I removed 3 bak files :
    wwi.ini.bak, 
    wwi_all.lbl.bak, 
    wwi_user.lbl.bak.
    But it doesn't work.
    And can you tell why did you search *.exd files?
    When I search it, it find following files:
    C:\Users\coskun\AppData\Local\Temp\VBE\MSForms.exd
    C:\Users\coskun\AppData\Local\Temp\Excel8.0\MSForms.exd

  • Excel 2007 compatibility issues with Essbase 7.1.6

    Our company is rolling out Excel 2007 in January, and we are running Essbase 7.1.6 (Planning 4.0.5 front end). We have numerous Excel models and are using the Essbase Spreadsheet Toolkit software, which enables the Essbase menu commands to be executed with VBA code.
    What kind of issues can we expect to encounter? Is this an upgrade emergency?

    Yes, this version is supproted with Essbase 7.1.6 according to Oracle's Hyperion System 9.3.1 Release Compatibility
    for more details go through the following doc.
    http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/hsys9_install_start_here.pdf
    Regards,
    Manmohan

Maybe you are looking for

  • Want to reinstall software due to "Error 48: File or folder does not exist." but can't find discs !

    In 2010, I bought the student version of CS5 including Photostop, InDesign, Illustrator, and some other things. The package was $200 contingent on me being a design student and I was required to send them documentation and everything. Now, nearly 2.5

  • How to handle the more than once from the same jsp files

    Hi, i have a one jsp file with three buttons.each one having for different functionalities. like one for cancel, second for edit the values and third for save the values in databse. so i want to handle all these 3 buttons. how can test that which but

  • Insufficient System Resources when merging large files

    My client is running on Windows Server 2003, 64 bit. He has 30 gig of RAM and a large amount of file storage. The drives are NTFS. I have a program that produces a number of text files from different processes, and then merges them when done. After r

  • Oracle XE & Mandriva 2006

    Hello.. I tried to install Oracle XE in mandriva 2006 free x64 edition following the steps mentioned in the documentation (installing libaio, rpm -uvh etc with default settings 8080, 1521 start oracle at boot) The installation was successful so i tri

  • Need a PurchaseOrder SmartForm and SAPScript Report.

    Hi all:, I need a sample report for PO for SAPScript and Smartform, I am getting some problems, so I wanna to comapre these reports with my reports, can any one help me plzzzzzzzzzzz.