Difference between 'SAVE as local file' &'Spread sheet' button in ALV grid

Hi all,
If I try to download the ALV report using Spreadsheet button the downloaded format is correct and working fine. But if i use save as local file button and then choose spreadsheet option from that, it is generating an excel file with a difference format. The rows are getting truncated in middle and a single line record is coming in 2 lines (rows). Anyone knws how to rectify this?

In your REUSE_ALV_GRID_DISPLAY 
EXPORTING
      I_SAVE                  = 'U'
put this field....and then check it will definitely work...

Similar Messages

  • Save as local file?

    Hi Experts,
    I have couple of questions about data validation that are listed below:
    1. When I tried to save a local file (spread sheet) from SE16, it is not coping all the data to spread sheet because I think excel have a limit for number of records. So to overcome this I have to break it in to two different excel spread sheets. Do you have any better idea about this task?
    2. I have to compare or validate a field product caterogy in CRM and BW for very large no. of records. How to do it in excel or access? I don't know excel or acees, so please provide me step by step instructions.
    Thanks in advance
    Sharat.

    1. Why not save the file as text file? I think it will solve your problem.
    2. There are some text editor say Textpad, eXmac(i believe, make a search in google) etc, some are free. Using text editor, you can compare big files line by line.
    Hope it helps..

  • Authorization to save as local file

    Hi,
    I got error while saving screen output by menu
    System -> list -> save -> Local file -> Spread sheet
    The error code was
    "You are not authorized to save lists in local files(SY-SUBRC 12)
    Please let me know,which auth is needed for the same?
    Thanks,
    Sam

    Hi Sam,
      Please run su53 transaction to know what authorization objects you need to assign to the stated user id.
      If it helped you please assign points and close the thread.
    Raman

  • ALV truncation while download using  List--Save/send--File--Spread sheet

    Experts,
    In ALV output, I am trying to download using menu item
    "List --> Save/send  --> File --> Spread sheet" then in the popup appears
    here if i GIVE the FILE NAME THEN,material number is getting truncated.
    If I don't give any file name it is storing as ".xls" and not getting truncated.
    How to correct this or avoid this truncation.
    OR
    If we can't do correction about truncation ...my function consultant is asking to
    to disable "List --> Save/send  --> File".
    Thanks in advance.
    Sam

    Solved by my own....
    We need to pass
    i_fieldcat-no_zero = 'X'.
    so that the zeros at the end  won't get truncated.

  • What Is The Difference Between Save As Self-Contained Movie and Exporting

    What Is The Difference Between Save As Self-Contained Movie and Exporting a Video as a Quicktime File

    Save As places the file inside a .mov container. No re-encoding.
    Your still have the option to save this file as "self-contained" (all the parts travel with the file) or "reference" (small file sized movie that merely "points" to the movie parts).
    A reference movie can't play if the source files can't be found. If they are moved or deleted the reference movie will fail and it can't be re-created.
    Exporting is done to convert one QuickTime format to another. Typically you do this with a high quality source file. Exporting previously compressed files is a bad idea that leads to unpredictable results.
    QuickTime doesn't open WMP formats without third party software help (Flip4Mac is one). You can't convert (export) WMP formats without paying extra fees to upgrade their software.

  • Error in clicking save to local file button in alv grid?

    Hi
    I am getting error , While clicking on some buttons like save as local file button in alv grid display
    How to rectify it
    Thanks in advance

    In your REUSE_ALV_GRID_DISPLAY 
    EXPORTING
          I_SAVE                  = 'U'
    put this field....and then check it will definitely work...

  • Error in clicking save to local file button in alv grid? urgent

    >>>>>       if lr_tabledescr->applies_to_data( <coltab_any> ) eq 'X'. 
    exactly i am getting error here
    how to rectify this error
    Error in clicking save to local file button and mail receipt button in alv grid?

    In your REUSE_ALV_GRID_DISPLAY 
    EXPORTING
          I_SAVE                  = 'U'
    put this field....and then check it will definitely work...

  • RFBELJ00 save as local file?

    Hello everybody,
    our customer needs to run the report RFBELJ00 in a background job and wants to save the selected data in a local text file (because of certified accountant). Is there a possibility to do so? or maybe another report who delivers the same result and can save it in an local file instead of printing it?
    I tried to save the data in a pdf.-file. This is not exactly what the customer wants but it didn't work too.

    Hi,
    Yes you can do it.  Execute the report in the background.  Once the execution is complete.  Go into SM37 and execute.  Select the completed job and click on Spool button.  Select the spool and click on display button, the report output will be displayed.
    Now click from the menu follow either of the two paths:
    1.  Spool Request -> Forward -> Save to local file.
    2.  System -> List -> save -> Local file
    In the ensuing pop-up, select Unconverted and save it as a text file to your desktop.  You can also select spreadsheet and save as a csv text file.
    cheers.

  • Save as local file path is greyed out for certain t.codes

    Hi All,
    After the ECC upgrdation, Save as local file path is greyed out for certain t.codes, while for other excel file export is not automatic.
    ES. for MB51 Transaction, when I try
    Path to save as local file is " System>LIST>Save---> Local file and I choose format Spreadsheet it appears format file txt, while with old release was XLS.
    Thanks

    I would like to known if the Additional Data button in MM02 should be custom. Us not possible to use standard?.
    Suggest to open a new thread for your query related to MM02
    Regards,
    Nick Loy

  • Save to local file.

    Hi friends, I am experience an interesting things, I had nvere seen, i might be wrong, but would like to share and get your expert comments on this.
    try this code and once we save using local file, figure with in braces() is shown as negative.
    data : dmbe1(15) type c.
    parameter : dmbe2 like bseg-dmbe2.
    write :/ 'Dmbe2 original',15 dmbe2.
    dmbe2 = dmbe2 * -1.
    write :/ 'After * -1',15 dmbe2.
    dmbe2 = dmbe2 * -1.
    write :/ 'Before FM',15 dmbe2.
    CALL FUNCTION 'HRCM_AMOUNT_TO_STRING_CONVERT'
      EXPORTING
        BETRG                         = dmbe2
      WAERS                         = ' '
        NEW_DECIMAL_SEPARATOR         = '.'
        NEW_THOUSANDS_SEPARATOR       = ','
      IMPORTING
        STRING                        = dmbe1  .
    condense dmbe1.
    concatenate '(' dmbe1 ')' into dmbe1.
    write :/'dmbe1 ', 15 dmbe1 right-justified.
    On screen it shows perfect but once we download using Save to local file in XLS format,  DMBE1 is shows as -ve values but in real it is +ve value.
    Any guess why this is happening.
    Thanks

    Hi Lakhbhir,
    Please remove the '(' and ')'.
    Remove here ---concatenate '(' dmbe1 ')' into dmbe1.
    Ohh. Rich is too fast.
    Lanka
    Message was edited by: Lanka Murthy

  • List save as local file is greyed out

    Hi All,
    After the ECC upgrdation, Save as local file path is greyed out for certain t.codes like mmbe, mm60 etc ALV reports
    whereas it is okay with mb52, mm5b (normal report)
    Path to save as local file is  " System>LIST>Save---> Local file, office folders, report tree is greyed out
    Is this standard behaviour or a bug?
    Raj
    Edited by: Raj on Jul 9, 2010 2:27 PM

    You have Export option for MM60 report in ECC 6.0 in Menu List-Export-Local file and check.
    And for MMBe you will have to do some work to get this option. Go to MMBE and execute and in output screen there is a Print icon click beside this icon and you will get options call print preview of view click on it and it will show print preview from here you can go to list-save-local file
    Just check it once

  • ECL Viewer - Save to local file option grey out

    Hello Experts,
    We have ECL viewer installed version 5.1.3 with SAP GUI 710 - 7100.2.7.1038.
    But, option under viewer --> save to local file  is grey out, how to enble this option.
    Thanks,
    Sam

    Hi all,
    in case the ECL Viewer is used in the ArchiveLink or GOS area the 'Save to local file' is not available.
    Basically it is possible to save the displayed document via the
    ECL Viewer menu in a local file. In DMS the users can go via the
    ECL Viewer menu 'Viewer -> Save to Local File' and create a local
    copy on this PC.
    This functionality, however, is not possible if the file is stored
    using the ArchiveLink. This is a restriction from the ArchiveLink
    application.
    If you are willing to do a modification just change the following
    coding within the constructor of class CL_DV_VIEWER_CONTROL_ECL.
    call method ecl_viewer->create_toolbar
          EXPORTING
      *     CLOSE_BUTTON      =
            TOOLS             = 'X'
            VIEWER            = 'X'
            NAVIGATION        = 'X'
            OPTIONS           = 'X'
            VIEWER_OPENFILE   = ' '
    *       VIEWER_SAVEFILE   = ' '         "<   delete
            VIEWER_SAVEFILE   = 'X'         "<   insert
            TOOL_MEASUREMENT  = ' '
            REMOVE_DOCUMENT   = ' '
            VIEWER_CLOSEFILE  = ' '
            TOOL_COMPARE      = 'X'
            TOOL_STAMP        = ' '
    If you are not willing to do a modification, it is even possible
    to make a copy of the whole class, change the coding within the
    copy, and make use of the copy by adding the according entries
    in table SDV_VCL_MIME_C (see SAP note 726158).
    For further question on this scenario I would kindly ask you to contact
    your local consulting organisation because in the standard this
    'Save as local file' is not available for ArchiveLink files.
    Best regards,
    Christoph

  • Difference between save and publish on project professional 2013

    Dear Barbara
    What's difference between save and/or publish tasks from project professional 2013 onto project server 2013 integrated with TFS?
    For me its the same, if you exclude the integration with TFS in this scenario, that demands publishing, the tasks will be saved in project server anyway.
    Its that right? Thank you.
    Adauto

    hi Adauto,
    As a project owner when you create project plan from PWA or from Project Professional Once you save it means it will go to draft database and will be available to you in the server but you can not see it onto Project center.
    Once you Click on Publish then  project get publish and sits in publish database at the same time it will sync reporting database too. Once project get Publish then only all the team member who are associated with project will be able to see the project
    in project center including you .
    Also Users who are having either same RBS assigned to them or heigher to you will be able to see the project onto the project center.
    Also All the resource will get notified and task assignment will be assigned to team members.
    This is a same case for Project server with TFS integration and normal project server without TFS integration
    Main Usability of Save is :
    As a Project owner when you start Project scheduling you take time to finish it so everyday you can save it so that next day you can resume your work but in the middle of the scheduling work you wont want to show the data to your organization until- unless
    you give it final touch .Once you complete it then only publish it so that it would be available to team members.
    kirtesh
    kirtesh

  • Difference between save and/or publish tasks

    What's difference between save and/or publish tasks from project professional 2013 onto project server 2013 integrated with TFS?
    For me its the same, if you exclude the integration with TFS in this scenario, that demands publishing, the tasks will be saved in project server anyway.
    Its that right? Thank you.
    Adauto

    hi Adauto,
    As a project owner when you create project plan from PWA or from Project Professional Once you save it means it will go to draft database and will be available to you in the server but you can not see it onto Project center.
    Once you Click on Publish then  project get publish and sits in publish database at the same time it will sync reporting database too. Once project get Publish then only all the team member who are associated with project will be able to see the project
    in project center including you .
    Also Users who are having either same RBS assigned to them or heigher to you will be able to see the project onto the project center.
    Also All the resource will get notified and task assignment will be assigned to team members.
    This is a same case for Project server with TFS integration and for normal .
    Main Usability of Save is :
    As a Project owner when you start Project scheduling you take time to finish it so everyday you can save it so that next day you can resume your work but in the middle of the scheduling work you wont want to show the data to your organization until- unless
    you give it final touch .Once you complete it then only publish it so that it would be available to team members.
    kirtesh

  • What is the difference between save as: Page Source & Web Archive.

    Hello,
    what is the difference between save as: Page Source & Web Archive.
    I want to save web pages permanently regardless if the website itself remains permanent.
    What does a Page Source save and what does a Web Archive save.
    Which would be best for my intentions?
    Thanks.

    What does a Page Source save
    Only the HTML code of the page you're looking at.
    what does a Web Archive save.
    The HTML source plus all objects such as images the source references. You may want to use the print to PDF feature.
    (56401)

Maybe you are looking for