Format for excel cell after downloading .....

Hi all,
yet another frustrating thing with excel.. kindly shed some light on this ...
situation is : in one of our R/3 system i'm downloading the ALV report to excel  and one of the value fields are mis-aligned like few numbers are right-aligned and few others are left-aligned.... coincidentally all left-aligned numbers are < 1 (like 0.3 ....). user setting for point notation is 'DOT' for thousand separator.
In other R/3 system (our test server) this situation is not happening...all 'values' are fine i.e. right-aligned....
Should be to do some thing with system setting but not able to point out exactly.... spent lots of time in debugging standard xcel download thing...that's driving me crazy.....
kindly help me out....
Thanks in advance

Use file type as <b>DAT</b>
CALL FUNCTION 'WS_DOWNLOAD'
       EXPORTING
            filename                = v_fnam
            <b>filetype                = 'DAT'</b>
       IMPORTING
            filelength              = lv_size
       TABLES
            data_tab                = p_output
       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 ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.

Similar Messages

  • How to set exponential format for a cell?

    Hello! Can someone advise how to set exponential format for a cell in Numbers?

    Hi Alejandro,
    If you mean 1000 as 1E+03
    Format Panel > Cell > Data Format > Scientific
    Regards,
    Ian.

  • Why do I have two icons for iMovie '11 after downloading the update from the App Store?  Previously I had iMovie '09.

    Why do I have two icons for iMovie '11 after downloading the update from the App Store?  Previously I had iMovie '09.

    Do you see two versions of iMovie in your Application folder?
    You can drag the icons out of the dock and then drag what you want back to the dock from the Application folder.
    Matt

  • I can't download the apple ios 5 for the ipad. after downloading around 10 % an error no. 3259 occurs. it's a network error. please help . it's urgent. i am having apple ipad 2 3G wifi

    i can't download the apple ios 5 for the ipad. after downloading around 10 % an error no. 3259 occurs. it's a network error. please help . it's urgent. i am having apple ipad 2 3G wifi.

    i switched off all the security settings and all the firewalls.
    i m unable to install any of the app on the ipad
    so i saw the apple support and it said to update the older version of my ipad.
    and niether am i able to download the update nor am i able to download any app and install it in my ipad2
    i also tried to download an .ipsw file (ios5 update) from torrentz bt i am also unable to install from that as itunes rjects that file and gives an error. and also tries to delete that file. plz anyone help urgently.

  • TS2634 I forgot my passcode and have tried to restore, but it still asks for my passcode after downloading the software.

    I forgot my passcode and have tried to restore, but it still asks for my passcode after downloading the software.  What do I try now?

    iOS: Unable to update or restore

  • My iPhone is downloading an odd email here and there that doesn't appear on my iMac mail at work.Just read an email on my iPhone that I received at 6.00 this morning.checked my iPhone settings for mail,delete after download is off so not sure whats wrong

    My iPhone is downloading an odd email here and there that doesn't appear on my iMac mail at work.Just read an email on my iPhone that I received at 6.00 this morning.checked my iPhone settings for mail,delete after download is off so not sure whats wrong.Any help would be greatly appreciated.

    Can you do setup an unread mail folder that shows all unread mail regardless of what folder it really is in on the iPhone mail program somehow?
    No.
    If not, can this be submitted as an enhancement as it makes email use very cumbersome.
    Yes. You can submit feedback to Apple: http://www.apple.com/feedback/iphone.html.

  • Formatting of EXCEL Sheets during download

    Hi all,
    There is a requirement for Formatting EXCEL Sheets when downloaded into an FTP site in background.
    The internal table is saved in application server with .xls extension and transferred to FTP thru RFC.
    is there any way to format this EXCEL file and get it formatted in FTP when it is seen.
    The report will run in background daily and every day the report has to be in same format.
    Thanks in Advance..
    Vivek ..

    Hi
    You can not format EL file that is uploaded. You have to format the internal table before generation XL file from the internal table. Internal table should have all fields in char type. set char length for each field like
       data: begin of itab..
               field1(20) type c,
               field2(20) type c,
    Append header record if u want into this itab as first record.
    Append all records into this itab.
    Generate XL file from this itab.
    I suggest you that..
    Upload this itab in to application server as 'DAT' format then generate XL file from this file. Dont set .xls when you upload itab to appl. server.
    Bala
    Note: Award points if helpful

  • Border for Excel Cells generated using HTML

    Hi,
    I am generating html at server side and writing the content with
    content type application/xls, all the generated data downloads to
    me in excel sheet. Here in this excel document, I dont have borders
    for the cell where i dont have the data. But for the cells, where data
    is placed, cell borders are available. How do i make the whole excel sheet
    cells as bordered.
    Thanks in advance.
    Regards,
    Rizwan.

    If I have table border="1" they show up. I want
    borders even in other parts of the excel sheet where
    table is not there. Is it possible for that to get
    the borders in entire excel sheet where data is
    present and even if data is not present?IIRC, it would not be possible unless you paint all those borders on the HTML page. An alternate way is to generate the Excel sheet using Jakarta POI, but that would only make your work tougher.

  • Can we preserve Conditional Formatting in excel even after export ?

    Hi,
    I have requirement where I need to preserve the formulae and conditional formatting when exported in excel format.
    The user is supposed to be changing the values and so the final result values and cell formats should change as well.
    I tried the workaround to preserve the formulae as directed in other threads but would like to know if we also have a workaround to preserve the conditional formatting of the cells.
    I know OfficeWriter can help me to get this requirement done but still I wonder if we have any workaround for this requirement.
    Thanks.

    Hi Rikz,
    According to your description, you want to preserve the formula and conditional formatting when export report to excel format.
    According to my knowledge, In earlier versions of Reporting Services, there was limited support for translating expressions in RDL to Microsoft Excel formulas. Since SSRS 2008, when you export a report to Excel, RDL expressions are not translated to Excel
    formulas, which is documented at
    http://msdn.microsoft.com/en-us/library/ms143380(v=SQL.100).aspx by Microsoft. When we export a report to excel, only the final data is exported. If some user want to preserve specify cells’ conditional formatting, we can use IIF function as a workaround
    as below:
    IIf(Globals!RenderFormat.Name Like "EXCEL*", Excel Formula, RDL Formula)
    For more information about export formulas to Excel, please refer to the following feedback:
    https://connect.microsoft.com/SQLServer/feedback/details/488517/ssrs-2008-export-formulas-to-excel
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • Following your instructions for fixing problems after downloading firefox 4 made it completely unusable, not even able to connect for feedback.

    I was having with internet and web connections just stopping or freezing after downloading firefox4. I tried following your dirrections that said to turn it off then back on. It turned off but would not go back on. I couldn't connect to anything so went back to my old search engine. I couldn;t even send you information concerning the problem until I got your recent email. The dirrections are really hard to follow for people who are not great on computer lingo. Can you write it out step by step?

    Press '''START + R''' in keyboard to open the '''Run''' box(or '''start''' then '''run''') , type in the RUN box '''%APPDATA%''' (or copied in just i wrote, bold text) then click '''OK'''. A Windows Explorer window will appear, in this window, choose '''Mozilla''' then '''Firefox''' then '''Profiles'''. Each folder in the "Profiles" folder (e.g., "xxxxxxxx.default") is a profile on your computer (maybe is one file if you have only one profile).
    see for more info : [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile folder - Firefox ]
    try it, good luck
    thanks again

  • Please help me if i am updating ios 7.1.1 via itunes for iphone 5s after downloading os and then my bro want to update is  iphone 5s ist again i have to download r just plug that and install please let me

    please help me if i am updating ios 7.1.1 via itunes for my iphone 5s after downloading the ios 7.1.1 and then my bro want to update is iphone 5s isit again i have to download r just plug that and install the ios 7.1.1 please let me

    Errors 3000-3999 (3004, 3013, 3014, 3018, 3164, 3194, and so on): Error codes in the 3000 range generally mean that iTunes cannot contact the update server (gs.apple.com) on ports 80 or 443.
    Update to the latest version of iTunes.
    Verify the computer's date and time are accurate.
    Check that your security or firewall software is not interfering with ports 80 or 443, or with the server gs.apple.com.
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    An entry in your hosts file may be redirecting requests to gs.apple.com (see "Unable to contact the iOS software update server gs.apple.com" above).
    Internet proxy settings can cause this issue. If you are using a proxy, try without using one.
    Test restoring while connected to a known-good network.

  • Listen for excel cell data change

    I want to develop a program that listens when an excel cell value changes...

    snoopybad77 wrote:
    I use http://jdde.pretty-tools.com/ very simple but working.
    By the looks of it, you might want to start with [DDEClientEventListener.onItemChanged()|http://jdde.pretty-tools.com/javadoc/com/pretty_tools/dde/client/DDEClientEventListener.html#onItemChanged%28java.lang.String,%20java.lang.String,%20java.lang.String%29], but I've got absolutely no idea how it works, never having used the product before.
    Winston
    Edited by: YoungWinston on Jul 5, 2010 1:43 AM
    PS: It looks like there's something very similar to what you want on their examples page as well. You clearly haven't done much looking.

  • R3D File Format Not Supported (even after downloading the REDCINE-X plugin) . . . Help!

    So I'm currently attempting to import my RED footage into Premier CS4.
    I've all ready downloaded the Redcine-X plugin for Premier Pro.
    The Problem(s):
    (1) My media browser acknowledges the file however, it won't play in my
    preview window nor will it import. 
    (2) I'm not given the RED Format Preset in my New Sequence window
    when I attempt to make a new sequence. 
    I was wondering if anyone knows any solutions and could possibly help
    me out, thoughts?

    installing REDCINE-X won't do anything for CS4.
    you need a CS4 plugin:
    REDCODE CS4 Win 1.3.msi
    SUMMARY: Provides native REDCODE media (R3D) support for
    Premiere Pro CS4 (4.0.1 and later) and After Effects CS4 (9.0.1 and later).
    Includes: REDCODE importer (v1.3.0), After Effects Settings Dialog
    and workflow guide. Note: Supports RED ONE cameras up through Build 18.
    unfortunately, it seems to be gone from the RED site.
    hahahahahahaha!!!

  • Did bug fix for add-ons after downloading new version. FB games do not work & add-ons still gone. I want the old version back. How can I do this?

    Downloaded version 7 today. All add-ons are gone, not disabled, but gone. The bug fix offered in this instance tells me to go look for updates. I have, and I'm totally up to date, so now I don't know what to do. The add-ons are still gone, and my games in FB are also malfunctioning. I click on a button in the game and nothing happens. I can't even play them like this. I have playing all morning, and this only happened AFTER I updated to the latest Firefox browser 7. I want the old version back, but cannot figure out a way to do this. I am mad right now and want the option to go back to the old version. If I can't get it, I guess I'll go back to IE. Thanks....

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • What is the best video format for importing into After Effects CS5

    Please look at this video, work in progress.
    http://www.youtube.com/watch?v=49_wbdKALQk
    The opening, featuring a ribbon of videos, was created in After Effects, using Digieffects Freeform.
    The  issue is the poor quality of the videos that are featured in the  opening -- compared to the higher quality of videos from the original Premiere  project., which you can see at the end of the clip.
    To create the After Effects project, I exported a series of video clips from Premiere  to mp4.
    Then I imported them into AfterEffects.
    The bottom line, and the purpose of this question, is I am thinking that  MP4 was not the best choice for the Adobe Premiere export.
    What  is the best format to export video from in Premiere Pro CS5 to import  into after effects, or to import into any other editing program,  incuding importing right back into Adobe Premiere, if that is eever  needed.
    AVI?
    MOV
    MP4
    And any other settings that will result with the highest qualiity videos for importing.
    Thanks

    To follow on with Wade's suggestion...
    There are lots of ways to get movies and projects and other things back and forth between After Effects and Premiere Pro. This page outlines them:
    "Working with Premiere Pro and After Effects"
    If you must render and export a movie out of one application to bring it into another, there is a very basic piece of video workflow advice that you need to keep in mind (which applies to _all_ video software, not just After Effects and Premiere Pro):
    If you're creating a movie to be used in the next step of a post-production pipeline, you _never_ want to use a format that does lossy compression. You either use no compression or (preferable) lossless compression. Examples of codecs that provide lossless compression are the Animation codec and PNG codec at the highest quality settings; these can be used in a QuickTime container, for example. Never compress a movie with lossy compression except at the very end of your pipeline, when you're creating the final movie for distribution.
    MP4 (MPEG-4) is a lossy codec. The quality loss is acceptable for the last stage in the pipeline, but it's not acceptable for an intermediate file.
    It seems that you would benefit from reading this and and working your way through this.

Maybe you are looking for

  • How to customize row and column settings in BI report

    Hi SDN, We have integrated EP702 and BI 704systems and uploaded BI roles into portal. Now i want to personalize BI report settins. There are 10 columns in BI report, but initially 4 columns are only displayed. But we want to display all the columns i

  • How can I sync my device calendar with the Windows Calendar on Vista?

    Hello, I have just got a PC running Vista (without Outlook) and am using the Windows Calendar and Addressbook. I seem to be able to sync the addressbooks, but my Blackberry Desktop isn't recognising the Windows Calendar application to allow me to syn

  • How do I get around HD "issues" to update from 10.5.8 to 10.6.8?

    This is in reference to my Macbook 2.16 while attempting to update from 10.5.8 to 10.6.8-- current usage on the Mac partition is 99GB with 33GB free; the Bootcamp partition is 31GB used with 70GB free. I own Paragon Camptune and was considering reduc

  • FNM3 Balance in local currency F5 703

    Hi Support Team, When I try to  reversal a Loan documento the system show the message F5 703 Balance in local currency. I 've been looking for oss notes but there is nothing to this component about the issue. Before to write any note i want to know i

  • Virtual Private Database

    Hi All, We are using Oracle 11g R2 and we would like to implement Virtual Private Database. We have an application connected to LDAP with serveral users. The users are also created in Weblogic. The Application is using only with Oracle schema with ma