File Directory App

Not sure where to post this query but here goes.. If you were a previous Amiga or PC user, you'll understand what I mean..
I'm new to the Mac and the one thing I'm having a hard time getting used to is moving, copying and pasting files. On the PC I use what is called "Windows Commander" which is quite similar to the Amiga's "Opus Directory" application.. basically an app with side by side windows showing you your source and destination directories. You highlight the files in the source window and click a variety of buttons to make the files do various things.. double click pics or vids etc to open them up. Right now I'm finding I have to open two "finder" windows and do it what I consider 'the hard way'.
Is there an app for the Mac that is similar to Windows Commander?
Cheers, thanks in advance.

hi Terrance.. I checked it out last night and it's close enough for what I was looking for.. It did crash a few times, mind you it was the beta 1.5 version. I'll be trying the 1.2 tonight to see if it is more stable or wait for v2.0 that is supposed to be coming out later.
Once again, many thanks.

Similar Messages

  • How to completely uninstall air app(clear up user files under app directory)?

    In the adobe air 1.1 install/uninstall document, it says "Removing an AIR application removes all files in the application directory. However, it does not remove files that the application may have written to outside of the application directory. "
    But it's not true. I found you cannot completely uninstall the app if there is any user files under app directory. If the user re-install the app, it will reminder the user "some error has occurred ...because an application with that name already exists at the selected installation location.... ".
    How to get rid of this problem if the user didn't clear up the folder manually before re-install?  If it's a limitation of adobe air, anyone could give me any evidence from official documents? Cause I have to persuade the user to accept it    Thank you.

    Psythik wrote:After returning my 6GB Zen Micro to the store (due to the fact that I filled it up quicked than I would've liked), I decided to go with the Zen Sleek player instead. Problem is, my computer still has the Zen Micro's drivers installed and apparantly it's conflicting with my Sleek because my computer won't recgonize it as a Zen Sleek even after installing the drivers (it just recgonizes it as a generic mp3 player). I can still transfer files to it as a would with a generic mp3 device in My Computer. Problem is, ID3 tags aren't properly sent this way (which is annoying when I want an album organized by track number).
    You shouldn't need to uninstall the Micro, it won't conflict. If tags aren't being sent properly then there might be some issue with the tags being read from the files. Check with a dedicated tagging program, and rewrite the tags perhaps on some test files.
    I'm assuming it's a Sleek with v2.xx firmware?

  • Transfer a file from App Server to a FTP site.

    Hi, Abapers.
    I need your help. Probably, this topic has already been posted in a similar way, but we need an answer to solve our problem.
    We have to sent a PDF file from a directory of our app server (AIX) to a FTP directory... which would the FM sequence we should use to goal it?
    Best Regards.

    Hi Santiago,
    create fm to send file from APP server to FTP site.
    if you want to Post file from desktop to Appl use Transaction - CG3Y
    if you want to Post file from Appl to Desktop use Transaction - CG3Z
    copy the code below....
    *  Author: Prabhudas                            Date:  02/21/2006  *
    *  Name: Z_FTP_FILE_TO_SERVER                                          *
    *  Title: FTP File on R/3 Application Server to External Server        *
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(DEST_HOST) TYPE  C
    *"     REFERENCE(DEST_USER) TYPE  C
    *"     REFERENCE(DEST_PASSWORD) TYPE  C
    *"     REFERENCE(DEST_PATH) TYPE  C
    *"     REFERENCE(SOURCE_PATH) TYPE  C
    *"     REFERENCE(FILE) TYPE  C
    *"     REFERENCE(BINARY) TYPE  CHAR1 OPTIONAL
    *"     REFERENCE(REMOVE_FILE) TYPE  CHAR1 OPTIONAL
    *"  TABLES
    *"      FTP_SESSION STRUCTURE  ZMSG_TEXT OPTIONAL
    *"  EXCEPTIONS
    *"      CANNOT_CONNECT
    *"      SOURCE_PATH_UNKNOWN
    *"      DEST_PATH_UNKNOWN
    *"      TRANSFER_FAILED
    *"      COMMAND_FAILED
      DATA: w_password     TYPE zftppassword,
            w_length       TYPE i,
            w_key          TYPE i                  VALUE 26101957,
            w_handle       TYPE i,
            w_command(500) TYPE c.
      REFRESH ftp_session.
    * Scramble password (new Unicode-compliant routine)
      w_length = STRLEN( dest_password ).
      CALL FUNCTION 'HTTP_SCRAMBLE'
        EXPORTING
          SOURCE      = dest_password
          sourcelen   = w_length
          key         = w_key
        IMPORTING
          destination = w_password.
    * Connect to FTP destination (DEST_HOST)
      CALL FUNCTION 'FTP_CONNECT'
        EXPORTING
          user            = dest_user
          password        = w_password
          host            = dest_host
          rfc_destination = 'SAPFTPA'
        IMPORTING
          handle          = w_handle
        EXCEPTIONS
          not_connected   = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
          RAISING cannot_connect.
      ENDIF.
    * Optionally, specify binary file transfer
      IF binary = 'X'.
        w_command = 'bin'.
        CALL FUNCTION 'FTP_COMMAND'
          EXPORTING
            handle        = w_handle
            command       = w_command
          TABLES
            data          = ftp_session
          EXCEPTIONS
            command_error = 1
            tcpip_error   = 2.
        IF sy-subrc <> 0.
          CONCATENATE 'FTP command failed:' w_command
            INTO w_command SEPARATED BY space.
          MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
              WITH w_command
              RAISING command_failed.
        ENDIF.
      ENDIF.
    * Navigate to source directory
      CONCATENATE 'lcd' source_path INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING source_path_unknown.
      ENDIF.
    * Navigate to destination directory
      CONCATENATE 'cd' dest_path INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING dest_path_unknown.
      ENDIF.
    * Transfer file
      CONCATENATE 'put' file INTO w_command SEPARATED BY space.
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = w_handle
          command       = w_command
        TABLES
          data          = ftp_session
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      IF sy-subrc <> 0.
        CONCATENATE 'FTP command failed:' w_command
          INTO w_command SEPARATED BY space.
        MESSAGE ID 'ZW' TYPE 'E' NUMBER '042'
            WITH w_command
            RAISING transfer_failed.
      ENDIF.
    * Disconnect from destination host
      CALL FUNCTION 'FTP_DISCONNECT'
        EXPORTING
          handle = w_handle.
    * Optionally, remove file from source directory
      IF remove_file = 'X'.
       CONCATENATE source_path '/' file INTO w_command.
      CONCATENATE 'rm' w_command INTO w_command SEPARATED BY space.
       OPEN DATASET '/dev/null' FOR OUTPUT FILTER w_command.
       CLOSE DATASET '/dev/null'.
    ENDIF.
    Regards,
    Prabhudas

  • How do I find my CC Files Directory?

    Hello!
    Very new to the Creative Cloud.
    Trying to figure out the most basic thing--where can I find the Creative Cloud Files Directory? I want to be able to automatically backup my Photoshop and Indesign files, just in case my computer crashes.
    This site: Creative Cloud Help | Manage and Sync files --tells me if I save my files in this magical folder, they will automatically sync to the Cloud.
    Where is this folder? I'm using a Mac. I searched for it in Finder with no luck.
    Do I have to download another app?
    Help!
    Thanks,
    Super Newbie.

    doertel wrote:
    How do I put my cc files into bridge or camera raw?
    Please can you rephrase the question?

  • Error in setting permissions of file/directory

    This is the error I am getting
    Error in setting permissions of file/directory /u01/app/oracle/jre/1.1.8/bin/i686/native_threads/.extract_args
    I am running RedHat 9 and obviously installing 9.2.0.
    Any ideas on why I might be getting this. I have set permissions for the oracle user for this directory.
    Thanks
    Dave

    from root try this command
    umask
    umask must set at 0022 ... if your server not set at this number use this command
    umask 0022

  • Accessing file directory objects in 9.1 and /WEB-INF/classes zip

    It appears that in WebLogic 9.1 that the contents of the /WEB-INF/classes directory is being zipped up and placed in the /WEB-INF/lib directory under some arbitrary name.
    Is there a way to tell weblogic not to do this, but leave the /WEB-INF/classes directory expanded as it was in weblogic 8?
    Is there a particular reason, developers should be aware of, to why this is being done in 9.1 (9.x?)?
    Background :
    This particular app has a set of several hundred xml files that describe all of the screens (and thus the forms) of the app. They are used not only in the generation of the actual jsps (and believe it or not the action class as well as other supporting class, the app is really an interface to a legacy backend) but are also packaged within the WAR for the dynamic configuration of plugins used for complex validation; a quasi 'rules' engine.
    While there are several different versions of the app, and thus several different versions of xml files, there is only one version of the rules engine.
    The problem that has arised when running on 9.1 is the plugins access to those xml files.
    The plugin attempts to load the xml files by creating File object for the directory containing the xml files, and then iterating through the contents of that directory.
    The xml files are packaged within the /WEB-INF/classes directory and are thus accessible using a simple resource look-up (in actuality, a 'token' xml file is specified, looked-up as a resource and then used to determine the parent file directory's url).
    This has worked well enough as 'most' servers deploy the contents of /WEB-INF/classes directory in an expandable fashion. Obviously, this strategy readly breaks when those same contents are jar'd and placed in the /lib directory.
    It is prefered to not have to maintain a cataloge or index of the xml files because of the volume of xml files, the multiple versions of the xml files, and of course the volitility of the xml files, although this is an obvious option.
    I personally have mixed feelings about using a parent directory reference to load a set of resource files within a j2ee app. If anyone has any other suggestions, I would greatly appreciate it!
    Thanks
    Andrew

    Hi,
    Usually, the best approach would be to just to load the resources as InputStream and have a catalog (and I know this is what you do not want to do :-) So the only hacky workaround that I can think of would be to use something like Jakarta Commons Virtual File System (http://jakarta.apache.org/commons/vfs/) and read the .zip
    Regards,
    LG

  • System Profiler Content File Directory Location?

    Hello,
    I recently changed out my microprocessor in my PowerBook G3 because my old one was not working properly. All works fine now as it is smoothly running 10.4.11. However, I look in system profiler and the serial number has changed to the new microprocessor and does not match the sticker on the bottom on the machine. I managed to modify the "About This Mac" and "Login Window" serial number just fine, but I am stumped regarding system profiler. I did research and found that in 10.5, you can manually input the serial by finding a "SMBIOS" type file architecture in the extensions folder of System>Library. My question is:
    Where can I find the system files that give System Profiler its information. or Where can I find the equivalent in 10.4 to 10.5's SMBIOS system files.I appreciate any advice. Please indicate the entire file directory so I can easily find the location of the files I need to modify. Have a nice day.

    I suspect that System Profiler gets the serial number either by an internal call to the I/O registry which in turn has gotten it from the logic board firmware, or else directly from the firmware itself. If either of these mechanisms is correct, then there are NO files that carry the serial number, and therefore I think there is probably nothing you can change. This may be incorrect, but so far I've seen no evidence of a datafile that has this information.
    By way of background, here is my understanding. Hopefully I will be corrected if I am wrong:
    A file is a particular type of data structure, a collection of bytes assembled by the operating system in a specific way. Files usually reside on physical storage devices such as disk drives, and persist even after the computer is turned off. A user with sufficient privileges can generally access the information stored in a file.
    There are, however, other types of OS data structures in the "kernel," below the level of the user interface. These structures are not files - it is not that they are "hidden files" or "system files" - they are not files at all. These data structures exist in a protected space that users cannot alter.
    ioreg -l | grep IOPlatformSerialNumber | awk '{ print $4 }'
    I have no idea exactly "where" this piece of information is coming from, meaning the serial number that appears. It would be greatly appreciated if you could help me track down exactly where on the system the terminal command here is pulling this info from. It clearly gets it from some place, but it just may not be something we can see on the system as an object.
    According to the link I posted earlier, the ioreg terminal command directly displays (but cannot alter) the I/O registry. This data structure is not a file, and does not exist in the filesystem that you access via the GUI or via Terminal filesystem commands. Even worse, the link said:
    the Registry is not stored on disk or archived between boots. Instead, it is built at each system boot and resides in memory
    What this means is that the I/O Registry resides only in RAM - it is completely destroyed when you turn off the computer, and gets rebuilt when you start back up. And again, it is not a file.
    That's why I said "This doesn't sound promising"!
    there has to be a way to override the "connection" between the dynamic database itself and how it obtains information from it.
    If System Profiler.app does either read the I/O registry or read the firmware directly, then this instruction may be hardcoded in the app itself. I don't know this, but if so then I don't think there is any way to get it to look "somewhere else."
    Good luck, but I think this project is going to be "The Impossible Dream"

  • The value should be set for Base image URL and Image file directory

    Hi experts
    Now customer has the following issue.
    XML Publisher concurrent request, using RTF layout template with LOGO, does not generate the LOGO for Excel output.
    but in output formats PDF, it is shown normally.
    from the debug log, we can found the following error message
    ======
    [051812_054716051][][ERROR] Could not create an image. Set html-image-dir and html-image-base-uri correctly.
    ======
    so I tell the customer to do the following action plan.
    1. in XML Publisher Administrator resp > Administration expand the HTML Output section.
    2a. enter a value for 'Base image URI'
    2b. enter a value for 'Image file directory'
    Customer set the value as following and retest this issue,but he found the issue is not solved.
    Base image URI: /u01/r12/ebssnd/apps/apps_st/comn/java/classes/oracle/apps/media/XXSLI_SONY_LIFE_LOGO.gif
    Image file directory: /u01/r12/ebssnd/apps/apps_st/comn/java/classes/oracle/apps/media
    I verified 'Base image URI' and 'Image file directory' settings:
    1) Change output type to HTML.
    2) Click the Preview.
    but the image is correctly displayed on HTML, so I think the issue is caused by user's uncorrectly setting of the base image URL and/or image file directory
    but could anyone give me some advice on which value should be set for Base image URL and Image file directory
    Regards
    shuangfei

    First thing to do is to edit the post and use some tags to format the code as it is unreadable and too much!
    Read the FAQ (https://forums.oracle.com/forums/help.jspa) to find out how to do this.
    Next we need to know the jdev version you are using!
    As the code is generated I would first try to generate it again after the db change.
    Timo

  • File directory chooser

    this code for file directory chooser runs in standalone java programs. i need it for a web app, can someone help me manipulate this to do so?
    package ETPS.web.service;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.util.*;
    public class DemoJFileChooser extends JPanel
       implements ActionListener {
       JButton go;
       JFileChooser chooser;
       String choosertitle;
      public DemoJFileChooser() {
        go = new JButton("Do it");
        go.addActionListener(this);
        add(go);
      public void actionPerformed(ActionEvent e) {
        int result;
        chooser = new JFileChooser();
        chooser.setCurrentDirectory(new java.io.File("."));
        chooser.setDialogTitle(choosertitle);
        chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
        // disable the "All files" option.
        chooser.setAcceptAllFileFilterUsed(false);
        if (chooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION) {
          System.out.println("getCurrentDirectory(): "
             +  chooser.getCurrentDirectory());
          System.out.println("getSelectedFile() : "
             +  chooser.getSelectedFile());
        else {
          System.out.println("No Selection ");
      public Dimension getPreferredSize(){
        return new Dimension(200, 200);
      public static void main(String s[]) {
        JFrame frame = new JFrame("");
        DemoJFileChooser panel = new DemoJFileChooser();
        frame.addWindowListener(
          new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
              System.exit(0);
        frame.getContentPane().add(panel,"Center");
        frame.setSize(panel.getPreferredSize());
        frame.setVisible(true);
    }

    AndrewThompson64 wrote:
    BIJ001 wrote:
    If we are talking about a web application, then the browser will use its file chooser when down- or uploading a file.++++
    The only way to shoe-horn that code into a web page is via an applet. The applet would need to be either
    a) Trusted, or..
    b) Deployed in a plug-in2 JRE and use the JNLP API services to get access to an InputStream.
    Either way, applets are a PITA for both the developer and (usually) the user. Stick to pure HTML in web-apps, wherever possible.
    Edited by: AndrewThompson64 on May 31, 2010 9:51 PMI've also seen some attempts with Google Gears. Even file drag & drop support. It works quite neat, if the user doesn't have gears installed you get a nice requester for it. Don't know what the system requirements are for that product though.

  • Spotlight missing files/folders/apps

    Not sure why, but spotlight has started missing files/folder/apps from searches.
    I have tried rebuilding the index using all the sudo commands, and third party apps like Onxy with no success. I have also deleted the .plist file- still with no luck.
    Spotlight will find some folder/files within a directory, but not others in the same dir. App have started not showing up now too.
    Any help or advice is appreciated as this is causing productivity problems at work now!

    I read it, but there's nothing in the mdutil manpage about blowing away the entire Spotlight directory. That's why it leads the pack. Alternatively, boot with the install disc, select your language, select Terminal from the Utilities menu in the next window, and do this command:
    *sudo rm -R /Volumes/"name of original boot volume"/.Spotlight-V100*
    quit the Terminal app, and reinstall Snow Leopard. See if that fixes the issue.

  • All java files directory

    I need to know all java files directory by sample:
    /System/Library/Java/Support/CoreDeploy.bundle/Contents/JavaAppletPlugin.plugin
    etcetera.
    I have deleted them all and i don't rember where those file where located, if i knew i would go to another mac computer and paste them to mine, because since i have delethed them all, i can't open safari, mail or app store and i don't want to reinstall the OS.

    FYI.... Here's the quick and dirty, slower than a wet week, ugly, but effective batch script
    set TIKE=C:\Java\lib\tikeswing-1.5
    set SRC=%TIKE%\src
    set LIB=%TIKE%\lib
    set CLASSPATH=%LIB%\commons-beanutils.jar;%LIB%\commons-lang-2.0.jar;%LIB%\commons-logging.jar;%LIB%\log4j.jar;.
    FOR /R %SRC% %%f IN (*.java) DO javac -d C:\Java\home\classes -cp %CLASSPATH% %%f
    @ECHO OFF
    REM http://www.robvanderwoude.com/ntfor.html
    REM Walks the directory tree rooted at [drive:]path, executing the FOR statement
    REM in each directory of the tree. If no directory specification is specified
    REM after /R then the current directory is assumed. If set is just a single
    REM period (.) character then it will just enumerate the directory tree.I can't figure out how do the equivalent of javac `dir /s /b *.java` (ie: cmd doesn't seem to have a built-in facility for expanding the results of a command into the command line) which would be a lot quicker and cleaner.
    Cheers all. Thanx for the help. I appreciate it.

  • TS1389 i'm not able to transfer files/download apps through itune. it keep asking me to authorization. i do this for many times....but why this asking me again and again.

    i'm not able to transfer files/download apps through itune. it keep asking me to authorization. i do this for many times....but why this asking me again and again.

    To avoid that I would recommend deleting the folder first the copying won't be an issue or deleting all the files in the directory. I know this is an extra step but just like the warning on plastic bags someone somewhere did something they shouldn't have
    Sorry, I have been there.
    So generally it will ask you if you want to do this for X number of files
    IT SHOULD ASK ONCE AND ONLY ONCE
    I SAY YES AND GO AWAY AND I HAVE TO COME BACK AND HIT YES AGAIN
    To avoid that I would recommend deleting the folder first the copying won't be an issue or deleting all the files in the directory. I know this is an extra step but just like the warning on plastic bags someone somewhere did something they shouldn't have
    ND LOSE AL THE RIGHTS...
    THIS IS BAD ADVICE!

  • Delete file from app server

    hi, i am running a background job in bw and for that created a file on the application server.now how do i delete that file.to create the file i just gave the name in the bw and the file got created.i am not able to find how to delete it.
    or
    rather than deleting the file how can we delete the data it is containing.please do let me know

    hi,
    but using DELETE DATASET u can remove file for app server.
    If u want to delete the data alone then give the same name without data it will overwrite.
    U can check it in AL11.
    regards
    md zubair sha
    U can also use the function module - EPS_DELETE_FILE
    Message was edited by:
            md zubair sha

  • Some videos are semi-missing - they do not show up in File Manager apps or another app

    I have what I will call three FILER apps: File Browser, Air Browser and File Commander.  I also have MovieSRTPlayer.  Those apps appear to not register the presence of some video files that I have definitely copied to my PB.  The MovieSRTPlayer will overlay a .srt file's text over a video allowing the pb to show subtitles.  It works as long as it can find the video and srt files.
    I am definitely transferring a series of video files to the pb's video folder.  I am also transferring a companion file to that folder.  The companion file is a subtitle file in the form of an .SRT file.
    THREE file manager type apps do NOT show those files as present in the video folder.  The Video app itself does show and play those video files. 
    I have copied the files using both wifi-sharing and when they did not show up that way, I copied them using the usb cable to the pb's Z: drive and the video folder.
    As stated the dam! files play in the video app.  But they do not appear in the various filer apps.  And they also do not show in another app, one that will display the subtitle (.srt file) file overlaying the video.  In all instances it is as if the pb does not register the presence of those files on the pb.
    Now, what is interesting is that when this first cropped up, 7 files were missing - just a mix of video (no .srt files involved).  That is they showed in the video app and played but the filer programs did not show them.  I managed last night and this morning to get 7 of those to finally show by copying/moving/deleting and recopying.  But now I'm running into this brick wall again.  I have repeatedly copied two video (avi files) and their companion .srt files to the video folder.  They are in that folder (I've looked using usb and wifi-sharing) and they play in the PB's video app.  They are most certainly on my pb.
    Oh, and yes, I've rebooted a number of times. 
    Ideas?

    I have what I call 3 file manager apps.  File Browser, Air Browser and File Commander (the older free version). 
    They all show or don't show the same thing.  So files are missing.  And SIZE is not the sole determining factor.  When I was testing MovieSRT and "lost" some files I copied and renamed avi and .srt files.  So there are two extra .srt files in the Video folder.  But while they are 32kb (kilobytes) and 58kb respectively, they do NOT show up in the File managers.  The other two identical files with the names matching the .avi files do show up.  The one very large mp4 (2gb) does not show up.  A subfolder I created just as a test does not show up.  But the large mp4 and subfolder were showing up while I was actively copying the 2gb file - they would show up as the file was being copied - the filemanagers showed the file getting larger and larger and while doing so the "missing" subfolder also kept showing up.  Then once the large file was completely copied, both it and the subfolder "disappeared" - again, the large mp4 does show in the Video app and it plays.
    My persistence probably is based on the fact I was a computer programmer many eons ago!  Also, I was trying to get YOUR app to work and the avi files were not showing up in your listing but they were showing and playing in Video app (but no subtitles).  Finally, after copying/moving/re-copying over and over including moving and copying to the PB's Print folder (just since it was empty) and copying it back to the video folder (now 2 copies), the files would finally show up.  Peculiar - yup!
    Oh, one other thing - the 3 file managers all show what I will call the virtual Playbook-Demo video in their listings - your app does NOT show it.  Obviously, it is not located in the Video Folder but somewhere in the bowels of the PB.  So, the filemanagers  are relying on some "file structure" that is not fully correct.  But your app does not appear to show it.

  • System exception while deleting the file from app server in background job

    Hi All,
    I have a issue while the deleting the file from application server.
    I am using the statement DELETE DATASET in my program to delete the file from app server.
    I am able to delete the file from the app server when i run the program from app server.
    When i run the same report from background job i am getting the message called System exception.
    Is there any secuirity which i need to get the issue.
    Thank You,
    Taragini

    Hi All,
    I get all the authorization sto delete the file from application serever.
    Thing is i am able to run the program sucessfully in foreground but not in the background .
    It i snot giving any short dump also just JOB is cancelled with the exception 'Job cancelled after system exception ERROR_MESSAGE'.
    Can anybody please give me suggestion
    Thanks,
    Taragini

Maybe you are looking for

  • Bit of a problem need some help please

    import java.io.*; class IO public static void main(String args[]) String sOutString = ""; int iRecordLength = 0; int iWork=0; int[] array = new int[21]; try // creat input file, buffer. FileInputStream fis = new FileInputStream("myInFile.txt"); Buffe

  • How do I  set the default view size when I open a word.doc from mail

    I use the mail program all day long and open MS Word docs and the size is default of 100% but the actually view of the screen make it look like a font of 7 or 8 I have a difficult time even viewing the document until I blow it up to 150%. It's not be

  • PSE 12: error code u44m1p7 downloading the camera raw 6.7 update [was:Walt]

    I just purchased pse 12 and I get a error code u44m1p7 when trying to download the camera raw 6.7 update Walt

  • Why can't iMovie '11 keep its place when changing

    Is there some reason the app can't keep your project clips positioned so that the playhead remains visible in the project browser when you change the time scale or icon size? One can get back by pressing the spacebar to put the picture in motion, but

  • Only values in InfoProvider not working for ODS

    Hi, I'm on BEx 3.5 and I'm trying to use a variable in a query on an ODS. The InfoObject is set to "Only Values in InfoProvider" in RSD1 in the Query Execution Filter Val Selectn entry. The same setting has also been done in the ODS InfoObject specif