One field is not downloading properly from ALV to EXCEL

Hi,
while downloading ALV out put to EXCEL sheet one field(CSTCTR) is not displaying properly it's truncating left and right side digits,
I have used function REUE_ALV_GRID_DISPLAY
FORM SUMMARY_REPORT .
  PERFORM BUILD_FIELDCATLOG.
  IF I_FINAL[] IS INITIAL.
    MESSAGE I000 WITH 'NO DATA EXIST'.
    EXIT.
  ENDIF.
  ST_SETTINGS-EDT_CLL_CB = 'X'.
  V_REPID = SY-REPID.
  SORT I_FINAL BY WERKS GEBNR PERNR.
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
            I_CALLBACK_PROGRAM       = V_REPID
            I_GRID_SETTINGS          = ST_SETTINGS
           I_CALLBACK_USER_COMMAND  = 'USER_COMMAND'
           I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS'
            IT_SORT                 = IT_SORT[]
            IT_FIELDCAT              = IT_FLDCAT[]
            IT_EVENTS                = IT_EVENTS[]
       TABLES
            T_OUTTAB                 = I_FINAL[]
       EXCEPTIONS
            PROGRAM_ERROR            = 1
            OTHERS                   = 2.
ENDFORM.           " alv_display  summary_report
*&      Form  build_fieldcatlog
      text
FORM BUILD_FIELDCATLOG.
WA_FLDCAT-FIELDNAME = 'WERKS'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'PA'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '1'.
  WA_FLDCAT-KEY     = 'X'.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'GEBNR'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'LOC'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '2'.
  WA_FLDCAT-KEY     = 'X'.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'PERNR'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'SAP #'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '3'.
  WA_FLDCAT-KEY     = 'X'.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'ADPFN'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'ADP #'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '4'.
  WA_FLDCAT-KEY     = 'X'.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'PERID'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'SSN'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '5'.
  WA_FLDCAT-KEY     = 'X'.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'KOSTL'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'CSTCTR'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '6'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'NACHN'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'LAST NAME'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '7'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'VORNA'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'FORST NAME'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '8'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'HIREDATE'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'HAL DATE'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '9'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'VACDATE'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'VAC DATE'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '10'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'GBDAT'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'BIRTHDT'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '11'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'SENDAT'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'SRDATE'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '12'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'SERADJDAT'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'SVCADJDT'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '13'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'TERMDATE'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'TERMDT'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '14'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'MGTXT'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'TERM REASON'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '15'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'GESCH'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = '***'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '16'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'RACKY'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'RACE'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '17'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'VTEXT'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'VET STAT'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '18'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'EXPAT'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'EXPAT'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '19'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'DISAB'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'DISAB'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '20'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'PTEXT'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'STAT'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '21'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'STELL'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'JOB'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '22'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'STLTX'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'JOB TITLE'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '23'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'PLANS'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'POSITION'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '24'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'PLSTX'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'POSITION T'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '25'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'AAPCT'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'JOBGP'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '26'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'EEOCT'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'EEO'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '27'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'ZBAND'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'BAND'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '28'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'EEOEX'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'FLSA'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '29'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
*WHEN DIVG
  WA_FLDCAT-FIELDNAME = 'BETRG'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'BW/HR'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '30'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'ANSAL'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'ANNSAL'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '31'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'WOSTD'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'HRS'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '32'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'ZBONPLAN'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'PLAN'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '33'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
  WA_FLDCAT-FIELDNAME = 'ZTARGET'.
  WA_FLDCAT-OUTPUTLEN   = '10'.
  WA_FLDCAT-SELTEXT_M = 'TGT'.
  WA_FLDCAT-TABNAME = 'I_FINAL'.
  WA_FLDCAT-COL_POS = '34'.
  WA_FLDCAT-KEY     = ' '.
  APPEND WA_FLDCAT TO IT_FLDCAT.
  CLEAR   WA_FLDCAT.
ENDFORM.                    " BUILD_FIELD CATLOG

Also make sure if the reference field name and reference table name in the field cat .
There will be some fields where in when dropped to excel will not hold the field properties and may not download properly,In such cases pass the reference fileds to the field cat .
In the field cat u r using,  pass this and check .
WA_FLDCAT-FIELDNAME = ' '. "
WA_FLDCAT-OUTPUTLEN = 'XX'.
WA_FLDCAT-SELTEXT_M = 'XXXXXXXXXXXXXXXXXXx'.
WA_FLDCAT-TABNAME = 'I_FINAL'.
wa_fldcat- -
>reference field name,   
wa_fldcat----
>reference table name
WA_FLDCAT-COL_POS = '25'.
WA_FLDCAT-KEY = ' '.
APPEND WA_FLDCAT TO IT_FLDCAT.
CLEAR WA_FLDCAT.
Br,
Vijay.

