Problems With Downloading TXT File

I have a procedure that when called creates a .txt file, which is used as an upload to another application.
If I run my procedure, the txt file is created, but when I look at the file, it contains the required records but also information about the page.
See below.
My code is
create or replace PROCEDURE mer_fuel_coupon_download_1 IS
CURSOR c_fuel_coupon IS
SELECT A.VIN,
    A.FIRST_BFG,
    F.DRIVER_POSITION,
    A.BFG_NO,
    C.MAKES MAKE,
    D.MODEL,
    A.FRG_NO,
    E.COLOUR,
    A.MANUFACTURED_DATE MANUFACTURED,
    A.DEREG_ON,
    A.OTHER_VRN NON_BFG_REG_NO,
    B.VALID_FROM,
    B.VALID_UNTIL,
    'Not Held Anymore' UNREG_FROM,
    'Not Held Anymore' UNREG_TO,
    G.FUEL_TYPE,
    A.CC,
    A.FUEL_RATION,
    H.PERSONAL_NO,
    I.RANK,
    H.FIRST_NAME,
    H.SURNAME,
    'Not Held Anymore' HEAD_OF_FAMILY,
    J.UIN,
    TO_DATE(H.DATE_OF_BIRTH,'DD-MON-YY') DATE_OF_BIRTH,
    J.UNIT_NAME,
    K.BFPO,
   -- A.ITEM_ID
    ROWNUM
  FROM MER_IMPORTED_ITEMS A,
       MER_VEHICLE_OWNERSHIPS B,
       MER_MAKES C,
       MER_MODELS D,
       MER_COLOURS E,
       MER_DRIVER_POSITION F,
       MER_FUEL_TYPE G,
       MER_PERSONS H,
       MER_RANKS I,
       MER_UNITS J,
       MER_BFPO K
  WHERE H.PERSONAL_ID(+) = B.PERSONAL_ID
  AND B.ITEM_ID(+) = A.ITEM_ID
  AND C.MAKE_ID(+) = A.MAKE_ID
  AND D.MODEL_ID(+) = A.MODEL_ID
  AND E.COLOUR_ID(+) = A.COLOUR_ID
  AND F.DRIVER_POSITION_ID(+) = A.DRIVER_POSITION_ID
  AND G.FUEL_TYPE_ID(+) = A.FUEL_TYPE_ID
  AND I.RANK_ID(+) = H.RANK_ID
  AND J.UNIT_ID(+) = H.UNIT_ID
  AND K.BFPO_ID(+) = J.BFPO_ID
  AND A.BFG_NO IS NOT NULL
  AND (A.DEREG_ON IS NULL
  OR A.DEREG_ON    > (SYSDATE - 1826));
  line_of_data VARCHAR2(5000);
  dir_prob         EXCEPTION;
  file_write_done  EXCEPTION;
  record_ct        NUMBER(6) :=0;
  output_file      VARCHAR2(12) := 'FUEL.TXT';
  target_file      utl_file.File_Type;
  success_ct       NUMBER(6) :=0;
  fail_ct          NUMBER(6) :=0;
BEGIN
-- Set MIME type
owa_util.mime_header( 'application/octet', FALSE );
-- Set name fo file
htp.p('Content-Disposition: attachment; filename="FUEL.TXT"');
-- Close the HTTP header
owa_util.http_header_close;
BEGIN
FOR r_fuel IN c_fuel_coupon
    LOOP
     BEGIN
