Error in downloading

Hi,
I am doing one function module. in which i have to download the final table data in
Excel file. The name of the file should be dynamically generated (i.e as in ALV during downloading). I am using Ws_file_get  function module. But this is giving run time exception. Here is my code .Pls tell me what mistake i am doing.
FUNCTION Z_SALES_DOWNLOAD.
""Local interface:
*"  IMPORTING
*"     VALUE(V_VBELN) TYPE  VBELN_VA
*"  TABLES
*"      IT_VBAK STRUCTURE  VBAK
*"      IT_AFKO STRUCTURE  AFKO
*"      IT_VBAP STRUCTURE  VBAP
TYPES:BEGIN OF STRUCT_RESULT,
         VBELN TYPE VBELN_VA,
         POSNR TYPE POSNR_VA,
         AUDAT TYPE AUDAT,
         AUFNR TYPE AUFNR,
       END OF STRUCT_RESULT.
DATA:IT_RESULT TYPE STANDARD TABLE OF STRUCT_RESULT,
      WA_RESULT LIKE LINE OF IT_RESULT.
TYPES: BEGIN OF download_types,
        s1(20) ,
        s2(20) ,
        s3(20) ,
        s4(20) ,
       END OF download_types.
DATA: itab_download TYPE STANDARD TABLE OF download_types,
      wa_download LIKE LINE OF itab_download.
*CALL FUNCTION 'F4_FILENAME'
EXPORTING
PROGRAM_NAME        = SYST-CPROG
  DYNPRO_NUMBER       = SYST-DYNNR
  FIELD_NAME          = 'V_FILE'
IMPORTING
FILE_NAME           = 'V_FILE'
DATA:v_file  LIKE rlgrap-filename ."sgarg
*v_file = 'C:\Documents and Settings\DamarDPR\Desktop\sales.xls'.
  IF NOT V_VBELN IS INITIAL.
    SELECT * FROM VBAK INTO TABLE IT_VBAK WHERE VBELN = V_VBELN.
    IF NOT IT_VBAK[] IS INITIAL.
      SELECT * FROM AFKO INTO TABLE IT_AFKO FOR ALL ENTRIES IN IT_VBAK
      WHERE AUFNR = IT_VBAK-AUFNR.
      SELECT * FROM VBAP INTO TABLE IT_VBAP FOR ALL ENTRIES IN IT_VBAK
      WHERE VBELN = IT_VBAK-VBELN.
    ENDIF.
    LOOP AT IT_VBAK.
    READ TABLE IT_VBAK WITH KEY IT_VBAK-VBELN.
    MOVE IT_VBAK-VBELN TO WA_RESULT-VBELN.
    MOVE IT_VBAK-AUDAT TO WA_RESULT-AUDAT.
  MODIFY  TABLE IT_RESULT FROM WA_RESULT.
   CLEAR WA_RESULT.
   ENDLOOP.
    READ TABLE IT_VBAP WITH KEY IT_VBAK-VBELN.
    MOVE IT_VBAP-POSNR TO WA_RESULT-POSNR.
   LOOP AT IT_AFKO.
    READ TABLE IT_AFKO WITH KEY IT_VBAK-VBELN.
    MOVE IT_VBAK-AUFNR TO WA_RESULT-AUFNR.
   MODIFY  TABLE IT_RESULT FROM WA_RESULT.
   CLEAR WA_RESULT.
   ENDLOOP.
   LOOP AT IT_VBAP.
    APPEND WA_RESULT TO IT_RESULT.
   MODIFY  TABLE IT_RESULT FROM WA_RESULT.
    CLEAR WA_RESULT.
    ENDLOOP.
  ENDIF.
*loop at itab_download into wa_download.
wa_download-s1 = 'SalesOrder'.
wa_download-s2 = 'Item'.
wa_download-s3 = 'DueDate'.
wa_download-s4 = 'ProductionOrder'.
insert wa_download into table itab_download.
clear wa_download.
*endloop.
loop at it_result into wa_result.
  wa_download-s1 = wa_result-vbeln.
  wa_download-s2 = wa_result-posnr.
  wa_download-s3 = wa_result-audat.
  wa_download-s4 = wa_result-aufnr.
