Error: File could not be opened.

When managing the following and clicking on "Export To Excel", the following error occurs:
"Error: File could not be opened."
The same error occurs when doing the following:
- Trying to export Control Tables
- Trying to export Import Formats
- Trying to export Import Groups
- Trying to export Logic Accounts
- Trying to export Logic Groups
Does anyone please have any suggestions on how to fix this? The odd thing is that these files are actually created and can be opened fine!
The error log is as follows:
** Begin FDM Runtime Error Log Entry [2012-03-27 14:14:25] **
ERROR:
Code............................................. 3002
Description...................................... File could not be opened.
\\xxxxxxx\c$\fdmdata\xxxxxxx\Outbox\ExcelFiles\Periods99008.xlsx
Procedure........................................ clsAppServer.fFileGetStream
Component........................................ upsAppSv
Version.......................................... 1112
Thread........................................... 14368
IDENTIFICATION:
User............................................. xxxxxxx
Computer Name.................................... xxxxxxx
App Name......................................... xxxxxxx
Client App....................................... WebClient
CONNECTION:
Provider......................................... SQLOLEDB
Data Server...................................... xxxxxxx
Database Name.................................... xxxxxxx
Trusted Connect.................................. False
Connect Status.. Connection Open
GLOBALS:
Location......................................... Sample
Location ID...................................... 748
Location Seg..................................... 2
Category......................................... WLCat
Category ID...................................... 12
Period........................................... Jan - 2012
Period ID........................................ 31/01/2012
POV Local........................................ False
Language......................................... 1033
User Level....................................... 1
All Partitions................................... True
Is Auditor....................................... False
** Begin FDM Runtime Error Log Entry [2012-03-27 14:19:30] **
ERROR:
Code............................................. 3002
Description...................................... File could not be opened.
\\xxxxxxx\c$\fdmdata\xxxxxxx\Outbox\ExcelFiles\ImportGroups43950.xlsx
Procedure........................................ clsAppServer.fFileGetStream
Component........................................ upsAppSv
Version.......................................... 1112
Thread........................................... 11884
IDENTIFICATION:
User............................................. xxxxxxx
Computer Name.................................... xxxxxxx
App Name......................................... xxxxxxx
Client App....................................... WebClient
CONNECTION:
Provider......................................... SQLOLEDB
Data Server...................................... xxxxxxx
Database Name.................................... xxxxxxx
Trusted Connect.................................. False
Connect Status.. Connection Open
GLOBALS:
Location......................................... Sample
Location ID...................................... 748
Location Seg..................................... 2
Category......................................... WLCat
Category ID...................................... 12
Period........................................... Jan - 2012
Period ID........................................ 31/01/2012
POV Local........................................ False
Language......................................... 1033
User Level....................................... 1
All Partitions................................... True
Is Auditor....................................... False
** Begin FDM Runtime Error Log Entry [2012-03-27 14:30:20] **
ERROR:
Code............................................. 3002
Description...................................... File could not be opened.
\\xxxxxxx\c$\fdmdata\xxxxxxx\Outbox\ExcelFiles\ImportFields79048.xlsx
Procedure........................................ clsAppServer.fFileGetStream
Component........................................ upsAppSv
Version.......................................... 1112
Thread........................................... 15604
IDENTIFICATION:
User............................................. xxxxxxx
Computer Name.................................... xxxxxxx
App Name......................................... xxxxxxx
Client App....................................... WebClient
CONNECTION:
Provider......................................... SQLOLEDB
Data Server...................................... xxxxxxx
Database Name.................................... xxxxxxx
Trusted Connect.................................. False
Connect Status.. Connection Open
GLOBALS:
Location......................................... Sample
Location ID...................................... 748
Location Seg..................................... 2
Category......................................... WLCat
Category ID...................................... 12
Period........................................... Jan - 2012
Period ID........................................ 31/01/2012
POV Local........................................ False
Language......................................... 1033
User Level....................................... 1
All Partitions................................... True
Is Auditor....................................... False
** Begin FDM Runtime Error Log Entry [2012-03-27 14:32:51] **
ERROR:
Code............................................. 3002
Description...................................... File could not be opened.
\\xxxxxxx\c$\fdmdata\xxxxxxx\Outbox\ExcelFiles\LogicGroups92995.xlsx
Procedure........................................ clsAppServer.fFileGetStream
Component........................................ upsAppSv
Version.......................................... 1112
Thread........................................... 13052
IDENTIFICATION:
User............................................. xxxxxxx
Computer Name.................................... xxxxxxx
App Name......................................... xxxxxxx
Client App....................................... WebClient
CONNECTION:
Provider......................................... SQLOLEDB
Data Server...................................... xxxxxxx
Database Name.................................... xxxxxxx
Trusted Connect.................................. False
Connect Status.. Connection Open
GLOBALS:
Location......................................... Sample
Location ID...................................... 748
Location Seg..................................... 2
Category......................................... WLCat
Category ID...................................... 12
Period........................................... Jan - 2012
Period ID........................................ 31/01/2012
POV Local........................................ False
Language......................................... 1033
User Level....................................... 1
All Partitions................................... True
Is Auditor....................................... False
** Begin FDM Runtime Error Log Entry [2012-03-27 14:33:05] **
ERROR:
Code............................................. 3002
Description...................................... File could not be opened.
\\xxxxxxx\c$\fdmdata\xxxxxxx\Outbox\ExcelFiles\LogicAccounts70086.xlsx
Procedure........................................ clsAppServer.fFileGetStream
Component........................................ upsAppSv
Version.......................................... 1112
Thread........................................... 15980
IDENTIFICATION:
User............................................. xxxxxxx
Computer Name.................................... xxxxxxx
App Name......................................... xxxxxxx
Client App....................................... WebClient
CONNECTION:
Provider......................................... SQLOLEDB
Data Server...................................... xxxxxxx
Database Name.................................... xxxxxxx
Trusted Connect.................................. False
Connect Status.. Connection Open
GLOBALS:
Location......................................... Sample
Location ID...................................... 748
Location Seg..................................... 2
Category......................................... WLCat
Category ID...................................... 12
Period........................................... Jan - 2012
Period ID........................................ 31/01/2012
POV Local........................................ False
Language......................................... 1033
User Level....................................... 1
All Partitions................................... True
Is Auditor....................................... False