Similar Messages

  • Download ICONS from ALV to EXCEL

    Dear Friends,
    IS there a way of downloading the ICON image exactly
    from alv to EXCEL,right now,when the icon is downloaded
    from alv to the excel,i can only see ascii characters in
    the icon column in the excel.
    kind regards
    kaushik hegde

    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

  • ONLY ONE FIELD DOES NOT GET PREPOPULATED FROM THE DATABASE

    I would really, really appreciate if someone can comment or suggest something that would help with the resolution to the issue I am currently experiencing.
    Simple sample form that explains the issue can be accessed from the link below.
    How to test the form:
    Open the form.
    Click on the yellow button to add new Task.
    The problem is with Additional Product fields ( in blue). You can add as many of them as you want by clicking on the Red button with the +. Add some data and uploade in database. When you download it from the database, data will come back fine for all of them, except for the first one.
    Any ideas or help would be greatly appreciated.
    https://acrobat.com/#d=2vFWOlm56FmrC4owzpfHew 
    The code is behind the Red button with the +. Very  simple. Perhaps is the indexing issue with the database. I do not know enough about it, to be able to send any suggestion to the DB guy.
    According to the DB guy, data uploades without issue. It is the blank field when the form with data is downoloaded.

    It might be related to http://forum.java.sun.com/thread.jspa?threadID=583466&messageID=2988344

  • 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

  • TS1424 When downloading an album from itunes one song did not download properly and is cut off at the end, how to fix?

    Downloaded John Mayer album bur one song is cut off at the end, how to fix??

    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting that song from your iTunes library and redownload it via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if it re-downloads in the state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find that song and use the 'Report a Problem' link.

  • Song tracks are not downloaded properly from iTunes Store: they are not added to the playlists, and eat disk space

    Hi,
    Yesterday I wanted to upgrade my wife's iPhone (5, 16 GB) from iOS 7.0.6 to iOS 7.1.
    She had only 500 MB of free space, and 1.9 GB was needed, so I decided to temporarily remove a number of songs from her music library.
    After this operation there was 2 GB free, and the upgrade went successfully.  After the upgrade there was still 2 GB free.
    Then I wanted to download the songs again, and here something went wrong:
    I went to iTunes Store > More > Purchased > Music, and clicked on "Download all".
    When the download process was completed, there was about 500 MB free space, but I noticed that some of the tracks, and even a complete album, were actually not in the playlists; in another album only one of the 30 tracks or so was downloaded.  So I went again into iTunes Store > More > Purchased > Music, and indeed some of the tracks were still marked as "to download", with a little cloud in front of them.
    When I tried to click on one of these little clouds to download a given track, the track seemed to be downloaded, but as soon as the download was finished the little cloud reappeared again, and the track wasn't added to the playlists.
    I tried to repeat that process a few times, until I noticed that there was now only 90 MB of free space.
    I then tried to download one more track that was 10 MB large, and after this there was only 80 MB of free space.
    So it seems that the tracks are indeed downloaded (and downloaded again if I click again on the little cloud) in a place where they use disk space without being otherwise accessible.
    What can I do to:
    1. download the tracks correctly so that they appear in the playlists?
    2. clean up the space that was wasted?
    Many thanks in advance!

    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting the incomplete tracks from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-download in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those tracks and use the 'Report a Problem' link and fill in details about the problem (iTunes support should reply within, I think, 24 to 48 hours).
    Some people have had a problem with the 'report a problem' link (it's been taking people to this site on a browser instead of showing a form in iTunes) - if it does that to you then try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page.

  • Images not downloading properly from CF card

    First, all of the sudden my downloads (from camera into Lightroom, which are simitanouesly also writing to my drobo) are going SO SLOW I mean 5-10 photos every 15-20 mins. Sometimes it even stalls out and I have to force quit and resume the download later. It was a problem that started just every few downloads, but is not every download. I  tried: Lightroom update (I have the latest version), deleting photos out of the Lightroom catalog (I always store them on my external, but use Lightroom to download and view and there were a bunch of old ones still in lightroom), turning off my render previews, downloading from a card reader and camera directly. This improved things only marginally.
    Then last night I tried another card again, figured I would just let it run all night. But it went super fast (lille it used to). Check my 'previous imports' folder and everything looked great. However only 300 of the 900 photos went into my external hardrive and the folder on Lightroom?! They still show on the previous import but not in the folders. What is the problem? 

    Ok, so first I need to say that my 27" iMac works perfectly in every other way.  The only issue I'm having is with Lightroom.  As an example, I have over 300 images on an SD card, only about 10% of them download and that takes forever.  So I tried bypassing the card reader and connecting by UBS cable camera to mac.  Same exact problem.  Can't be the card reader.  The other night I downloaded about 200 images, and the cropping function inside lightroom wouldn't work.  Once I cropped and sized as desired, I could not move the image around to position it.  I could do nothing inside the crop function. at all.  Lightroom SEEMS to be the problem, it is very unpredictable and, at times, unstable.  I called Apple, they walked me through a hard reset of the P RAM, with zero affect.  I don't know what to try next, other than maybe uninstall and reinstall LR.  Any constructive advise is appreciated.

  • Problrn when downloas from ALV to excel

    Hi All.
    I am trying to download data from ALV to excel file, but only last pages are downloaded and not from frist pages?
    Can anyone tell me wht it is happening and what is the solution?
    Thanks.

    Hi PKB,
    My initial analysis of your query is as follows.
    You can test the same by debugging the report after pressing the send to excel report.  See the internal table is gettting deleted anywhere in between.  If yes analyse it is happening and correct it if possible.
    Let me know if any further help is required by providing further details.
    Regards,
    Gowri

  • HT4528 I've purchased a few dozen songs from itunes on my iphone. A few of these songs will not download properly and I keep getting a "unable to download song" message. My account info is correct and full signal.

    I've purchased a few dozen songs from itunes on my iphone. A few of these songs will not download properly and I keep getting a "unable to download song" message. My account info is correct and full signal. It seems to continually keep trying to download but cannot. Please help!

    i do understand that.  if you purchased the music on the phone.  its still available to you.  if you go in itunes on your computer.  go to purchases.  there should be all the music you have purchased.  there you can download the song if it isn't already and then sync it to your phone which will add the song to the phone.  have you tried to power off phone and then try to download again.   the itunes way is just another option. 

  • Today i rent photoshop cc from the adobe site. and it will not download properly onto my computer

    today i rent photoshop cc from the adobe site. and it will not download properly onto my computer. I received the confirmation email. I verified my email then logged into the site. Then I click on download button is association with photoshop cc. The icoud app download box comes up and does not actually download....
    i need to use this photoshop asap. i just need it to download

    Without system information nobody can tell you anything. The download not even starting points to a more serious issue on your system.
    Mylenium

  • Iphone 5 not downloading emails from one email address. Other email address work ok. Any suggestions?

    iphone 5 not downloading emails from one email address. Other email address work ok. Any suggestions?

    Hello rtie1,
    Thanks for using Apple Support Communities.
    For troubleshooting Mail on your iPhone please follow the steps in the article linked to below.
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/TS3899
    Take care,
    Alex H.

  • I bought an audiobook from iTunes but it did not download properly how can I re-download it?

    I bought an audiobook from iTunes but it did not download properly how can I re-download it on my computer? I have tried to get it to download to ipad but it won't do it. Please help?

    Try:
    If you rented it directly on the iPad then it should have downloaded into the Videos app - if you can't find it in there then have you got a film age rating set in Settings > General > Restrictions that is hiding it ?

  • I have a problem with my computer recognizing my new iphone when i uninstall itunes and reinstall it does not download properly and bonjour will not load any ideas of what to do

    I have a dell lap top with windows 7 that won't recognize my iphone 5c. The driver's will not install with out a problem, I talked to apple support to try to fix this problem, I unistalled itunes and reinstalled it, now itunes did not download properly, bonjour does not load and i can not burn cds, I have uninstalled and reinstalled twice with the same problem. If anyone can point me in the right direction that would be great

    You are right, but how could i send it to Apple? when the phone company first replaced my iphone they had in stock alots of iphones and they just sent mine back to Apple and gave me a new one, so all i did is to give them my phone, but now how could i sent it to Apple? and i cant send it by myself, and the store wont do that, its a lost for them.. so sending it to Apple wasnt an option from the begining.
    and for the record, i dont think the store where i bought it is an authorized shop.. its just a store who boughts phone's from Apple in a low price and sells it in much more money..

  • The data type DEC while downloading from ALV to EXCEL

    The data type DEC while downloading from ALV to EXCEL is giving some invalid data .
    Ex : In ALV field is the time difference in  hours:minutes
      if the value is  :23 in Excel it will be 22:59 .
    Please Suggest immediately

    Hi ....
    I have the similar problem. My coumns are not in any sequence when I download it to excel sheet.
    How do I fix it.
    Neha

  • HT201272 Songs not downloading properly.

    I have several songs that i have purchased that have not downloaded properly. I only use one computer, so it is obviously authrorized. When I follow instructuions and go to my purchased songs to download them again, the button to the right I am not able to click on it.

    You need to delete the songs from your library before you are able to redownload.
    If you are still unable to redownload your purchases, then search your computer in case they are still present in the iTunes folder.

Maybe you are looking for

  • All music went ghost on iPhone after I did a backup?

    okay, so this is really strange. I plugged my iphone in earlier this evening, wanting to sync an album on it from itunes. I noticed that itunes was showing my iphone as "13.55GB Over-Capacity", but when I went to check my iphone in its settings, it s

  • What are the advantages to using a REF cursor

    When would I want to use a REF cursor?

  • Does Time Capsule need to be plugged into anything other than power to work

    Sorry if this is a real newbie question. I don't own a Time Capsule yet, but am thinking of buying one. What I am wondering is, can I just hide the Time Capsule somewhere in the house (away from burglars) and just have it plugged into a power outlet

  • PCMCIA card reader for Macbook pro

    I'm looking for a card reader that is compatible with macbook pro. I receive data cards from clients that are PCMCIA format and looking for a device that can transfer information to the computer most likely through USB. It sounds pretty simple, but m

  • Quicktime Annoyance!  16:9 videos

    I'm an experienced user and have an annoyance that has been bothering me for YEARS... Why is it that Quicktime won't properly view 16:9 files properly. If the video is HD... no problems at all. BUT if the videos are SD video that has been set to 16:9