append wa_download to itab_download.
clear wa_download.
endloop.
******sandeep****
CALL FUNCTION 'WS_FILENAME_GET'
EXPORTING
  DEF_FILENAME           = ' '
  DEF_PATH               = ' '
  MASK                   = ' '
  MODE                   = ' '
  TITLE                  = ' '
IMPORTING
   FILENAME               =  v_file
  RC                     =
EXCEPTIONS
  INV_WINSYS             = 1
  NO_BATCH               = 2
  SELECTION_CANCEL       = 3
  SELECTION_ERROR        = 4
  OTHERS                 = 5
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
******sandeep**
CALL FUNCTION 'WS_DOWNLOAD'
  EXPORTING
   BIN_FILESIZE                  = ' '
   CODEPAGE                      = ' '
     FILENAME                      = v_file
     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                      = itab_download
  FIELDNAMES                      = itab_download
EXCEPTIONS
   FILE_OPEN_ERROR               = 1
   FILE_WRITE_ERROR              = 2
   INVALID_FILESIZE              = 3
   INVALID_TYPE                  = 4
   NO_BATCH                      = 5
   UNKNOWN_ERROR                 = 6
   INVALID_TABLE_WIDTH           = 7
   GUI_REFUSE_FILETRANSFER       = 8
   CUSTOMER_ERROR                = 9
   OTHERS                        = 10
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
ENDFUNCTION.