Many thanks for your suggestions.
- MS Office Excel 2007 SP3 is installed on the server. The Excel files are created and can be opened manually fine on the server (by going to C:\FDMData\Outbox\ExcelFiles). But FDM raises the above error whenever one clicks on the "Export To Excel" button and does nothing more.
- The admins here have apparently now added the C:\Windows\SysWOW64\config\systemprofile\Desktop folder (the FDM app server is 64-bit) but it does not appear to have made a difference. Will the FDM service account need privileges to this location?
- Apparently the FDM service account has privileges to the FDMData\Outbox\ExcelFiles location, but I will double check this...

Similar Messages

  • How to resolve the error "File could not open" in AL11?

    Hi Friends,
    When I am going to write a file via DATASET.
    But it's showing me a error"File Could not Found"?
    And I am unable to check my fiel at AL11.
    Please suggest me the solutions.
    Regards
    Ricky

    Hi,
    Try this code
    TYPES : BEGIN OF ty_emp,
    empno(2) TYPE c,
    empid(10) TYPE c,
    empname(3) TYPE c,
    END OF ty_emp.
    DATA : it_emp TYPE TABLE OF ty_emp,
    wa_emp TYPE ty_emp.
    DATA : pbk TYPE string.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS : p_file TYPE rlgrap-filename default 'D:\EMP.TXT'.
    PARAMETERS : p_asfile TYPE rlgrap-filename default 'EMP'.
    SELECTION-SCREEN END OF BLOCK b1.
    pbk = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                      = pbk
      FILETYPE                      = 'ASC'
    has_field_separator           = ' '
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
        TABLES
          data_tab                      = it_emp
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      NO_AUTHORITY                  = 6
      UNKNOWN_ERROR                 = 7
      BAD_DATA_FORMAT               = 8
      HEADER_NOT_ALLOWED            = 9
      SEPARATOR_NOT_ALLOWED         = 10
      HEADER_TOO_LONG               = 11
      UNKNOWN_DP_ERROR              = 12
      ACCESS_DENIED                 = 13
      DP_OUT_OF_MEMORY              = 14
      DISK_FULL                     = 15
      DP_TIMEOUT                    = 16
      OTHERS                        = 17
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    OPEN DATASET p_asfile FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
      IF sy-subrc <> 0.
        EXIT.
      ENDIF.
      LOOP AT it_emp INTO wa_emp.
        TRANSFER wa_emp TO p_asfile.
      ENDLOOP.
      CLOSE DATASET p_asfile.
    ==============================================
    Regards,
    Krrishna

  • System synchronization failed--Protocol Error: Handheld file could not be opened. (4004)

    I have reviewed Palm Support Page and the forums and recognize this is an old story but the solutions offered haven't worked for me.  I have had my Tungsten 2E for over a year and an earlier version before that.  It has been working well for me until I had a problem (out of the blue) with the HotSync.  I reinstalled the Palm software after checking cables, etc.  I was able to relink and get updated info from my handheld to the desktop but with a few blips in DocstoGo where I had to delete documents and add them back to the desktop and resync with the handheld.  All the info is on the handheld but see the log below to see the message "System synchronization failed".  A suggestion by other users is to delete the "PmTraceDatabase" to file C:\Program Files\Palm\N\Backup\PmTraceDatabase.PDB but I cannot find the named file on my desktop program files for Palm. 
    Does anyone have an explanation other than "live with it" since I believe I'm getting all my info synced?
    HotSync operation started 02/14/08 09:26:07
    OK Calendar
    OK Contacts
    OK Tasks
    OK Memos
    OK Expense
    OK Note Pad
    OK Documents To Go
    OK Photos
       - Installed file: C:\Program Files\Palm\N\Install\DocsToGo.prc
       - Installed file: C:\Program Files\Palm\N\Install\GraphicsLibrary.prc
       - Installed file: C:\Program Files\Palm\N\Install\SheetToGo.prc
       - Installed file: C:\Program Files\Palm\N\Install\SS_P2P.prc
       - Installed file: C:\Program Files\Palm\N\Install\WordToGo.prc
       - Installed file: C:\Program Files\Palm\N\Install\WP_P2P.prc
       - Installed file: C:\Program Files\Palm\N\Install\WTGFontPackage.pdb
    OK Install
       -- Backing up db psysLaunchDB to file C:\Program Files\Palm\N\Backup\psysLaunchDB.PDB
       -- Backing up db PmTraceDatabase to file C:\Program Files\Palm\N\Backup\PmTraceDatabase.PDB
    System synchronization failed
    Protocol Error: Handheld file could not be opened.  (4004)
    HotSync operation complete 02/14/08 09:26:47
    Post relates to: Tungsten T2
    This question was solved.
    View Solution.

    1. download and install FileZ from here
    http://nosleepsoftware.sourceforge.net/index.php?page=filez
    2. Launch FileZ and tap on view and edit files
    3. Open the internal folder and tap pmtracedatabase and put a check mark next to it
    4. Tap details
    5. Tap on the "Attrs" tab
    6. Uncheck the box next to backup
    7. Click Save
    8. Sync

  • Photoshop not importing MOV doc- "The file could not be opened." error

    Hello!
    I have photoshop CC and I am trying to complete a video project. So far I have searched high and wide to figure out why my .mov doc is not opening on my timeline and gives me an error: "The file could not be opened". I took the video on my iPhone 5 and exported it to a mov file.
    On the timeline I click on the movie icon next to the layer name, I click add media, click on my file, then I get the error.
    I didn't see that anyone else on the forums have had this same error code so I was wondering if anyone knows what is going on with my system.
    I have a brand new iMac... I don't see why I would have these issues.

    Nope I havent touched the Documents folder.
    Forgot to mention that I'm on Windows 7

  • S7 event log Protocol Error: Handheld File could not be opened (4004)

    Every time I do a hotsync now, I get an error message indicating that two files were not successfully back up: "S7 Event Log" and "EX_New Stories".  Both inidcate "Protocol Error: Handheld File could not be opened (4004)."  Does anybody know how to fix this?
    Post relates to: Centro (Sprint)

    No need to complicate the Forum with duplicate posts...
    Using the Search function here on the Forum, you'll find many posts that offer solutions to your problem.  I searched for "4004", and found many matches.
    One like this one may help.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • TMS Error messgae: Source file could not be opened. Message: FTP Failed

    Can you please help me with this error ?
    I am trying to adjust the import queue on prod system, but I get this error:
    TMS Error messgae: Source file could not be opened. Message: FTP Failed
    SLOG:
    STOP  TRANSMIT BUFFER ENTR SID g 0000 20110720075455              ADMIN        ulvcp743p
    STOP  TRANSMIT BUFFER ENTR SID g 0000 20110720075809              ADMIN        ulvcp743p
    START TRANSMIT BUFFER ENTR SID g      20110720075812              ADMIN        ulvcp743p
    STOP  TRANSMIT BUFFER ENTR SID g 0000 20110720080133              ADMIN        ulvcp743p
    START TRANSMIT BUFFER ENTR SID g      20110720081655              ADMIN        ulvcp743p
    WARNING: /usr/sap/trans/tmp/SID.LOB is already in use (10), I'm waiting 2 sec (20110720081843). My name: pid 28901462 on ulvcp743p (SIDadm)
    WARNING: /usr/sap/trans/tmp/SID.LOB is already in use (20), I'm waiting 1 sec (20110720081918). My name: pid 28901462 on ulvcp743p (SIDadm)
    WARNING: /usr/sap/trans/tmp/SID.LOB is already in use (30), I'm waiting 5 sec (20110720081951). My name: pid 28901462 on ulvcp743p (SIDadm)
    ERROR: RFC function TRINT_PROGRESS_INDICATOR error: SYSTEM_FAILURE
    STOP  TRANSMIT BUFFER ENTR SID g 0000 20110720082014              ADMIN        ulvcp743p
    ERROR: RFC function TRINT_PROGRESS_INDICATOR error: SYSTEM_FAILURE
    ERROR: RFC function TRINT_PROGRESS_INDICATOR returned 18
    ERROR: RFC function TRINT_PROGRESS_INDICATOR returned 18

    Hi ckary,
    Thanks for your post. It looks as if your computer is not seeing the driver
    calls and thus it gives the error saying it cannot complete that task. Does
    this happen with any other example programs you run using DAQmx? What version
    of DAQmx do you have? I would first recommend getting the latest DAQmx driver
    version, 8.7.1. You can find this at the following link below.
    Drivers and Updates
    Please post back if installing the latest driver does not
    fix the problem.
    Corby_B

  • Could not complete the video frames to layers command because the file could not be opened

    I recently learned to make gif images using KMPlayer and my Photoshop CS6, but today I hit a snag that I can't seem to get around. Normally I capture a scene from a show DVD I have in KMPlayer and then import the video frames into layers/frames in photoshop with no problem. Well today I went to do that, and captured the scene with what seemed like no problem (the small captured scene saved with no problem) but when I went to CS6 to import the video into layers, I got the error message "Could not complete the video frames to layers command because the file could not be opened". At first I thought it was the KMPlayer saving the files wrong, so I retried and got the same error message. Irestored the players settings back to a default and the file still wouldn't open in photoshop, and then I even tried uninstalling/reinstalling the player trying to get it to work, and then I thought it must be photoshop, because even scenes I had captured at an earlier day that worked perfectly fine when importing would not open.
    What could possibly be causing this problem to occur. Should I uninstall/reinstall photoshop and see if that works, or am I doing something wrong?
    The files I'm trying to import are AVIs as always, I even tried to capture scenes in other formats to no avail. What could be causing the problem?

    I uninstalled an reinstalled photoshop totally and it didn't fix the problem either. I made a post on the KMPlayer's forum hoping for an answer but I haven't recieved one yet. I'm starting to think it's the kmplayer having a problem capturing, since I've started getting the error "could not import the file to layers because the file has no layers" sometimes in photoshop, but I'm still trying to work around in photoshop to see if the problem came from there.

  • Handheld file could not be opened on sync

    After reading Pm Trace Database Error I was able to download fileZ and fix this problem with this file but I have two more files with the same error, (4004) handheld file could not be opened, syncerr_file_not_open. They are multimail messages and midataidcache. I could find multiimail using filez but not midataidcache. I found midataidcache in a backup folder and put it back on the handheld. I am not that "great" at this but will try and fix this with your help. Thank you!
    Post relates to: Palm TX

    You installed wireless sync. Go to wireless sync then tap on settings. Then go to connections then go to advanced and check enable other sync apps.
    Post relates to: Treo 800w (Sprint)

  • "Could not complete the Video Frames to Layers command because the movie file could not be opened."

    I'm using Photoshop CS5 extended.
    I've been using that to make gifs. It was fine when I import video frams into layers with the video formats of .mov or .avi. But After I installed OSX 10.6.8, this message comes up everytime I want to import videos: "Could not complete the Video Frames to Layers command because the movie file could not be opened."
    So I installed my old OS back which is 10.6.3 but the problem is still there.
    May I know what to do to solve this problem because all along I've been fine with making gifs and importing videos until now.
    Please help, thank you.

    Adnicej- wrote:
     ...I've been using that to make gifs...
    The computer deities may be trying to say something to you.  GIF is not a video format.
    Are you opening video with the same codec that was successfully opened before?

  • Hey, when i try to create a new piece on garage band it pops up with a box saying 'file could not be opened' help please!

    hello, when i try to create a new piece or try to start a new piece of music on garageband a box pops up and says file could not be opened. I need a quick and helpful responce please. thankyou

    That makes sense. You already have a Sync account with that email address, so it's already in use. If you want to use that same email but you can't remember the sync key follow the steps provided [https://support.mozilla.com/en-US/kb/Firefox%20Sync%20is%20not%20working?s=sync&as=s#w_ive-lost-my-sync-key-what-can-i-do here].
    The other option is to delete your account in the following address: https://account.services.mozilla.com/account/delete and start from scratch.

  • Message in Develop "The File Could Not be Opened"

    My photos are in an external 500 gig hard drive. I am using a new iMac. In Lightroom when I go to the develop module and select an image I get a message saying The File Could Not Be Opened. I can not do any editing. I can open photos from the hard drive in other programs and edit them but not in the Develop module of Lightroom. I have 1.2 version. I have had this happen before when for some reason the computer could not find the external hard drive. But it is finding it fine.
    Gerald

    Read Computer Darkroom - Locating Missing Files by Ian Lyons under feature articles and essays.
    http://www.computer-darkroom.com/home.htm

  • Identify missing files ("The file could not be opened")

    Hello,
    I purposely deleted photos outside of LR. The photos are still in the catalog. When I attempt to develop a photo in the catalog which I forgot was deleted outside of LR the message "The file could not be opened" appears after a short delay.
    This raises the question of how to identify ALL photos in a collection where the source files have been deleted (or otherwise cannot be found) and to mark those items for deletion from the catalog, and subsequently delete them.
    Basically I want to assure ONLY those photos that exist (on my drive) are in the catalog.
    (I realize there are many instances where on wants to maintain items in a catalog that are archived on other media and not readily available, but that's not what I want here.)
    I have LR 1.1 on WinXP Pro with ample memory and disk space.
    Thanks in advance for all tips and pointers.

    Did you try synchronize folders? Right click on the folder name and select. I haven't done this, but the help says it's supposed to deal with missing files as well as added files.

  • Every time I try to create a new project it says "The File Could Not Be Opened," how do I fix this?

    Every time I try to create a new project it says "The File Could Not Be Opened," how do I fix this?

    see if the "oddbal problems" fix helps:
    http://www.bulletsandbones.com/GB/GBFAQ.html#oddballprobs
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • "The file could not be opened"

    Allright, here comes The Learning Curve.... just downloaded the trial version (CD on order)after using beta 4.1 for awhile. Though I removed the beta version via "add/remove programs", LR 1.0 automatically repopulated the previous images, and now, as I try to use the Develop module, a number of those images come tagged with an edit across the top "The file could not be opened", which inactivates the Develop tools.
    This also happened with some of the images that were newly imported into LR 1.0. Any ideas on what I might be doing wrong?

    You have to repoint LR to where you moved them. Next time move them in LR, not in Explorer. They probably show a ? on the Grid thumnbail cell. Click it for one and navigate to show Lr where it is and LR should find the others.
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.9 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • "File Could Not Be Opened"

    Hello!
    My issue: I upgraded my data drive last week (which held my photos and LR catalog) and apparently created a problem. I'm able to open the catalog which shows the thumbnail image, but I get an "File Could Not Be Opened" message when viewing individual images. I suspect that this has something to do with the LR database not being able to locate the image file itself (I moved some things around). Without reimporting all my image files (which I fear might set me back to square one with any changes I've made to images already), is there an easy way to have LR sync the catalog with the new locations of my images?

    Hi Junk95. I just had the same problem returning from a trip, copying over all the new files from a laptop (where I had used Lightroom, but with a different catalog). I probably should have imported them using LIghtroom, nevertheless...
    Look in the folders section on the left side of the Library screen. You should see some folders highlighted in red. These would be the files Lightroom can't find. Double click and a dialog will say "Locate". Pick the folder location on your system that matches the missing folder. Lightroom should synchronize the images in the database with the files in the new location. Just worked like a champion for me. Voila!

Maybe you are looking for

  • How to move the Content from UCM11g to URM11g?

    Hi, One of our customer is using UCM 11g as their content repository for all document management requirements. They are looking for the possibility to implement URM for the record mangement requirements. They are looking for the following specific sc

  • Evolution stopped working

    Evolution has stopped working. I installed xgl and when I logged out of gnome using it, gnome hung.  No problem, ctrl+alt+backspace and start back in regular x (xgl is nice eye candy but I like the workspace switcher applet). When I went to start evo

  • Lock and unlock sharing DAQ PCI-6036E

    Is there an example for lock and unlock a DAQ resource (PCI-6036e)? I'd like to protect it from different threads.

  • Excise Base amount is not updatinf in J_1IEXCDTL

    Hi friends, this is Lokesh, I am having doubt regarding this issue. I also got same requirement to update that excise base amount in J_1IEXCDTL table i have written code as DATA : W_KONV TYPE KONV. CLEAR W_KONV. CLEAR KONV. READ TABLE KONV INTO W_KON

  • Album Art Isues (Part 2)

    I checked out the thread, "Album Art Issues", but that didn't work. (I get an error message saying, "The iPod cannot be synced. An unknown error has occurred (-50).") My issue is this: I have artwork for all my albums on iTunes, but cannot import the