line_of_data := r_FUEL.VIN||','
||TO_CHAR(r_FUEL.FIRST_BFG,'DD/MON/YY')||','
||r_FUEL.DRIVER_POSITION||','
||r_FUEL.BFG_NO||','
||r_FUEL.MAKE||','
||r_FUEL.MODEL||','
||r_FUEL.FRG_NO||','
||r_FUEL.COLOUR||','
||TO_CHAR(r_FUEL.MANUFACTURED,'DD/MON/YY')||','
||TO_CHAR(r_FUEL.DEREG_ON,'DD/MON/YY')||','
||r_FUEL.NON_BFG_REG_NO||','
||TO_CHAR(r_FUEL.VALID_FROM,'DD/MON/YY')||','
||TO_CHAR(r_FUEL.VALID_UNTIL,'DD/MON/YY')||','
||r_FUEL.UNREG_FROM||','
||r_FUEL.UNREG_TO||','
||r_FUEL.FUEL_TYPE||','
||r_FUEL.CC||','
||r_FUEL.FUEL_RATION||','
||r_FUEL.PERSONAL_NO||','
||r_FUEL.RANK||','
||r_FUEL.FIRST_NAME||','
||r_FUEL.SURNAME||','
||r_FUEL.HEAD_OF_FAMILY||','
||r_FUEL.UIN||','
||TO_CHAR(r_FUEL.DATE_OF_BIRTH,'DD/MON/YY')||','
||r_FUEL.UNIT_NAME||','
||r_FUEL.BFPO||','
--||r_FUEL.ITEM_ID||','
||r_FUEL.ROWNUM||','
|| CHR(13)||CHR(10);
htp.prn(line_of_data);
success_ct := success_ct + 1;
EXCEPTION
WHEN no_data_found THEN
          RAISE file_write_done;
        WHEN others THEN
          fail_ct := fail_ct + 1;
END;
    END LOOP;
END;
END;At the end of the txt file, I see information like this
<head>
<title>Fuel Coupon Download</title>
<link rel="stylesheet" href="/i/themes/theme_20/theme_3_1.css" type="text/css" />
<link rel="stylesheet" href="/i/bfg_css/j6.css" type="text/css" />
<script type="text/javascript" src="/i/bfg_javascript/jquery/jquery-1.3.2.js"></script>
<link rel="stylesheet" href="/i/bfg_javascript/jquery/jqueryui/themes/redmond/jquery-ui-1.7.2.custom.css" type="text/css" />
<script type="text/javascript" src="/i/bfg_javascript/jquery/jqueryui/jquery-ui-1.7.2.custom.js"></script>
<script type="text/javascript" src="/i/bfg_javascript/j6_javascript.js"></script>
<!--[if IE]><link rel="stylesheet" href="/i/themes/theme_20/ie.css" type="text/css" /><![endif]-->
<style>
* {font-size: 10pt;font-family: Tahoma,Arial,Helvetica,Geneva,sans-serif};
</style>
<script src="/i/javascript/apex_ns_3_1.js" type="text/javascript"></script>
<script src="/i/javascript/apex_3_1.js" type="text/javascript"></script>
<script src="/i/javascript/apex_get_3_1.js" type="text/javascript"></script>
<script src="/i/javascript/apex_builder.js" type="text/javascript"></script>
<script type="text/javascript">
<!--
/*Global JS Variables*/
var htmldb_Img_Dir = "/i/";
//-->
</script>
<link rel="stylesheet" href="/i/css/apex_3_1.css" type="text/css" />
<!--[if IE]><link rel="stylesheet" href="/i/css/apex_ie_3_1.css" type="text/css" /><![endif]-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body ><form action="wwv_flow.accept" method="post" name="wwv_flow" id="wwvFlowForm">
  <input type="hidden" name="p_flow_id" value="111" id="pFlowId" />  <input type="hidden" name="p_flow_step_id" value="388" id="pFlowStepId" />  <input type="hidden" name="p_instance" value="1780009464230900" id="pInstance" />  <input type="hidden" name="p_page_submission_id" value="18077377520018" id="pPageSubmissionId" />  <input type="hidden" name="p_request" value="" id="pRequest" /><div id="t20PageHeader">