Hi Sudheer,
Here i am doing paste of dump.
Information on where termination occurred                                                                               
The termination occurred in the ABAP/4 prog
"WS_FILENAME_GET".                        
The main program was "RS_TESTFRAME_CALL ".
The termination occurred in line 127      
of the source code of program "LGRAPU50 " (
                                                                                Source code extract                                                                               
000970     LEN = STRLEN( TEXT ).          
000980     WRITE ',' TO TEXT+LEN.         
000990     LEN = STRLEN( TEXT ).          
001000     WRITE DEF_FILENAME TO TEXT+LEN.
001010     LEN = STRLEN( TEXT ).          
001020   * MASK = ',All Files,.,Some File
001030     WRITE MASK TO TEXT+LEN.        
001040                                    
001050     PERFORM GR_SEND_C USING TEXT.  
001060     CLEAR RC.                      
001070                                    
001080     CALL FUNCTION 'GRAPH_RECEIVE'.                                           
001090     CALL FUNCTION 'GRAPH_GET_PARAM'                                          
001100          IMPORTING                                                           
001110               RBUFF = RTEXT.             "// RC=<NUL><xxx>                   
001120                                                                               
001130     LEN = STRLEN( RTEXT ) - 4.           "// Skip 'RC=<NUL>'                 
001140     IF LEN GT 0.                                                             
001150       ASSIGN RTEXT+3(LEN) TO <F>.                                            
001160       IF <F> CA HEXNUL.                  "// only until <NUL>                
001170         ASSIGN <F>(SY-FDPOS) TO <F>.                                         
001180       ENDIF.                                                                 
001190       FILENAME = <F>.                                                        
001200       DATA: HEAD(2).                                                         
001210       HEAD = <F>.                                                            
001220       IF HEAD = '#1'.                    "// CANCEL                          
001230         CLEAR RC.                                                            
001240         CLEAR FILENAME.                                                      
001250         PERFORM GR_SEND USING 'K' 'QURY'.                                    
001260         CALL FUNCTION 'GRAPH_RECEIVE'.   "// just wait.                      
     >         RAISE SELECTION_CANCEL.                                              
001280       ELSEif HEAD = '#2'.                "// SELECTION ERROR                 
001290         CLEAR RC.                                                            
001300         CLEAR FILENAME.                                                      
001310         PERFORM GR_SEND USING 'K' 'QURY'.                                    
001320         CALL FUNCTION 'GRAPH_RECEIVE'.   "// just wait.                      
001330         RAISE SELECTION_ERROR.                                               
001340       else.                                                                  
001350   *     GL 24.1.1996                                                         
001360   *     check if selected file fits in Return-Parameter                      
001370         IF FILENAME = <F>.               "// long enough                     
001380           RC = '0'.                                                          
001390         ELSE.                            "// not long enough                                                                               
Pls look into this.

Similar Messages

  • Error while downloading. message on E71 GPS USA Ma...

    “Error while downloading” message on E71 with updated GPS USA Maps
    I’m sure I’m not the only one having this problem but I recently updated my maps on my Straight Talk Nokia E71. The phone says I have map download V 3.03 10wk bo4 Mw Open GL LM MN, Map version 0.1.25.114.and I’m using Nokia Ovi Suite 2.2.1.23. After I installed V3.03, I installed it and download the 1.46GB USA map file and the three turn by turn files. But when I first started the GPS app I started getting the following error “Error while downloading”(This is on phone only)
    I have tried to factory reset the phone, re-format the 8GB memory card, remove City data and GF files and even unloaded OVI Suite and reload it. But every time I select GPS app and start to find places or my position, I get "Error while downloading" message. I’m new to this phone and didn’t get a respectable book from Straight Talk. So I don’t know much about this phone or Nokia OS. What is this error and how do I fix it. Also when I try to sync from the phone I get the response "system error". Ovi suite on the PC says I have downloaded all the USA maps and English voice  with street names. Please help I’m at a lost.
    Computer specs
    I am running Win-Vista, with a Broadband connection. 3 GB Ram, 2 gig Pentium dual core.
    Tran’s flash card has plenty room left on card over 5 gigs left.
    If I need to delete a file on the phone please tell me the exact file name because I’m not sure which one to remove from the apps folder.
    Solved!
    Go to Solution.

    @Action_Jackson
    Welcome to the forum!
    Whilst easy for me to say as keep very little data on device, I would suggest backup essential data then delete E:\cities + ,qf file followed by resetting device to "Out of box" state by keying in #7370# then 12345 (default Nokia lock code unless altered by yourself). At this point you would need to open OVI Maps application on device to re-initialise application and re-define necessary folder structure on memory card for device to be recognised by OVI Suite > Maps to re-download your regional mapping.
    Happy to have helped forum with a Support Ratio = 42.5

  • Error While downloading the file A server Error has occurred, please try again later Downloading Yahoo mail Application Attachments  Trying to download My Photos and movie 3 items so i can delete them all

    I have icloud and a new iPhone5 ! They work good , took pictures and a few short movies, plugged in my phone to my iMac transfered Items to iPhoto then inported items to iMovie. when getting to know what i was doing i decided to delete pictures and movies i no longer wanted. when i looked for a few missing items i opend Finder and there some where buyt i had already trashed them and deleted the doubles. Still could not find missing pictures and movies 3 items and today after calling yahoo about a different complant with sending feed back for Yahoo mail Applications login . i opened up Attachments Not the Large Attachments just Attachments and there were the 3 items i had been hunting for to Trash and delete. the mail Attachments file does not have the Option to delet Files and photos and movies. When i tried to Download the 3 items a window shows up that says Error While Downloading the Files, A Server Error has occured, please Try Again later. nothing works how do i remove the Trapped photo and movie Blank Files and trash them?  Onece they get into my downloads i can do something with them as i understand.    That part of it kind of keeps me in Question also because why should i have to down load my own files of Attachments / Pictures and movies if they are comming from my iMac?    How much better is iLife11 then iPhoto08 and iMovie08 .  Thanks Greg

    Hello,
    Thank you for your post.
    This is a quick note to let you know that we are performing research on this issue.
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

  • Error Message downloading apps

    This is a two day old issue with my phone.  Everytime I try to download an application off the market it says "Download error.  Download was unsuccessful, please try again."  I have my background data enabled, I dunno what to check as far as my settings are concerned.  Anyone have input?

    Hi korriwood,
    Thank you Ann154 for the steps provided. Korriwood, were you able to follow the steps provided by Ann154 to see if that resolved the issue for you? If not, please complete the steps and try again. In addition, I want to ask if you have tried a soft reset of the device? Here are the steps to complete this process.
    http://support.verizonwireless.com/clc/devices/knowledge_base.html?id=39334&sayt=soft
    Once completing these steps, please try again to access the Android Market.
    I trust this information is helpful for you.
    Thanks and have a good day!
    Christina B
    VZW Support
    Follow us on Twitter @VZWSupport

  • HT5642 Unable to download app this time error while downloading app please help!!!

    when i download some app from apps store i get the following error
    "Unable to download app this time error while downloading app" please help!!!
    i ve tried these Things but
    didnt workout yet
    1) i tried hard reset
    2)i tried logout/login Itune & appstore
    3)Connected to pc and rest setting Network and Full Rest
    all of no use... i dont want to update my softwre from IOS 6.0
    Plx help!1

    Hey Prahaladvatsan,
    Thanks for the question. If I understand correctly, there is a blank app icon on the home screen. It looks like you have already done some troubleshooting. I would recommend that you read these articles, they may be helpful in troubleshooting your issue.
    Restart or reset your iPhone, iPad, or iPod touch - Apple Support
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    Thanks for using Apple Support Communities.
    Have a good one,
    Mario

  • Error while downloading data into excel file.

    Hi,
        I have a requirement to download data available in xstring to excel file.
    I have a RFC which has export parameter 'file_data' of type xstring. When i call RFC
    from web dynpro abap application it gives data out pout in xstring format.
    I am opening excel file using that xstring data as below
    cl_wd_runtime_services=>attach_file_to_response(
    i_filename = 'file.xls'
    i_content = ls_data_source-data_source   ***[xstring data from RFC]
    i_mime_type = 'x-excel/application'
    i_in_new_window = abap_true ).
    But excel file not coming in correct format. its  giving an error while download
    excel file
    Error is
          " the file you are trying to open , 'file[1].xls', is in a different format than
    specified by the file extension. Verify that the file is not corrupted and is from
    a trusted source before opening the file. Do you want to open the file now? "
    If i click on 'YES' button file opening but not in proper excel format. Data is coming
    in tab delimiter format in excel file.
    Please suggest any solution for this problem.
    Thanks,
    Venkat.

    Hi Thomas,
    Following is the logic implemented in RFC which is giving XSTRING as export parameter
    STEP1      create a dynamic internal table
               Create field catalog for the table   using LVC_FIELDCATALOG_MERGE
                   CALL METHOD cl_alv_table_create=>create_dynamic_table
                        EXPORTING
                           it_fieldcatalog = it_fieldcat
                         IMPORTING
                           ep_table        = dyn_table.
                  CREATE  EXCEL SHEET BY SENDING FIELD CATALOG AND DATA TAB
    STEP2 # Convert text table to xstring.
            CALL FUNCTION 'SCMS_TEXT_TO_XSTRING'
              IMPORTING
                buffer   = l_content
              TABLES
                text_tab = lt_data_tab
              EXCEPTIONS
                failed   = 1
                OTHERS   = 2.
    STEP3  *# Psss Data to Netweaver
              PERFORM pass_data_to_nw USING is_import
                                      CHANGING es_attachment_metadata.

  • Html error while downloading table entries to Excel.

    Hi,
    I am getting an error while downloading table entries from webdynpro to excel. After some entries below error script comes and  this is not comming all the times.
    Is this because of large size?Can anyone please suggest me on this?
    <u>Here is the dump:</u>
    [code]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>                                   
    <head>                                   
         <title>Error Report</title>                              
    <style>                                   
    td {font-family : Arial, Tahoma, Helvetica, sans-serif; font-size : 14px;}                                   
    A:link                                    
    A:visited                                    
    A:active                                    
    </style>                                   
    </head>                                   
    <body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" rightmargin="0">                                   
    <table width="100%" cellspacing="0" cellpadding="0" border="0" align="left" height="75">                                   
    <tr bgcolor="#FFFFFF">     
        <td align="left" colspan="2" height="48"><font face="Arial, Verdana, Helvetica" size="4" color="#666666"><b>  500   Internal Server Error</b></font></td>     
    </tr>     
    <tr bgcolor="#3F73A3">     
        <td height="23" width="84"><img width=1 height=1 border=0 alt=""></td>     
        <td height="23"><img width=1 height=1 border=0 alt=""></td>     
        <td align="right" height="23"><font face="Arial, Verdana, Helvetica" size="2" color="#FFFFFF"><b>SAP J2EE Engine/6.40 </b></font></td>     
    </tr>     
    <tr bgcolor="#9DCDFD">     
        <td height="4" colspan="3"><img width=1 height=1 border=0 alt=""></td>     
    </tr>     
    </table>     
    <br><br><br><br><br><br>     
    <p><font face="Arial, Verdana, Helvetica" size="3" color="#000000"><b>  Application error occurs during processing the request.</b></font></p>     
    <p><font face="Arial, Verdana, Helvetica" size="2" color="#000000"><table><tr><td valign="top"><b> Details:</b></td><td valign="top"><PRE><pre>com.sap.engine.services.servlets_jsp.server.exceptions.WebIllegalStateException: The stream has already been committed.     
         at com.sap.engine.services.servlets_jsp.server.runtime.client.HttpServletResponseFacade.sendError(HttpServletResponseFacade.java:792)
         at com.sap.engine.services.servlets_jsp.server.runtime.client.HttpServletResponseFacade.sendError(HttpServletResponseFacade.java:780)
         at com.sap.engine.services.servlets_jsp.server.runtime.client.HttpServletResponseFacade.sendError(HttpServletResponseFacade.java:768)
         at com.sap.tc.webdynpro.serverimpl.core.url.WebDynproExchangeHandler.responseCachedWebResource(WebDynproExchangeHandler.java:98)
         at com.sap.tc.webdynpro.serverimpl.core.url.WebDynproExchangeHandler.doExchange(WebDynproExchangeHandler.java:189)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doExchangeProcessing(DispatcherServlet.java:164)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:119)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:391)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:265)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:345)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:323)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:865)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:240)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    </pre></PRE></font></td></tr></table></font></p>     
    </body>     
    </html>[/code]
    Thanks,
    Sanjeev

    Hallo Sanjeev,
    How do you exactly "download the table entries from Web Dynpro to Excel?"
    I wrote a new <b>Wiki Code Tutorial </b>which demonstrates how to download an Excel file from a Web Dynpro <i>Table </i>UI element <b>on-demand</b>. In this scenario the resource gets re-created on every request. The solution is based on re-initializing the context with a new  0-byte resource object within the calculated context attribute getter method.
    See <a href="https://wiki.sdn.sap.com/wiki/display/Snippets/ExportingTableDatainWebDynproJava-SAPNetWeaver04s">Exporting Table Data in Web Dynpro Java - SAP NetWeaver 04s</a>
    Regards, Bertram

  • While updating my iphone 3gs i always get a message that an error occured downloading iOS 5.1.1. plz help me, while updating my iphone 3gs i always get a message that an error occured downloading iOS 5.1.1. plz help me

    while updating my iphone 3gs i always get a message that an error occured downloading iOS 5.1.1. plz help me, while updating my iphone 3gs i always get a message that an error occured downloading iOS 5.1.1. plz help me

    We dont know yet if he is doing it from the phone itself!
    If you do from the phone try from iTunes and vice versa.

  • Firefox crashes whenever i want to install any addon or download any file. Some times i am receiving error while downloading any file like "could not be saved, because you cannot change the contents of that folder"

    I am the user of latest firefox 3.6.6 browser. I am getting problems of frequent crashes whenever i tries to install any addon. The crashes also occures whenever i want to download any file.
    I am also receiving errors while downloading any file like:
    "C:\Users\****\AppData\Local\Temp\******.001.part could not be saved, because you cannot change the contents of that folder.
    Change the folder properties and try again, or try saving in a different location. I already changed it many many times but still the same problem."
    Adobe flash palyer is also giving problems of not responding. I am using updated version of it already. Java is also updated.
    I already uninstalled firefox compeletly and re installed it many many times but still the same problem. I also scanned my computer with avira and malware bytes' Anti malware and got no dection. Please ractify this problem ASAP lest my profession will suffer.
    == Crash ID(s) ==
    b7f518f2-8d86-41ca-8bab-aee632100709; 1d790e10-d8eb-4904-98c9-94bc62100708; f042d319-b9f8-42ed-a8cb-57c7d2100708

    Please help.
    It is getting worse
    Adobe flash player is crashing. I already uninstalled and re installed the latest ver. Also it is hanging randomly.
    Please help.

  • Error when downloading Netweaver developer studio

    HI,
    I was trying to Download Netweaver developer studio from SAP SDN SIte itself, Under Downloads-> SAP Netweaver Composite Envirornment
    But I am getting the below error while downloading
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.sap.sdn.folder.sdn/com.sap.sdn.folder.application/com.sap.sdn.folder.roles/com.sap.sdn.folder.navigationroles/com.sap.sdn.folder.sdn/com.sap.sdn.role.anonymous/com.sap.sdn.tln.workset.sdnhome/com.sap.sdn.app.workset.additionalobj/com.sap.sdn.app.iview.softwaredownload
    Component Name : com.sap.sdn.softwaredownload.SoftwareDownload
    com.sap.sdn.reporting.Reporter.
    Exception id: 02:53_13/11/08_1022_3414951
    See the details for the exception ID in the log file
    Regards,
    Varun

    hi
    Try out this link for installation.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/307e90ef-0a65-2a10-e48e-c5a888c81537
    Update via this link.
    https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/ce/
    I hope this would help you.
    Thanx.

  • Error While Downloading "SAP NetWeaver 7.0 JavaTrials"  from SDN

    Hi All,
    I was trying to download "SAP NetWeaver 7.0 JavaTrials"  from SDN , a sneak preview version of EP7.0.
    i got this error while downloading it ...
    "Invalid Archive Directory" and because of that i was not able to save the file.
    Can anyone guide me what is the reason for this and whats the solution to it.
    Regards,
    Vinoth.M

    Hi,
    The file type is *.tgz instead of .rar.Also im not able to download the entire file,when i starts downloading it completes with no time and when i try to open im getting the error "Invalid Archive Directory".Does this appears because of the file gets corrupted??
    Thanks,
    Vinoth.M

  • Error while downloading Detroit MI W2 Magnetic media File.

    Hello Guys,
    We are getting a Run time error while downloading a w2 magnetic media file for MI, and its only for a particular tax company.
    Any help is appreciated.
    ST22 Dump:
    Runtime Errors         CREATE_DATA_ILLEGAL_LENGTH
    Exception              CX_SY_CREATE_DATA_ERROR
    Date and Time          01/10/2011 13:58:44
    Short text
    CREATE DATA: Illegal value for the length of an object of the type "X"
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "RPCTRTU0_ALV" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_CREATE_DATA_ERROR', was not
    caught in
    procedure "DOWNLOAD_CTXFU0" "(FORM)", nor was it propagated by a RAISING
    clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    A data object of the type "X" with length 0 was to be created using
    CREATE DATA. The value 0 is not within the allowed range.
    Allowed range for the length specification:
    Typ C, N, X: 1 .. 65535
    TYP P:       1 .. 16
    Thanks,
    Krish

    Hello Mr. Krish,
    I believe that this error has been corrected because you had to send the W2 form .
    But this issue was caused due to the fact that your file HR_F_W2_TAPE_DEC does not have a header line. The note 1553756 was delivered to correct this dump.
    Best Regards,
    Jaime

  • HT4943 Error during download - I keep getting this error message when installing or updating apps

    I subscribed to wired magazine and I am trying to download the first mag, however I keep getting an error message stating "error during download, try again later". I also get an error message when trying to resume paused updating of apps. I've tried turning ipad2 off and then on again but this doesn't  work. Can anyone help?

    There are all basic troubleshooting steps that have worked for other users in the past that were having problems downloading and updating apps. YMMV .....
    Make sure that you do not have a stalled download in iTunes - a song or podcast .... if you have a download in there that did not finish, complete that one first. Only one thing can download at a time on the iPad so that could be what is causing the problem.
    If that doesn't work - sign out of your account, restart the iPad and then sign in again.
    Settings>Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>Store>Sign in and then try to update again. Tap one waiting icon only if necessary to start the download stream.
    You can also try deleting the waiting icons - tap and hold down on an icon until it wiggles - the tap the X on the icon to delete it. Then try to download again.
    You can try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your app preferences and device settings again.

  • Error while downloading attachments more than 10MB

    Hi,
    We are getting the below error when downloading the attachments of size > 10mb.
    Client details:
    Java version: 1.6.0_05
    OS: SunOS
    OS version: 5.10
    OS architecture: sparc
    java.lang.OutOfMemoryError: Java heap space
         at java.util.Arrays.copyOf(Arrays.java:2786)
         at java.io.ByteArrayOutputStream.toByteArray(ByteArrayOutputStream.java:133)
         at com.sun.xml.internal.messaging.saaj.client.p2p.HttpSOAPConnection.readFully(HttpSOAPConnection.java:636)
         at com.sun.xml.internal.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOAPConnection.java:379)
         at com.sun.xml.internal.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedPost.run(HttpSOAPConnection.java:169)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.xml.internal.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOAPConnection.java:140)
         at com.sun.sunit.webservice.soap.SOAPClient.invokeService(SOAPClient.java:94)
         at com.sun.sunit.webservice.soap.SOAPClient.invokeService(SOAPClient.java:69)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.sunit.util.MethodUtil.invokeMethod(MethodUtil.java:74)
         at com.sun.sunit.util.MethodUtil.invokeMethod(MethodUtil.java:38)
         at java.lang.Thread.run(Thread.java:619)
    Any help would be greatly appreciated.

    As said, in this case it's apparently a bug / inefficiently written code in SAAJ, report it.
    All what you can do besides reporting is to upgrade the SOAP implementation to a newer version or replace it by another -more robust- SOAP implementation.
    This is by the way in no way related to servlets.

  • Error in downloading itunes, all the .exe files turn into the itunes icon. I had to removed itunes.

    Error in downloading itunes in windows, all the .exe files turn into the itunes icon

    Download the lnk registry fix from www.sevenforums.com/tutorials/19449-default-file-type-associations-restore.html. Reinstall iTunes. Should you find that all of your desktop shortcuts have again turned into links to the iTunes application apply the patch.
    For further advice see Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Error in downloading but song is no longer available

    Error in downloading a free song that was only available for 24hrs...how can I delete it

    Contacted apple care. Apparently servers were down.

