Urgent task on download file

Hi friends ,
I download the data into the excel file succesfully by 'EXCEL_OLE_STANDARD_DAT'
  .But I didnt get the Headings What I have to Modify.
*& Report  ZT11
report zt11.
data : begin of head occurs 0,
       h1(5) type c value 'one',
       h2(5) type c value 'two',
       end of head.
append head.
data : begin of itab occurs 0,
t1(5) type c value 'sag',
t2(5) type c value 'ntc',
end of itab.
append itab.
*write : itab-t1,itab-t2.
CALL FUNCTION 'EXCEL_OLE_STANDARD_DAT'
EXPORTING
FILE_NAME = 'C:\DETAILS'
CREATE_PIVOT = 0
DATA_SHEET_NAME = ' '
PIVOT_SHEET_NAME = ' '
PASSWORD = ' '
PASSWORD_OPTION = 0
TABLES
PIVOT_FIELD_TAB =
*DATA_TAB = ITAB[]
FIELDNAMES = head
EXCEPTIONS
FILE_NOT_EXIST = 1
FILENAME_EXPECTED = 2
COMMUNICATION_ERROR = 3
OLE_OBJECT_METHOD_ERROR = 4
OLE_OBJECT_PROPERTY_ERROR = 5
INVALID_PIVOT_FIELDS = 6
DOWNLOAD_PROBLEM = 7
OTHERS = 8
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

Hi Satya,
check this. this one will get you what you are looking for
data : begin of it_header occurs 0,
        line(20) type c,
       end of it_header.
data : v_repid type sy-repid,
       d_file  type string,
       a_line  type i.
selection-screen : begin of block blk with frame title text-001.
selection-screen : skip 1.
select-options   : so_date for ztest-erdat obligatory.
select-options   : so_plant for ztest-werks.
selection-screen : skip 1.
selection-screen : end of block blk.
selection-screen : begin of block blk1 with frame title text-001.
selection-screen : skip 1.
parameters       : p_file like rlgrap-filename obligatory.
selection-screen : skip 1.
selection-screen : end of block blk1.
initialization.
  v_repid = sy-repid.
at selection-screen on value-request for p_file.
  call function 'F4_FILENAME'
    exporting
    program_name        = v_repid
  DYNPRO_NUMBER       = SYST-DYNNR
  FIELD_NAME          = ' '
    importing
    file_name           = p_file
start-of-selection.
  select * from ztest into table it_ztest
             where erdat  in so_date
               and werks  in so_plant.
  describe table it_ztest lines a_line.
  it_header-line = 'No'.
  append it_header.
  it_header-line = 'Test Name'.
  append it_header.
  concatenate p_file '.xls' into p_file.
  d_file = p_file.
  call function 'WS_DOWNLOAD'
   exporting
  BIN_FILESIZE                  = ' '
  CODEPAGE                      = ' '
     filename                     = p_file
     filetype                     = 'DBF'
  filetype                      = 'DAT'
   mode                          = ' '
  WK1_N_FORMAT                  = ' '
  WK1_N_SIZE                    = ' '
  WK1_T_FORMAT                  = ' '
  WK1_T_SIZE                    = ' '
  COL_SELECT                    = ' '
  COL_SELECTMASK                = ' '
  NO_AUTH_CHECK                 = ' '
IMPORTING
  FILELENGTH                    =
    tables
      data_tab                      = it_ztest
      fieldnames                    = it_header
   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 eq 0.
  endif.
thanks
venki