<table border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td id="t20Logo" valign="top"><span style="font-family:Arial; color:#FFFFFF; font-size:18px; white-space:nowrap; font-weight:bold;">Vehicle Licensing Office Application</span><br /></td>
<td id="t20HeaderMiddle"  valign="top" width="100%"><br /></td>
<td id="t20NavBar" valign="top"><br /></td>
</tr>
</table>
</div>
<div id="t20BreadCrumbsLeft"></div>
<table border="0" cellpadding="0" cellspacing="0" summary="" id="t20PageBody"  width="100%" height="70%">
<td width="100%" valign="top" height="100%" id="t20ContentBody">
<div id="t20Messages"></div>
<div id="t20ContentMiddle"></div>
</td>
<td valign="top" width="200" id="t20ContentRight"><br /></td>
</tr>
</table><table border="0" cellpadding="0" cellspacing="0" summary="" id="t20PageFooter" width="100%">
<tr>
<td id="t20Left" valign="top"><span id="t20UserPrompt">ADMIN</span><br /></td>
<td id="t20Center" valign="top"></td>
<td id="t20Right" valign="top"><span id="t20Customize"></span><br /></td>
</tr>
</table>
<br class="t20Break"/>
<input type="hidden" name="p_md5_checksum" value=""  /></form>
<script type="text/javascript">
<!--
//-->
</script><!-- Code generated for user with developer privileges.  -->
<script type="text/javascript">
function popupInfo()
  w = open("f?p=4000:34:1780009464230900:PAGE:NO:34:F4000_P34_SESSION,F4000_P34_FLOW,F4000_P34_PAGE:1780009464230900,111,388","winLov","Scrollbars=1,resizable=1,width=700,height=450");
  if (w.opener == null)
     w.opener = self;
     w.focus();