Maybe you are looking for

  • Since updating to Yosemite my audio is not working?

    Hey, Every since updating to Yosemite on my MacBook Pro (Early 2011 model) my audio/sound has been very intermittent.  It stops working after my computer goes to sleep and needs a hard restart to get it back. A few times I was able to kill the proces

  • Issue with substitution variable with @MDSHIFT in BR in Calc Manager

    Hi Experts, We have a BR in EAS which is working fine. and exported to Calcmanager, now while validation it is giving error "@BaseScenario" is not found. the code is @MDSHIFT("LFLSalesIncVAT_GBP_C_DHP"->&BaseScenario->"Final"->"CD_FinalPlanPL",-1,"Ye

  • Beans loses data stored

    Hello, i'm developing a java application in EP 5.0 and i'm using Beans and jsp. When i load the iview, there are 2 dropdown list box filled with the data stored in the beans. These beans are filled throught a BAPI.When i make a selection in the dropd

  • Regarding webutil in forms9

    Hi, I have instaled webultils in my forms. My formsweb.cfg file : [webutil] webUtilArchive=\\Oradb1\rst_app\WebUtil\webutil.jar, \\Oradb1\rst_app\WebUtil\jacob.jar envFile=webutil.env WebUtilLogging=off WebUtilLoggingDetail=normal WebUtilErrorMode=Al

  • Editable ALV Using SALV Class.

    Hi Experts, I need to make ALV Editable using SALV Class only. Thanks in Advance Regards, Ankit. Moderator message: please do some research before asking. Edited by: Thomas Zloch on Feb 25, 2011 1:47 PM