Similar Messages

  • Urgent!! downloading file in jsp

    hi all
    can anyone plz help me in downloading file from my disk
    actual scenario is like this
    i have uploaded file path in database, and whole file in to my disk....
    i have given links to file name and when one clicks the link the file of that link should be downloaded / opened from the path specified in the database
    its really too urgent
    plz help me out

    The replies on this post : http://forum.java.sun.com/thread.jspa?threadID=5170452&messageID=9655276 should give you some idea

  • Download file urgent

    Hi,
    is it possible to download a file using gui_download which contains bold characters. now i am getting plain text only.
    Example i want to download like this
    <b>'download file urgent'</b>
    but i am getting as
    'download file urgent'
    rgds,
    Madhu

    No, you will not able to retain the text formatiing while download.
    If you are downloading the file in HTML or XML format then I think formatting can be retained but not for normal formats.
    Regards,
    Amit

  • Uploading and downloading files from a web app (Urgent!!)

    Hi everyone:
    I'm developing an application in PL/SQL to upload and download files from an HTML webpage. I congured the document table and the parameters necessary in the DAD of my application.
    when I upload the file using my webpage that file info is automatically uploaded to the doc table. This is as far as I have gotten.
    I need to do the following:
    - Place the uploaded file into a column in another table in my database as part of a text message (think of it as an email message), and delete the file from the doc table (as this is thought to be a temp table that holds the file when uploaded from my webpage)
    - Retreive the file so that it can be downloaded from another web page.
    The file can be a PDF, WORD DOC, etc...
    I now that I can do this with InterMedia but I haven't figured out how :(
    Can anyone please point me to an example or some documentation that can guide me through the process.
    DB VERSION: 8.1.7
    IAS VERSION: 1.0.2.2
    Thanks,
    Carlos Abarca

    The idea was for you to look at the code and get an idea of how to access the BLOB in the document table. IF you look at the procedure
    insert_new_photo( new_description IN VARCHAR2,
    new_location IN VARCHAR,
    new_photo IN VARCHAR2 )
    It shows how to access the blob that is stored in the document table. You can then copy this blob to your own table using the DBMS_LOB package.
    Hope this helps,
    Larry

  • Download files...Very Urgent!!!!!!!

    Hi All,
    I want to download same HTML files from the web using Java.
    u = new URL("http://www.insproplus.com/press.htm");
    URLConnection uc = u.openConnection();
    BufferedReader in = new java.io.BufferedReader(new InputStreamReader(u.openStream()));
    String rec = null;
    while ((rec = in.readLine()) != null)
    html += rec;
    in.close();
    This one is throwing the IOInterruptExpection: timeout exccetion no further information.
    My program is Application. not Applet.
    Can you give some suggestion and ideas how to download files(HTML pages) from the net?
    Best Regards,
    Muthu

    Hi,
    I found the solution for the exception.
    we must have set the proxy host on our networkt.
    UNIX
    java -Dhttp.proxyHost=proxyhost
    [-Dhttp.proxyPort=portNumber] runableClassName
    DOS shell (Windows 95/NT)
    java -Dhttp.proxyHost=proxyhost
    [-Dhttp.proxyPort=portNumber] runableClassName
    Muthu

  • I keep getting urgent msgs to download 3.6. I have done so, but the download doesn[t seem to finish completely. How can I make sure the download has occurred? h s

    I have dowloaded both 3.6 and 4.1 exe, however, I still get the urgent mesg from firefox. My download file shows that the downloads took place, but I guess they never were completely installed. How can I check to make sure the downloads are installed? Will the urgent messages stop when the downloads are truly installed?'

    Do a clean (re-)install:
    * Download a fresh Firefox copy and save the file to the desktop.
    * http://www.mozilla.com/firefox/all.html
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Don't remove personal data if you uninstall the current version (doesn't apply to Firefox 3.0.x).
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere (not in the Firefox program folder) and won't be affected by a (re)install.
    *[http://kb.mozillazine.org/Profile_folder_-_Firefox]

  • How can i Download file directly to http server (like in cloud server) instead user's pc

    I wan to create a plugin like download manager which download file directly in cloud.
    On Download prompt it ask for login and after user authenticate successfully it will redirects to our website in next tab where download will started.
    But i am unable to get download file url when click on particular file for download .
    I need this download file url and pass it to http server to download there.
    Please help me how can i do this ???
    Urgent help required.
    Thanks in advance.
    Sagar Modi

    Try to ask advice at the MozillaZine Extension Development forum.
    *http://forums.mozillazine.org/viewforum.php?f=19
    You need to register on the MozillaZine forum site in order to post at that forum.

  • Can't download files on Android from Server 2012 Essentials Remote Web Access

    I have two servers, one with Windows Server 2012 Essentials, and the other SBS 2011.  Employees like using Remote Web Access to log in from anywhere and have access to shared folders.  It works perfect on a Desktop computer, but when they try to
    use their Android tablets or phones, and want to download a file (e.g. a PDF) from one of the shared folders on the server, the download fails.   When Microsoft was pushing 2012 they said RWA worked great on mobile devices, do I have to set up something
    separately to make this happen?
    I've completely disabled the firewall, and have ports 80,443,987, and 1723(just to be safe) all forwarded to the server.
    I can log into the RWA site on the android, browse files and folders, but when I select a PDF to download, the download shows as if it's starting, shows in my android notification as if its going to start downloading (Shows MobileDownload www.mydomain.com)
    but eventually after a few minutes, will time out and show "Download Unsuccessful".
    Network connectivity is fine as I can do this on a Windows Desktop PC using any browser (Chrome, Firefox, IE) and successfully download anything I want.
    UPDATE:  I found this in the event handler when I tried to download something from a mobile device...
    - System
    - Provider
    [ Name] ASP.NET 4.0.30319.0
    - EventID 1309
    [ Qualifiers] 32768
    Level 3
    Task 3
    Keywords 0x80000000000000
    - TimeCreated
    [ SystemTime] 2014-01-12T16:49:12.000000000Z
    EventRecordID 72818
    Channel Application
    Computer MYSERVER.MYDOMAIN.local
    Security
    - EventData
    3005
    An unhandled exception has occurred.
    1/12/2014 11:49:12 AM
    1/12/2014 4:49:12 PM
    953eedf1ad414391a193e5f98a281da5
    263
    3
    0
    /LM/W3SVC/1/ROOT/Remote-1-130340167702975633
    Full
    /Remote
    C:\Program Files\Windows Server\Bin\WebApps\RemoteAccess\
    MYSERVER
    2592
    w3wp.exe
    NT AUTHORITY\NETWORK SERVICE
    HttpException
    Server cannot set content type after HTTP headers have been sent. at System.Web.HttpResponse.set_ContentType(String value) at System.Web.UI.Page.SetIntrinsics(HttpContext context, Boolean allowAsync) at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) at System.Web.UI.Page.ProcessRequest(HttpContext context) at Microsoft.WindowsServerSolutions.Web.RemoteAccessSite.RealPageHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    https://remote.MYDOMAIN.com:443/Remote/fs/MobileDownload.aspx?path=\\MYSERVER\PICTURES\2013603.jpg
    /Remote/fs/MobileDownload.aspx
    MY.IP.ADDRESS.141
    MYDOMAIN\user
    True
    Forms
    NT AUTHORITY\NETWORK SERVICE
    31
    NT AUTHORITY\NETWORK SERVICE
    False
    at System.Web.HttpResponse.set_ContentType(String value) at System.Web.UI.Page.SetIntrinsics(HttpContext context, Boolean allowAsync) at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) at System.Web.UI.Page.ProcessRequest(HttpContext context) at Microsoft.WindowsServerSolutions.Web.RemoteAccessSite.RealPageHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

    Hi,
    Before going further, would you please let me confirm something firstly?
    Would you please let me know if all Android devices
    encounter this same issue? If you download different type files, will still this issue persists? You can upload a small file (such as a text file) to the share folder, then check if Android device can’t download it.
    Based on your description, when logon a desktop computer, you will download files via RWA successfully. Please use the user account which logon computer to logon
    the Android device, will still fail to download?
    Please check if there has enough free space in Android devices that be used to save download.
    When this issue occurred, please check the state of Android device in Dashboard. Besides, I suggest you should run the Best Practices Analyzer (BPA) and fix all
    it can find. Then monitor the result.
    Run the Windows Server 2012 Essentials Best Practices Analyzer
    http://technet.microsoft.com/en-us/library/jj200181.aspx
    In addition, regarding to the Event ID 1309, please refer to the following articles.
    Event ID: 1309 Source: ASP.NET 4.0.30319.0
    http://www.eventid.net/display-eventid-1309-source-ASP.NET%204.0.30319.0-eventno-11022-phase-1.htm
    Hope this helps.
    Best regards,
    Justin Gu

  • Downloading file from a database..

    Iam writing an application which downloads a file from the database.The file lists will be displayed for the user. When he clicks a particular file, he gets a window with open, save cancel options
    (i am using response.setHeader("Content-disposition","attachment; filename="+selectedfile);
         response.setContentType("application/octet-stream");)
    I am reading the file from the database and storing it in the client system and then reading it from the saved location to view the downloaded file. But when it is viewed, the file is being copied to the temporary internet files folder and from there it is shown. So the file is in the two locations at the client side...
    When user downloads it i am storing it in "c:/downloade/" directory and again reading from the c:/downloaded/" to display the file. But when I see the path of the file opened through its properties its showing the temporary internet file folder location..
    "C:\Documents and Settings\.....\Temporary Internet Files\Content.IE5\2RED0V4P\v[1].jpg".
    Please tell me is my procedure is correct, can we view it without downloading it to the client system. I am giving the code in my program..
    FileOutputStream fs=null;
                   FileInputStream fis=null;
                   Connection con=DBUtil.getConnection();
                   Statement st=con.createStatement();
                   response.setHeader("Content-disposition","attachment; filename="+selectedfile);
                   response.setContentType("application/octet-stream");
                   try
                        ResultSet rs=st.executeQuery("select DOCUMENT from md_documents where DOCNAME='"+selectedfile+"'");
                        fs=new FileOutputStream("C:/Documents and Settings/admin/Desktop/download/"+selectedfile);
                                            int n=0;
                        InputStream is=null;
                        while(rs.next())
                             is=rs.getBinaryStream(1);
                             int i=is.read();
                             while(i!=-1)
                                  fs.write(i);
                                  i=is.read();
                   }catch(Exception e){System.out.println("Cause-->"+e);b=false;}
                   BufferedInputStream bis = null;
                   BufferedOutputStream bos = null;
                   String fname="C:/Documents and Settings/admin/Desktop/download"+selectedfile;
                   try{
                        fis=new FileInputStream(new File("C:/Documents and Settings/admin/Desktop/download/"+selectedfile));
                   int length = fis.available();
                   bis = new BufferedInputStream(fis);
                   bos = new BufferedOutputStream(out);
                   byte[] buff = new byte[length];
                   int bytesRead;
                   while(-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
                   bos.write(buff, 0, bytesRead);
                   }catch(Exception e){System.out.println("in reading "+ e);}
                   out.flush();
                   out.close();
                   con.close();
    Please suggest me the solution..even if we have to download it to the local system..how to give the path..plz help me.

    You can do this task using the packages provided to work in PSP pages. If you want I can guide step by step to this if you choose to do it with PSP pages.
    Joel Pérez

  • Firefox apears in firewall even after closing all processes and continues to download file

    firefox continues to download files even after closing all the processes, this behavior was noticed by looking at the my firewall activity log. I am using get them all download manger (firefox extension) to download files in firefox. When first time firefox is started after starting computer it doesnt have any problem, but once I open the download manager and start downloading files it never stops.
    I am using : down them all version 2.05 beta on FF 3.6.12
    1. start computer
    2. open firefox
    3. check firewall status (bitdefender firewall running at report level) - no activity noticed
    3. add url to download file in download them all manager
    4. start download - bitdefinder shows firefox accessing internet
    5. pause download
    6. check firewall status - bitdefinder doesn't show firefox accessing internet in process listing but it does show network activity is going on at its peak.
    7. close all firefox windows and remove firefox.exe from task manager
    8. check bit defiender firewall status it continues to run at peak eating up all the network bandwidth
    9. remove rule of firefox from firewall so as it may prompt when firefox try to connect to internet (bit definder firewall is running in report mode for approval for each connection)
    10. as soon as rule removed, bit definder pops up window sayaing firefox is trying to access remote server (same from where the download was earlier started)
    11. Allow the firefox to access it and again it will start downloading in background and bitdefinder shows up internet activity at its peak.

    naah, looks like its problem of firefox, i removed the plugin and tried downloading using the normal download winodw of firefox but same problem, this time it starts picking up item from the download window and continues to download

  • Downloading files from DVD or hard drive cameras

    Is it possible to download files from hard drive or dvd cameras to be used in Premiere without using the capture function which needs to be done in real time?

    Importing files from a DVD camcorder or other MPEG device, or Ripping DVD files rarely results in success in Premiere... do not be fooled by movie industry advertising into thinking that "DVD Quality Video" is suitable for EDITING... it is not... a DVD is designed to be for PLAYBACK only... and that includes trying to edit a Standard Def MPEG file!
    Go to my notes page http://www.pacifier.com/~jtsmith/ADOBE.HTM
    Click the internal link for editing compressed files... read
    There are other products better suited to your task... but if you only have DVD type files, you should convert to DV AVI
    The only SD files that Premiere likes are DV AVI type 2

  • Download file for Palm/Mac reader is damaged

    First of all, on the download page for the Reader for Palm OS Mac (http://www.adobe.com/products/acrobat/readstep2_mobile.html#palmMac), it says the file is 8.7 MB, but when the file is downloading, it says 9.4 MB, which turns out to be the actual size of the downloaded file.
    Then, when I try to mount the DMG file, I get a warning that "The disk image you are opening may be damaged and could damage your system. Are you sure you want to open this disk image?" Could this be related to the disparity between stated and actual sizes of the file?
    I tried downloading it several times with the same result. After a little research, I found an article on Apple's website discussing options for dealing with this particular message (http://docs.info.apple.com/article.html?artnum=305111-en).
    Mainly, it suggested converting the disk image to read/write, mounting it, and then attempting to repair it with Disk Utility. I tried this, but Disk Utility was unable to repair the mounted image. Disk Utility does report that the volume needs repair ("Volume Header needs minor repair), but on both verification and repair, it reports a "failure on exit" and fails to complete either task.
    Anyone else out there have this problem, or even better, a solution?
    All that said, and because I really do want to be able to read PDF files on my TT3, I went ahead and just copied the files off of the mounted disk image and got rid of the image.
    The Mac desktop application that converts untagged PDF files and then transfers tagged PDF files to the Palm device seems to work just fine, and even attempt to optimize preference settings automatically by querying your device during a hot sync for display depth and screen size. The Palm OS app seems to work quite well, too.
    Between them, I transferred a fairly difficult document containing lots of graphs and charts, special mathematical and chemical symbols, and even equations. And it worked VERY well, although the equations were a little difficult to read on my TT3 sometimes.
    The graphs and other figures in the document were all quite readable, even though I had preferences on the desktop app set to "shrink images to screen width." It got my TT3's screen dimensions at 320x320, and there was no way I could find to get the system to take advantage of the TT3's extended screen size of 320 x 480. (if anyone has any ideas about that, I'd like to know -- I'm thinking of converting PDF to some other graphics format (using Graphic Converter's batch converter) and using a viewer for that format that can use the landscape mode to display a scrolling page display that's 480 pixels wide).
    A PIECE OF MY MIND TO ADOBE:
    After initially posting this, I noticed that this same problem is mentioned in an archived topic that began on May 16, 2007 and ended on August 14, 2007, so it has apparently been a problem for more than a year. However, after noting that the archived topics are "read only," I decided to go ahead and post this to keep the issue active in the hopes that someone at Adobe who might have a smidgen of concern for the users of their products might take care of it.
    Adobe OWES it to its users (and its own reputation as a quality-conscious company) to correct this problem. A significant percentage of the users of the Adobe Reader are not as knowledgeable about the risks they would be taking with disregarding the warning and mounting the image anyway, or as sure of their ability to repair any system damage and recover any lost data, should damage occur. I've been using and fixing Macs since 1984, and the message scared ME a little, until I was able to find a little information about it. Could Adobe's fix be something as simple as generating and posting a new DMG file, that's NOT damaged?

    I also recently tried to download Adobe Reader to my Macintosh to use on my Palm TX and got the message "The disk image you are opening may be damaged and could damage your system." This is extremely frustrating, and disappointing that the Adobe people don't seem concerned enough to fix the problem. I am not a techie, so I dare not continue.
    If anybody has a solution and could explain it slowly to somebody who doesn't understand the computer world very well, I would be grateful.
    Thanks,
    Andrew

  • Download File In Csv Format

    Hi all,
        I want to create a file on the presentation server with csv format. i used gui_download function. The file is created but it is not csv format.
    it is urgent please can you help e out in this
    I used filetype as 'ASC' then CSV but in vain
    GV_ERR_FNAME = '
    SAM\ERRORFILE.CSV'
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        FILENAME                        = GV_ERR_FNAME
        FILETYPE                        = 'ASC'
        WRITE_FIELD_SEPARATOR           = 'X'
      TABLES
        DATA_TAB                        = GT_ERROR_TAX
    THANKX IN ADV

    Please check out this sample program.
    report zrich_0001.
    data: begin of itab occurs 0,
          fld1(10) type c,
          fld2(10) type c,
          fld3(10) type c,
          end of itab.
    data: begin of iout occurs 0,
          rec(1000) type c,
          end of iout.
    parameters: p_file type localfile default 'C:test.csv'.
    data: file type string.
    start-of-selection.
    * Build the ITAB
      itab-fld1 = 'A'.
      itab-fld2 = 'B'.
      itab-fld3 = 'C'.
      append itab.
      itab-fld1 = 'D'.
      itab-fld2 = 'E'.
      itab-fld3 = 'F'.
      append itab.
      itab-fld1 = 'G'.
      itab-fld2 = 'H'.
      itab-fld3 = 'I'.
      append itab.
    * Build the output internal table from ITAB
    * Concatenate all fields into IOUT-REC
      loop at itab.
        concatenate itab-fld1 itab-fld2 itab-fld3 into iout-rec
                    separated by ','.
        condense iout-rec no-gaps.
        append iout.
      endloop.
    * Now Download
      file = p_file.
      call function 'GUI_DOWNLOAD'
           exporting
                filename = file
           tables
                data_tab = iout
           exceptions
                others   = 22.
    Regards,
    Rich Heilman

  • Where to retrieve the downloaded files?

    Hi All,
    I m E61i user. I have no ideas where to find the downloaded files? I m appreciate that someone from the forum help me on this matter.

    Hi deenesh,
    I assumed you are using iPlanet Application Server.You can put jsp file in
    ..war file and deployed it.
    just go thru fortune sample it will give you the better Idea.
    please get back to me if it you have any question.
    thanks
    Deepak
    deenesh wrote:
    hi everyone,
    when installing iplanet, i am not able to figure out where to put the jsp
    files such that the iplanet can recognise it. I know this may seem a sillty
    question, but i need the answer urgent.
    thanks in advance

  • WINDOWS 8.1 ENTERPRISE 64BIT DOWNLOAD FILE CORRUPTED?

    GOOD DAY.
    I don't know where can I report for this thing and I just post it here.
    File downloaded from microsoft download website.
    windows 8.1 enterprise 64bit 90days trial
    burning image failed and extracting iso file and errors occured below.
    ***WINDOWS 8.1 ENTERPRISE 64bit***
    !   C:\Users\stevenchan\Desktop\9600.16384.WINBLUE_RTM.130821-1623_X64FRE_ENTERPRISE_EVAL_EN-US-IRM_CENA_X64FREE_EN-US_DV5.ISO: Cannot create sources\sxs\amd64_microsoft-windows-wcfcorecomp.resources_31bf3856ad364e35_6.3.9600.16384_en-us_9188bdf80d703c2d\ServiceModelInstallRC.dll.mui
    !   C:\Users\stevenchan\Desktop\9600.16384.WINBLUE_RTM.130821-1623_X64FRE_ENTERPRISE_EVAL_EN-US-IRM_CENA_X64FREE_EN-US_DV5.ISO: Cannot create sources\sxs\amd64_microsoft.transactions.bridge.dtc_b03f5f7f11d50a3a_6.3.9600.16384_none_c284c63d42773e43\microsoft.transactions.bridge.dtc.dll
    !   C:\Users\stevenchan\Desktop\9600.16384.WINBLUE_RTM.130821-1623_X64FRE_ENTERPRISE_EVAL_EN-US-IRM_CENA_X64FREE_EN-US_DV5.ISO: Cannot create sources\sxs\amd64_netfx-clr_sys_entservcs_thunk_dll_b03f5f7f11d50a3a_6.3.9600.16384_none_25c00a3c6769998f\system.enterpriseservices.thunk.dll
    !   C:\Users\stevenchan\Desktop\9600.16384.WINBLUE_RTM.130821-1623_X64FRE_ENTERPRISE_EVAL_EN-US-IRM_CENA_X64FREE_EN-US_DV5.ISO: Cannot create sources\sxs\amd64_netfx-system.directoryservices.protocols_b03f5f7f11d50a3a_6.3.9600.16384_none_3cdb1f0252010eb1\system.directoryservices.protocols.dll
    !   C:\Users\stevenchan\Desktop\9600.16384.WINBLUE_RTM.130821-1623_X64FRE_ENTERPRISE_EVAL_EN-US-IRM_CENA_X64FREE_EN-US_DV5.ISO: Cannot create sources\sxs\amd64_netfx-system.runtim..ion.formatters.soap_b03f5f7f11d50a3a_6.3.9600.16384_none_f057a9271ce694b1\system.runtime.serialization.formatters.soap.dll
    !   C:\Users\stevenchan\Desktop\9600.16384.WINBLUE_RTM.130821-1623_X64FRE_ENTERPRISE_EVAL_EN-US-IRM_CENA_X64FREE_EN-US_DV5.ISO: Cannot create sources\sxs\amd64_netfx-system.web.regularexpressions_b03f5f7f11d50a3a_6.3.9600.16384_none_c4cc859d676257f6\system.web.regularexpressions.dll
    !   C:\Users\stevenchan\Desktop\9600.16384.WINBLUE_RTM.130821-1623_X64FRE_ENTERPRISE_EVAL_EN-US-IRM_CENA_X64FREE_EN-US_DV5.ISO: Cannot create sources\sxs\amd64_netfx35linq-microso...entity.build.tasks_31bf3856ad364e35_6.3.9600.16384_none_c71a539e1d316ede\microsoft.data.entity.build.tasks.dll
    !   C:\Users\stevenchan\Desktop\9600.16384.WINBLUE_RTM.130821-1623_X64FRE_ENTERPRISE_EVAL_EN-US-IRM_CENA_X64FREE_EN-US_DV5.ISO: Cannot create sources\sxs\amd64_netfx35linq-microso..data_entity_targets_31bf3856ad364e35_6.3.9600.16384_none_88b02f6f108dcb87\microsoft.data.entity.targets
    !   C:\Users\stevenchan\Desktop\9600.16384.WINBLUE_RTM.130821-1623_X64FRE_ENTERPRISE_EVAL_EN-US-IRM_CENA_X64FREE_EN-US_DV5.ISO: Cannot create sources\sxs\amd64_netfx35linq-microso..ild.conversion.v3.5_31bf3856ad364e35_6.3.9600.16384_none_2a644f64972103a3\microsoft.build.conversion.v3.5.dll
    !   C:\Users\stevenchan\Desktop\9600.16384.WINBLUE_RTM.130821-1623_X64FRE_ENTERPRISE_EVAL_EN-US-IRM_CENA_X64FREE_EN-US_DV5.ISO: Cannot create sources\sxs\amd64_netfx35linq-microso..uild.utilities.v3.5_31bf3856ad364e35_6.3.9600.16384_none_70236cb7074a7cff\microsoft.build.utilities.v3.5.dll
    !   C:\Users\stevenchan\Desktop\9600.16384.WINBLUE_RTM.130821-1623_X64FRE_ENTERPRISE_EVAL_EN-US-IRM_CENA_X64FREE_EN-US_DV5.ISO: Cannot create sources\sxs\amd64_netfx35linq-microsoft.build.tasks.v3.5_31bf3856ad364e35_6.3.9600.16384_none_e310193c4029d491\microsoft.build.tasks.v3.5.dll

    Hello,
    I have the exact same problem while extracting Windows 8.1. It is good to know that the downloaded file is not corrupted and the problem has been identified. May I ask what is the solution. How do I make these errors go away and start installing windows
    8.1 on my PC.
    Thank you for your co-operation.
    Regards
    DKASH

Maybe you are looking for

  • I'm "frozen" even after restarting computer?

    Working on imovie & have about 32 min of material. Project has mainly stills, small amount of video, but lots of titles, voiceovers,  and cutaways. Accidentally placed a caption on a piece of video, and went under Edit and chose UNDO. The program was

  • How to automate FIM CM configuration steps using PowerShell?

    Hi, We are trying to automate the steps that the FIM CM Configuration wizard is doing using PowerShell. Any pointers on how to do it? Has anyone done it before? Thank you.

  • FOX Formula definition

    Greetings All!!! I am recieving an error Types of parameter RATE (P) and variable RATE1(F) are inconsistent .. I am using following FOX code DATA FISC_VAR TYPE 0FISCVARNT. DATA FISCYEAR TYPE 0FISCYEAR. DATA RATE1 TYPE F. FOREACH FISCYEAR. CALL FUNCTI

  • Jasper reports imtegration in struts2

    im new to java. plz help me in integrating jasper reports in struts2,Plz

  • Simple math calculation in numbers

    Hi I'm trying to do a simple calculation of 46.66*2 in numbers and i get a red triangle saying syntax error. Any light on this as what is wrong.