</script><table cellpadding="0" border="0" cellspacing="0" summary="Developer Toolbar" align="center"><tbody><tr><td><a class="htmldbToolbar" href="f?p=4500:1000:1780009464230900" style="border-left:1px solid black;" title="Application Express Home">Home</a></td><td><a class="htmldbToolbar" title="Application 111" href="f?p=4000:1:1780009464230900::NO:1,4150,RP:FB_FLOW_ID,FB_FLOW_PAGE_ID,F4000_P1_FLOW,F4000_P4150_GOTO_PAGE,F4000_P1_PAGE:111,388,111,388,388" style="border-left:1px solid #000000;border-right:1px solid #000000;">Application 111</a></td><td><a class="htmldbToolbar" title="Edit Page 388" href="f?p=4000:4150:1780009464230900::NO:1,4150:FB_FLOW_ID,FB_FLOW_PAGE_ID,F4000_P1_FLOW,F4000_P4150_GOTO_PAGE,F4000_P1_PAGE:111,388,111,388,388">Edit Page 388</a></td><td><a class="htmldbToolbar" href="f?p=4000:336:1780009464230900::::FB_FLOW_ID,FB_FLOW_PAGE_ID,F4000_P1_FLOW,F4000_P4150_GOTO_PAGE,F4000_P1_PAGE:111,388,111,388,388" style="border-left:1px solid black;" title="Create">Create</a></td><td><a class="htmldbToolbar" href="javascript:popupInfo()" style="border-left:1px solid black;" title="Session">Session</a></td><td><a class="htmldbToolbar" href="f?p=4000:14:1780009464230900::::FB_FLOW_ID,FB_FLOW_PAGE_ID,F4000_P1_FLOW,F4000_P4150_GOTO_PAGE,F4000_P1_PAGE:111,388,111,388,388" style="border-left:1px solid black;" title="Activity">Activity</a></td><td><a class="htmldbToolbar" title="Debug" style="border-left:1px solid black;" href="f?p=111:388:1780009464230900::YES">Debug</a></td><td id="hideEdit" style="display:none;"><a class="htmldbToolbar" title="Hide Edit Links" href="javascript:quickLinks('HIDE');"  style="border-right:1px solid #000000;border-left:1px solid black;">Hide Edit Links</a></td><td id="showEdit"><a class="htmldbToolbar" title="Show Edit Links" href="javascript:quickLinks('SHOW');"  style="border-right:1px solid #000000;border-left:1px solid #000000;">Show Edit Links</a></td></tr></tbody></table>
<script type="text/javascript">
   if(GetCookie('ORA_WWV_QUICK_EDIT') != null){
       if(GetCookie('ORA_WWV_QUICK_EDIT') == 'SHOW')
           quickLinks('SHOW');
</script>
</body>
</html>Can anyone tell me why it is tagging this information on to my txt file
Cheers
Gus

Hi,
before exception handler call
apex_application.g_unrecoverable_error := true;Regards,
Jari

Similar Messages

  • I can not do the update , what should I do to fix this error ? "There was a problem with downloading the file . For tips on troubleshooting , please go to Customer Support . ( Error code : 204 ) ." thanks

    I can not do the update , what should I do to fix this error ?
    "There was a problem with downloading the file . For tips on troubleshooting , please go to Customer Support . ( Error code : 204 ) ." thanks

    Hi,
    Please refer to the help document below:
    Error downloading, installing, or updating Creative Cloud applications
    Regards,
    Sheena

  • Problem with printing txt file

    I have a problem with printing txt file. My code looks like :
    String filename = something.txt";
    DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
    PrintService[] services = PrintServiceLookup.lookupPrintServices(
              flavor, null);
    PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
    pras.add(PrintQuality.DRAFT);
    pras.add(new Copies(1));
    pras.add(MediaSizeName.ISO_A4);
    pras.add(Sides.ONE_SIDED);
    pras.add(Chromaticity.MONOCHROME);
    PrintService service = ServiceUI.printDialog(null, 200, 200,
              services, services[0],
              null,
              pras);
    if (service != null)
    try
    DocPrintJob job = service.createPrintJob();
    FileInputStream fis = new FileInputStream(filename);
    DocAttributeSet das = new HashDocAttributeSet();
    Doc doc = new SimpleDoc(fis, flavor, das);
    job.print(doc, pras);
    Thread.sleep(10000);
    catch(FileNotFoundException e)
    catch(PrintException e1)
    catch(InterruptedException e2)
    It doesn't work :(
    What is my purpose: I would like to print .txt file but I would like to get PrintDialog where I can choose PrintQuality, Chromaticity etc. I found also that I should use DocFlavor.INPUT_STREAM.TEXT_PLAIN_HOST but I don't know how.
    I will be very gratefull for help :)

    I tested it on 3 printers (different models of hp). 2 of them don't give me any error but when it started print priter stoped (just as it dosesn't have a paper), but 1 of them doesn't react (there were no errors), i thought tahat something was wrong with printers but when I change DocFlavor.INPUT_STREAM.AUTOSENSE to DocFlavor.GIF and filename to dog.gif it works so mybe there is another way to print txt file

  • Spool to PDF - Problems with downloading PDF file when converting with job

    Hi all!
    I've got a problem. I've got a program that writes a smartform into the spool. After that, I am using the function modules RSTS_GET_ATTRIBUTES and CONVERT_OTFSPOOLJOB_2_PDF to convert it into PDF. I retrieve a internal table with the binary content for the PDF file. Now i can download the file to the desktop by using the method cl_gui_frontend_services=>gui_download.
    But there is a problem: when the spool excesses 99 pages, the function module CONVERT_OTFSPOOLJOB_2_PDF asks the user via popup if the PDF should be created in background. If the user commits, the internal tables that should contain the binary PDF data is emtpy. A background job writes the binary data into the spool. The user has got an empty file that will be generated by cl_gui_frontend_services=>gui_download.
    So, is it possible to suppress the popup to create the PDF allways online? Or how can I write the PDF file if there will be create any spool id in background? You'll find my current code below.
    * Prüfen ob es die übergebene Spoolnummer überhaupt gibt
      SELECT SINGLE * FROM tsp01 INTO ls_tsp01 WHERE rqident = id_spoolid.
      IF ( sy-subrc <> 0 ).
        cf_error = 'X'.
        EXIT.
      ENDIF.
    * TemSe-Objekte speichern sequentielle Daten. Ein TemSe-Objekt kann aus
    * mehreren Teilen bestehen. Dieser FB ermittelt die wichtigsten Attribute
    * eines TemSe-Objekts. Falls das Objekt aus mehreren Teilen besteht, werden
    * die Attribute entsprechend zusammengefaßt.
      CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
        EXPORTING
          client        = ls_tsp01-rqclient
          name          = ls_tsp01-rqo1name
          part          = 1
        IMPORTING
          objtype       = ld_objtype
        EXCEPTIONS
          fb_error      = 1
          fb_rsts_other = 2
          no_object     = 3
          no_permission = 4
          OTHERS        = 5.
      IF ( sy-subrc <> 0 ).
        cf_error = 'X'.
        EXIT.
      ENDIF.
      IF ld_objtype(3) = 'OTF'.
        lf_is_otf = 'X'.
      ELSE.
        lf_is_otf = ' '.
      ENDIF.
      IF ( lf_is_otf = 'X' ).
    *   Konvertiere OTF-Spoolauftrag nach PDF
        CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = id_spoolid
            no_dialog                = ' '
    *        pdf_destination          = 'T'
          IMPORTING
            pdf_bytecount            = ld_numbytes
            pdf_spoolid              = ld_pdfspoolid
            btc_jobname              = ld_jobname
            btc_jobcount             = ld_jobcount
          TABLES
            pdf                      = lt_pdf
          EXCEPTIONS
            err_no_otf_spooljob      = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_dstdevice        = 5
            user_cancelled           = 6
            err_spoolerror           = 7
            err_temseerror           = 8
            err_btcjob_open_failed   = 9
            err_btcjob_submit_failed = 10
            err_btcjob_close_failed  = 11.
        IF ( sy-subrc <> 0 ).
          cf_error = 'X'.
          EXIT.
        ENDIF.
      ELSE.
    *   Konvertiere ABAP-Liste-Spoolauftrag nach PDF
        CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = id_spoolid
            no_dialog                = ' '
          IMPORTING
            pdf_bytecount            = ld_numbytes
            pdf_spoolid              = ld_pdfspoolid
            btc_jobname              = ld_jobname
            btc_jobcount             = ld_jobcount
          TABLES
            pdf                      = lt_pdf
          EXCEPTIONS
            err_no_abap_spooljob     = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_destdevice       = 5
            user_cancelled           = 6
            err_spoolerror           = 7
            err_temseerror           = 8
            err_btcjob_open_failed   = 9
            err_btcjob_submit_failed = 10
            err_btcjob_close_failed  = 11.
        IF ( sy-subrc <> 0 ).
          cf_error = 'X'.
          EXIT.
        ENDIF.
      ENDIF.
      WHILE ( lf_file_ok = '' ).
    *   Die in der Tabelle lt_pdf enthaltenen Binärdaten werden nun in eine
    *   Datei geschrieben. Da alle übergebenen Tickets in die gleiche Datei
    *   geschrieben werden, kann der im Speicher gehaltente Protokolleintrag
    *   gelesen werden
        CALL METHOD cl_gui_frontend_services=>gui_download
          EXPORTING
            bin_filesize              = ld_numbytes
            filename                  = cd_filename
            filetype                  = 'BIN'
    *    append                    = SPACE
    *    write_field_separator     = SPACE
    *    header                    = '00'
    *    trunc_trailing_blanks     = SPACE
    *    write_lf                  = 'X'
    *    col_select                = SPACE
    *    col_select_mask           = SPACE
    *    dat_mode                  = SPACE
          confirm_overwrite         = 'X'
    *    no_auth_check             = SPACE
    *    codepage                  = SPACE
    *    ignore_cerr               = ABAP_TRUE
    *    replacement               = '#'
    *    write_bom                 = SPACE
    *    trunc_trailing_blanks_eol = 'X'
    *    wk1_n_format              = SPACE
    *    wk1_n_size                = SPACE
    *    wk1_t_format              = SPACE
    *    wk1_t_size                = SPACE
    *  IMPORTING
    *    filelength                =
          CHANGING
            data_tab                  = lt_pdf
          EXCEPTIONS
            file_write_error          = 1
            no_batch                  = 2
            gui_refuse_filetransfer   = 3
            invalid_type              = 4
            no_authority              = 5
            unknown_error             = 6
            header_not_allowed        = 7
            separator_not_allowed     = 8
            filesize_not_allowed      = 9
            header_too_long           = 10
            dp_error_create           = 11
            dp_error_send             = 12
            dp_error_write            = 13
            unknown_dp_error          = 14
            access_denied             = 15
            dp_out_of_memory          = 16
            disk_full                 = 17
            dp_timeout                = 18
            file_not_found            = 19
            dataprovider_exception    = 20
            control_flush_error       = 21
            not_supported_by_gui      = 22
            error_no_gui              = 23
            OTHERS                    = 24.

    Creating a PDF file with over 99 pages through SAP seems rather unreasonable to me. What are you printing - Encyclopedia Britannica? For cripes sake... Have you thought about creating more than one spool request or using something completely different? Why do you have to do this through spool? You can get Smartform output directly into PDF, there are a lot of example out there.
    The only solution that comes to mind is rather brutal - create a copy of the function module and get rid of the popup. Although it just might time out after that...

  • Problems with downloading music files from particular websites

    Has anyone else had problems using the Calabash or Afropop websites to download music files? I am able to download using Tiger on my MacBook Pro but each time I try the same with Leopard on my iMac, I get a message that the file does not exist. However, I am able to download music files from other sites like Music for Robots so I am not sure if there is something wrong with the sites themselves?

    The files are definitely corrupted because they skip and have areas that sound like the file bits are jumbled.  I verified this on two different computers.  Dragging the same song straight from the server to the computer or streaming it the songs
    play fine.  I also had trouble with the same hard drives corrupting music and pictures when I had the raid tower in Raid 0.  I have since put the drives in clean mode and reformatted full to NTFS.  The Raid tower is a TR4UTBPN with two WD 1.5tb
    7200 drives.  I am running them in USB 3.0 mode with supplied turbo USB software to super speed the tower.  My pictures when they corrupt have solid color banding all through the middle.  I may try making a folder on one of the internal server
    drives and try downloading and see if they are corrupt as well.  when I say it corrupted the files before I mean you couldn't stream them copy them or look at them on the server without them being corrupted.  Any thoughts?

  • Problem with Downloading a file

    Hi All,
    I am trying to download pdf from remote machine. My problem is that my remote machine is not server. I do not have any idea how to construct the URL of the pdf ? I am able to download from local machine but not remote machine. I do not want to use FTP and I can not use Http.
    Can I do it without using any protocol?
    Please guide me for the same.
    Thanks

    Thanks for your replies. I am explaining my problem once more, so that it will more clear.
    I am using java.io and java.net for downloading the files.
    My requirement is basic downloading of files..Like after clicking the button user should be able to browse and locate the dir where he want to store the file.
    If the file is somewhere say in C:// on my local machine and I want to download it and store it to other location say D:// then I can do that but if the file is on remote machine and that machine is not the server, I am not able to perform the action...
    File not found exception occurs.
    Do I need to share the folder so that it will be accessible in that case??

  • Problem with Downloading the file.

    Hi all,
            when i try to download a file after  including the flash swf file into java application it is showing the error as follows:
            Here,http://localhost:8888/com.mymdworld.Application/ is the url of the java application and DynaAccess.swf is the flash .swf file.
    SecurityError: Error #2148: SWF file http://localhost:8888/com.mymdworld.Application/DynaAccess.swf cannot access local resource D:/websites/mymdworld/backup_temp/P1/DownloadedFiles.zip. Only local-with-filesystem and trusted local SWF files may access local resources.
    at global/flash.net::navigateToURL()
    at MethodInfo-375()
    at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::onComplete()
      for downloading
    Please Help me...Its urgent..
    Thanks in Advance
    Swathi

    Hi doghouseJim,
    Iam trying to access a zipfile .
    Thanks,
    Swathi

  • Automatic Payment Run - Problem with downloading DME file

    Hi,
    My client recently went live with the Automatic Payment run. But when trying to download ( or export) the DME file he is unable to do so. The message says like "There is no source data for this data record".
    Please help.
    Regards,
    Raj/

    Hello,
    You have to give the destination path where the file needs to be saved in transaction code OBPM4.
    Hope you must have maintained proper variant for your Payment Medium Format.
    Unless, you maintain these values, the file will not be generated at the destination.
    Thanks,
    Ravi

  • Problem with Download! on N78

    I'm having a problem with Download! on my N78 (sw v. 12.046). I can open Download but it freezes, and I also can't download any applications. When Download! freezes, my only option to shut it down is to boot the phone..I can switch to other open applications but Download! is freezed. This is giving me hard time, can't install any applications. Any help or ideas? Anyone else having this problem?

    Backup your data, and try doing a soft reset. *#7370#, (use this code at your own risk, since it deletes some important data's in your phone memory, including the data of installed applications on phone memory - means if you installed a java file to your card, it stores some data in your phone memory which will be deleted when you soft reset. So you will have to reinstall that software)

  • Problems with download jdk 6 update 3 online and offline

    Hello,
    I am italian.
    I have same problems with download of jdk 6 update 3 for Windows Vista 32bit HomePremium.In passed i download without problems jdk 6,6 up 1,6 up 3 and 6 up 3(past saturday).For problems with my pc i installing new jdk but i have problems:
    In online installation recive error with download file cabinet and in offline installation i recive error with file "st160000.cab" that is corrupted.
    I have equal error with Xp sp2,Millenium edition and Vista Business edition.Help me.Thanks

    I add that the connection internet tested are variouse:gprs,adsl 2Mb,4Mb anda fastADSL 20Mb

  • Problem with downloading an issue to an Android tablet

    We're experiencing a problem with downloading an issue to an Android tablet.
    Adobe Content Viewer on a Samsung Galaxy Tab 2 attempts to download an issue, but after about 30 seconds of downloading ACW stops and without any error message returns to the previous state showing again the Download button. The Internet connection is good. Everything also works perfectly on other tablets we tried - ASUS Transformer and a previuos generation of Galaxy Tab.
    Is there any common resolution for this problem?

    I may not be using the correct jargon,,,,when I click on Amazon's link for the AmazonApp store download, an Adobe box comes up, so I follow the cues I get on the screen.  I don't know what else to do....my 1st step..https:/www.amazon.com/app-email    you have chosen to open Amazon_Appstore-release.apk which is apk file from: https://amznadsi-a.akamaihd.net  what should Firefox do with this file?  Save File  I click on OK    Then a download box comes up, which I click on, then there is 'Finder' and 'Adobe Reader'.  Adobe reader is highlighted, so I click, then OK and I get a box "Amazon_Appstore-release(9).apk" is an application which was downloaded from the Internet.  Are you sure you want to open it?  Cancel  Open.  I click Open.  Then a box that says  Adobe Reader could not open 'Amazon_Appstore-release(9).apk' because it is either not a supported file type or because the file was damaged (for example, it was sent as an email attachment and wasn't correctly decoded.)  I am a novice with this stuff....I hope you can help me.  Thanks  Char

  • Problem with downloading FlashBuilder 4.6

    Hi, I have a problem with downloading a FlashBuilder 4.6 I use this locations http://www.adobe.com/cfusion/tdrc/thankyou_2.0.cfm?product=flash_builder&loc=en_us
    Every time it starts to download and stops at different time saying:
    Downloading Adobe Flash Builder 4.6 English Mac
    FlashBuilder_4_6_LS10.dmg ( file 1 of 1 )Cancelled Adobe Flash Builder 4.6 English Mac
    Restart the download.
    what the deal. I tried it with different browsers and got same result every time.

    I know TTempest already picked your solution, but I think there's some misunderstanding of what the actual issue is, or at least there appears to be as more people continue to have this problem, myself included.
    What happens is, whether I download the entire update or just the smaller one, I cannot actually update Firefox, as it I get a pop-up telling me that it's "connecting to the update server", but it never connects. I have tried several times and it always gets stuck in the same spot. On one occasion, I left it to try to connect for about 6 hours... no dice. The problem isn't download speed, it's that there's no downloading going on whatsoever. There's no firewall, virus software, etc. Nothing like that. I have no problem downloading or installing anything else, just this Firefox update. I'm on a Mac mini with OS 10.6.5. Thanks!

  • Problem with downloading Guitar Lesson 5

    Hi!
    I have problems with downloading Guitar Lesson #5. I was able to successfully able to download all other lessons, but when I try to downloadat Lesson #5, this error constantly occurs:
    "GarageBand was not able to complete download."
    I'm curious about how to download this lesson. Thank you for your help.
    Anyway, I'm using iLife '09.
    Thank you for your answer(s).

    I had problems downloading John Legend's piano lesson. It downloaded but quit while installing. And then it tried reinstallling after each bootup of Garageband. I finally found the location where Garageband wants to install these files: root>Library>Application Support>Garageband>Learn to Play>Artist Lessons. I deleted that last directory. After restarting the lessons finally installed. It seems as though Garageband created this folder again as I had expected and the .mwand file with the lesson got installed. Now everything works fine. Hope this helps you too as nobody at Apple (after sales) seemed to know how to help me.

  • Problem with downloading 2007 formats

    I have a problem with downloading 2007 format files in my application. We can upload the 2007 formats without any problem. But, When we try to download them, we are receiving a 'Page cannot be displayed' error.
    When we add the corresponding MIME-TYPES into IIS(Version 6.0) of the system(Test Environment), the problem got resolved. But there was a constraint to add the MIME-TYPES in the Production Box.
    Can you please provide any alternate solution using CF code. I am pasting my sample code that my system is using for this.

    For CF to set the MIME type for those files, it would have to be configured as a handler for those file extensions. By default, CF doesn't process requests for files other than .cfm, .cfc, etc.
    You could write a download application that uses CFCONTENT to push files to the client, but the user would have to request your CF page, which might have a URL like this:
    http://yourserver/download.cfm?file=myfile.docx
    Or, you could map those file extensions to CF, but that would be a bad idea for several reasons. Even if it wasn't a bad idea, it would be harder to change on the server than the MIME types in IIS.
    Frankly, you should fix this the right way - by having the server administrator add the correct MIME types.
    Dave Watts, CTO, Fig Leaf Software
    http://www.figleaf.com/
    http://training.figleaf.com/

  • Problem with downloading music

    I have a problem with downloading music,I tried random sites but still when I downlad it start and end up witg error
    Subject Title edited to reflect new topic.

    Are you downloading using your BlackBerry's browser?
    The best way to download music is through a computer and just transfer the files to your phone after.
    Click if you want to Thank someone. If Problem is resolved, so that others can make use of it.

