FM GUI_UPLOAD gives PC036 "Error when opening the download file".

Dear all
I'm having a problem with a particular PC.
A program which calls FM GUI_UPLOAD gives the error PC036 "Error when opening the download file".
The file we are trying to upload is a text file, with tab delimiter.
If the same user executes the same program from another PCs, it works fine.
If another user executes the program in the "problematic" PC, it gives the error.
So, the problem is PC-related.
I checked SAP GUI Codepage, and was the same as other PCs.
I cheched regional configuration, and was also the same as other PCs.
The operating  system is Windows XP, and the SAP GUI version is 7.10,  File version 7100.2.7.3077, Build 967944 , Patch level 7.
SAP version is ECC6.
I searched across forums, SAP note, and the web, but I couldn't find anything.
I would be grateful if someone could give me ideas.
Thanks in advance
Jordi

Hello. The user accounts are have same privilegies (like both are "Power users")? Also the file system are the same in both PC NTFS or FAT32 (today i'm find FAT32 in enterprise ) If NTFS may be some Domain politics are not allow to save file correctly, or space are not enough....Try check this first...Regards.

Similar Messages

  • Error when opening the download file

    Hi,
    I am downloading a file from the pc, this error pops up and I think that the format is correct. any idea what might be the issue?
    message class : PC
    thanks

    >
    Mpangib wrote:
    > Hi,
    >
    > I am downloading a file from the pc, this error pops up and I think that the format is correct. any idea what might be the issue?
    >
    > message class : PC
    >
    > thanks
    Hi,
    Please post your coding also here. 
    That would make more clear about your query.
    Rgds,
    Ramani N.

  • BYMONTHDAY is causing the error while opening the ics file in outlook when event is exported from SharePoint Calendar

    Hi All,
              I am trying to parse the SharePoint recurrence data to get the RRULE for the ics file the RRULE parsed works fine for Yearly and Daily but it causes error when opening the ics file for the Monthly and
    weekly recurrence recurrence. I have opened the ics file in the notepad and observed that the BYDAY and BYMONTHDAY causes the problem. If I remove the tag the file opens fine but with wrong recurrence pattern.
    Any help will be appreciated.
    Regards
    Ajeet
    Ajeet

    Ajeet,
    I see that this is an extremely old post, but I thought I would refresh it with a bit more info.
    I wish I had found this post a few days ago.  I realized the same thing as well.  I don't quite understand the reasoning behind requiring the by day date must be the same as  the event date.  Another thing with rrecurrence is that if
    you pick a day of the week for a recurrence (i.e. Friday), then the start date must also occur on a Friday (I am just casting it as the first Friday of the month).
    I have come into this same issue with the BYMONTHDAY.  I am currently working on trying to configure an .ICS file to allow for multiple monthly recurrences, but it appears Outlook does not support multiple days within an event (determined by trying
    to create an even in Outlook and picking the recurrence option).  It seems that you are only allowed to have an event on (for example) every Friday of each month, or the (x) day of each month.  You cannot set any other occurrences of any other day
    within the same ICS file.  Hopefully someone else will find this information useful.
    Cheers,
    Tracy

  • Error When Opening the Setup/Transactions/ Sources Window

    Hi All,
    in Oracle E-Business Suite R12 Version
    Error When Opening the Setup/Transactions/ Sources Window
    APP-FND-01388: Cannot read value for profile option FND_DEVELOPER_MODE in routine &ROUTINE.
    ORA-01403: no data found
    FRM-40735: WHEN-CREATE-RECORD trigger raised unhandled exception ORA-06502.

    Amr,
    Please see the suggested solutions in these docs.
    App-Fnd-01388: Cannot Read Value For Profile Option Fnd_developer_mode In Routine [ID 563884.1]
    R12: How To Avoid The Error Message APP-FND-01388 On Drilldown [ID 556668.1]
    R12 APXINWKB Error APP-FND-01388 When Trying To Query Invoice [ID 864195.1]
    APP-FND-01388 Cannot Read Profile Option FND_DEVELOPER_MODE In Benefits Service Center Form [ID 422182.1]
    Thanks,
    Hussein

  • Error When Opening the Transactions/Transactions Window

    Hi All,
    in Oracle E-Business Suite R12 Version
    Error When Opening the Transactions/Transactions Window
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "APPS.AR_MO_GLOBAL_CACHE", line 55
    ORA-06512: at "APPS.ARP_STANDARD", line 2912
    ORA-06512: at "APPS.ARP_GLOBAL", line 282
    FRM-40735: PRE-FORM trigger raised unhandled exception ORA-06502
    Can any body help about the error
    Thanks in advance.

    Did you go through the below notes:
    Note:125204.1, Note:153207.1 and Note:191306.1.

  • I am getting an error when opening the organizer saying online services could not be initialized?

    I just installed photoshop elements 11 on my Mac and am receiving an error when opening the organizer.  It is stating that online services could not be initialized and that I need to reinstall.  I tried that and it is still coming up.  What do I do?

    How did you uninstall it?

  • Error while opening the XML file

    Hi all,
    i'am trying to download data from internal table to XML file with root node and its
    corresponding child nodes.i have written the program in this way.
    tables: mara.
    include bcciixml_decl.
    include bcciixml_impl.
    parameters: p_matnr like mara-matnr.
    start-of-selection.
    data: piXML          type ref to if_ixml,
            pDocument      type ref to if_ixml_document,
            pStreamFactory type ref to if_ixml_stream_factory,
            pIStream       type ref to if_ixml_istream,
            pParser        type ref to if_ixml_parser,
            pNode          type ref to if_ixml_node,
            pText          type ref to if_ixml_text,
            string         type string,
            count          type i,
            index          type i,
            totalSize      type i,
            dsn(40)        type C,
            xstr           type xstring.
      types: begin of it_mara,
                matnr like mara-matnr,
                ernam like mara-ernam,
                aenam like mara-aenam,
                vpsta like mara-vpsta,
            end of it_mara.
    data: itab_mara type table of it_mara.
    select matnr ernam aenam vpsta from mara into table itab_mara where
           matnr =  p_matnr.
    types: begin of xml_line,
            data(256) type X,
          end of xml_line.
    data: xml_table type table of xml_line.
    parameters: filename like rlgrap-filename.
    pixml = cl_ixml=>create( ).
    *-- create the initial document
      pDocument = pixml->create_document( ).
      pStreamFactory = pixml->create_stream_factory( ).
    *-- create an input stream for the table
    *pIStream = pStreamFactory->create_istream_itable( table = xml_table
                                                     size  = totalSize ).
      pParser = piXML->create_parser( stream_factory = pStreamFactory
                                      istream        = pIStream
                                      document       = pDocument ).
    data: pOStream type ref to if_ixml_ostream.
    pOStream = pStreamFactory->create_ostream_itable( table = xml_table ).
    call method pDocument->render( ostream   = pOStream ).
    *-- how many bytes were written to the table?
    totalSize = pOStream->get_num_written_raw( ).
    *-- write the XML document back to the frontend
    concatenate filename '.out' into filename.
    condense filename no-gaps.
    CALL FUNCTION 'WS_DOWNLOAD'
         EXPORTING
              BIN_FILESIZE            = totalSize
              FILENAME                = filename
              FILETYPE                = 'BIN'
         TABLES
              DATA_TAB                = itab_mara
         EXCEPTIONS
              OTHERS                  = 11
    IF SY-SUBRC <> 0.
    ENDIF.
    *-- print the whole DOM tree as a list...
    pNode = pDocument.
    perform print_node using pNode.
          FORM print_node                                               *
    form print_node using value(pNode) type ref to if_ixml_node.
      data: indent      type i.
      data: pText       type ref to if_ixml_text.
      data: string      type string.
      indent  = pNode->get_height( ) * 2.
      case pnode->get_type( ).
        when if_ixml_node=>co_node_element.
          string = pNode->get_name( ).
          write: at /indent '<', string, '> '.
        when if_ixml_node=>co_node_text.
           pText ?= pNode->query_interface( ixml_iid_text ).
           if pText->ws_only( ) is initial.
            string = pNode->get_value( ).
            write: at /indent string.
           endif.
      endcase.
      pNode = pNode->get_first_child( ).
      while not pNode is initial.
         perform print_node using pNode.
         pNode = pNode->get_next( ).
      endwhile.
    endform.
    but when open the XML file which i created on the desktop it shows the following error.
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    XML document must have a top level element. Error processing resource 'file:///C:/Documents and Settings/anilda/Desktop/sim...
    how to rectify this error.
    Regards,
    satish.

    You are going to need to provide more details about this shell script file you are executing and the environment it is in. Beyond being on a Windows box, you have provided none of those details.
    If the SQL statement will execute cleanly in SQLDeveloper but not your script, then the issue lies in the script. How do you know the error is that SQL statement? Can your script even "select * from dual;" successfully?
    Also, SQLDeveloper (which I don't use) may contain its own libraries for accessing the DB. You probably should consider upgrading to a SQL*Plus client that is at least the same version or later as your database.
    Note:
    As I recall, xmlgen in 9.2 is now a synonym for dbms_xmlgen. You should change the package name accordingly [url http://docs.oracle.com/cd/B10501_01/appdev.920/a96612/d_xmlge2.htm#1010709]dbms_xmlgen.getXML

  • Error when opening table container file keydb read only

    Hi Guys,
    We are installing solution manager 4.0 on windows/sql but we are getting following error and couldnt continue the installation
    FKD-00070  Error when opening table container file C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS\keydb.xml for writing. Possible reason: "read-only"
    ERROR 2008-06-04 20:10:56.843
    FKD-00049  XML - Parser error: error: no DTD specified, can't validate in line 1, 1
    in file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\keydb.xml.
    Please help
    Regards,
    Santosh

    Further info
    keydb.xml is empty and the directory has got write access for everyone
    regards
    Edited by: Santosh Keerti on Jun 4, 2008 1:29 PM

  • When I try to open the downloaded file, a security warning restricts me from opening the file.

    I have the new Motorola Bravo which is on the Android 2.1 system. When I try to open the downloaded file, a warning appears saying "This application comes from an unknown source, and for your security only applications from trusted sources can be installed". Is the download corrupt? I would think not, but I am very confused.

    Unfortunately, AT&T disables the ability for its Android phones to install applications that aren't distributed through the Android Market.
    If this phone is not AT&T-branded, then you might be able to enable "Non-Market sources" in the "Applications" section of the Settings app.
    If it is, then you might be able to use the Android developer tool "adb" to install Firefox on your phone (search the web for instructions), or you can wait for our next beta release which should be available through the Market later this month.

  • Adobe reader XI crash and hangs when open the pdf file

    After update the adobe reader xi 11.0.10, the reader always crashes and hangs when open the pdf file. Please help me how to do.

    Ben Leung wrote:
    HThis situation is started after I clear the pop up advertisement.
    What kind of advertisement?  In Adobe Reader?  Can you post a screenshot of that: https://forums.adobe.com/thread/1070933
    Regarding the crash, can you try disabling Protected Mode through the registry: download, unzip, then run the registry script https://files.acrobat.com/a/preview/49eeb48b-07c5-4502-984c-8a25259914fa

  • Unable to open the downloaded file

    Unable to open the downloaded file:
    Hyperion Enterprise Performance Management System Foundation Services Release 11.1.2.1.0 -> for Windows x86 -> File2
    http://www.oracle.com/technetwork/middleware/performance-management/downloads/hyperion-foundation-1112-086772.html
    Error message -
    Cannot open file: it does not appear to be a valid archive. If you download this file, try downloading the file again.
    Tried many a times and used various unzipping tool.

    do not pause the download in the middle of the download.
    with some download software, you can pause/stop the download in middle and continue.it will corrupt the software.
    else in middle the due to network... it may corrupt.
    check/compare the size with the original bytes mentioned in the oracle software download index size matches your downloaded file size.
    try to download it again.
    Good Luck.

  • I get an error when I try downloading files - 8520 Curve

     I get an error when I try downloading files with my 8520 curve...and they say must contact my webmaster

    Hello !
    Could you please be more elaborative for explaining your issue?

  • Error when opening a zipped file transfred to the FTP via ABAP program

    Hi All,
    I have extracted the files from al11 and have zipped them and moved the zipped file to FTP site.
    But when I open the zipped file in FTP site, it shows the file names, but they dont look like real files(looks as text)...Even when copied the zipped file to the local pc and tried opening it the result was same.
    Note : For testing when the same zipped file is written to al11 and dowloaded from there using CG3y it works fine.
    Also created a zipped folder manualy and copied it to the FTP site and tried opening it.....It opened but displayed there are no records in it (which is incorrect), But when copied the same file back to local PC it displayed correctly.
    Please let me know hoe to resolve this issue. 
    Regards
    Jithu

    Hi Andreas Mann ,
    Thanks for your reply.
    I dont have access to choose tools in Tcode SXDB.
    Error msg: "You are not authorized to use Transaction SXDA_TOOLS"
    So can you pls Elaborate on this would be helpful in resolving the issue.
    Regards
    Jithu

  • There is an error when opening the safari page.

    There is an error when opening webpages which contain web videos. How to fix it? Thank you

    I just updated the system and reinstalled safari. The error has gone away. Thank you

  • Ora-01990 error in opening the password file

    Hi,
    I created a password file by using orapwd utility. Then later on I modified the remote_login_passwordfile in the spfile by giving the command:
    sql> alter system set remote_login_passwordfile=exclusive
    scope=spfile.
    Then it is altered. Later on I shutdown the database and When I was trying to connect to the databse again, I am getting the following errors.
    ORA-01990 error openeing the passowrd file.
    ORA-27037 unable to obtain file status
    linux error:2 no such file or directory.
    Thanks in advance.

    Hi,
    I tried that also.It is giving ora-32001 write to spfile requested but no spfile specified at startup.
    First Manually I deleted the password file and I set the remote_login_passwordfile=none in the parameter file and again I started the instance just by giving
    sql>startup open pfile='OraHome1/dbs/initRADHI.ora'
    then I tried to modify the the Remote_Login_PASSWORDFILE thru alter system set command.then it is giving the above error. then I again shutdown the DB and again I started without specifying the parameter file or spfile just saying sql>startup. Then also it is not taking the SPFILE to startup. why is so? Then also same error I am getting?
    ora-32001 write to spfile requested but no spfile at startup. can anyone of you help me.
    Thanks,
    Have a nice day.

Maybe you are looking for

  • Ios5 upgrade fails with firmware error on my iPAD (original) - how can I fix this or return to ios 4?

    I was offerered ios5 on my perfectly working iPAD yesterday - it failed and left the iPAD unusable Failure occurs during the restoring: iPAD firmware - error is 1 unknown (log below), I'm using iTunes on Windows 7 and have tried iTunes on Vista - don

  • How do I set a Finder background for all users?

    I want to set a background in Finder for a folder hosted on a server, and I want all users who connect to that folder to see the background (and, necessarily, force them into Icon view for that folder). Is there a way to do this? Server is running 10

  • IPhone 4.0

    With using iPhone 4.0 as a developer I haven't been able to talk to anyone about this but when using iAd and lets say I want to download the app it is advertising will it take me directly out of app I was in into the app store? Because wouldn't that

  • Transporting Between two Business Connector 4.7

    Hi, This Question is related to Business Connector 4.7 Sorry I don't know where to post so I am doing it here. we have two Business COnnectors one is for Dev and Prod, actually Dev is the new one we added recently, now we want developers to develop o

  • Mouse-over values format

    Hi All I'm working with Xcelsius over data from SAP BW. Is there a way to change the Mouse-over number format per a specific series? If I have 2 Y axis 1 is for percentages and I want that series to be displayed as percentages when other series will