Maybe you are looking for

  • Unable to use Adobe Digital Editions on IMac

    I am getting two error messages - one indicating that one or more downloads are not finished and whether I press ok or cancel, I get a message indicating an error getting licence due to server communications problem

  • Update flash player.External speakers fail.

    I use iMac OS 10.6.8. I updated today to the lastest flash player update 100.9.900.152 and since then my external speakers dont work. (Model Logitech Z-10). Also, my Click-to-plugin plugin doesnt work either although it is set to work and enabled pro

  • "Windows cannot access the specified device, path, or file, you may not have appropriate permission to access the item" Why?

    Whenever i try to access any folder on my computer(Windows 7), it tells me "Windows cannot access the specified device, path, or file, you may not have appropriate permission to access the item", this happens even for My Computer and Control Panel. I

  • Have downloaded Itunes 11.1.15 for mac but still problems.

    We upgraded the software on the mac (imac4,1 - Intel core duo 2 Ghz) to Snow Leopard 10.6.3 and then updated to 10.6.8. I have a new Nano 7th gen and when I plug it in the message says " the ipod nano cannot be used because it requires Itunes version

  • Need Help for Image Processing

    Hi everyone, my name is Davide and I am a new member. I apologize in advance for my English that It's not very good. I have to do an exercise where I have to draw a SAR(Synthetic Aperture Radar) Image. The problem is that the input image is composed