GOS - Saving in the filesystem

Hello,
I would like to know if it's possible to save the file send thrue the GOS into the SAP filesystem ??
I have played with OAC0 / OAC1 / OAC3 / SWO1 ... and finaly with SKPR08, but I can't find a way to simply saved the document into a file in the SAP system (the best would be with logical filename)
Any help
Regards
Fred

Hi,
maybe open a new question, and post a screenshot of your OAC0
and check your SM58
regards
Fred

Similar Messages

  • Watching for changes to the filesystem?

    Hi,
    Is there an automator object that will allow me (through Applescript perhaps) to receive notifications of when something in a certain part of the filesystem changes?
    For example, I would like to be notified when a new document is added to the Documents directory (likewise I'd like to be notified when a document is removed from that directory).
    Thanks,
    BT

    Hi BT
    AppleScript has a mechanism called Folder Actions, which will do exactly what you require. Automator workflows can also be saved as Folder Actions, but they run more slowly for reasons I'll explain later.
    A Folder Action script runs when you make a change to a folder to which the script has previously been attached. The possible changes are: opening the folder window, closing the folder window, moving the folder window, adding items to the folder and removing items from the folder. The last two are what you're looking for.
    Only these five changes will trigger a folder action; folder actions don't run if you edit or update a file within a folder.
    Folder actions aren't recursive: if you add items to a sub-folder of the folder to which the action is attached, the action attached to the parent folder won't run.
    Here's an AppleScript that will do what you want, with the notification in the form of a dialog.
    --begin script
    on adding folder items to this_folder after receiving these_items
    set folder_name to name of (info for this_folder)
    set item_count to (count these_items) as string
    display dialog item_count & " Items were added to " & folder_name & "!" with icon note buttons {"OK"} default button 1
    end adding folder items to
    on removing folder items from this_folder after losing these_items
    set folder_name to name of (info for this_folder)
    set item_count to (count these_items) as string
    display dialog item_count & " items were removed from " & folder_name & "!" with icon caution buttons {"OK"} default button 1
    end removing folder items from
    -- end script
    Copy and paste this script into a new Script Editor document, and save the script into the folder ~/Library/Scripts/Scripting Additions/ (create it if it doesn't already exist).
    Control-click on the folder you want to run the action, and choose Enable Folder Actions if they aren't already enabled. Control-click on the folder again, and choose Attach a Folder Action... Navigate to the folder where you saved your script, and choose the script. Drag items in and out of the folder and see what happens.
    The dialog can be replaced by any AppleScript commands you like: the script could send an email, log the change to a text file, create a new document in a scriptable application, log the user out, play their top-rated iTunes tracks...
    Hope that gets you started. Using Automator would be slower because folder actions created in Automator simply launch a separate Automator workflow application, which then runs the commands which I've scripted directly. This just puts another application in the way of getting the job done.
    Why not post in the AppleScript forum if you want to know more?
    Cheers,
    H

  • Delete file from the filesystem?

    Hello,
    I have an easy question. But I don´t find the right oracle packages.
    I want to delete a file from the filesystem. How can I do this?
    Thanks for your help!

    Paul,
    If connecting to the Web server on East-Coast USA is not optimal for you, or if you aren't using Oracle 10g Release 2, try this URL instead:
    http://www.oracle.com/technology/documentation/index.html
    You need to look for the PL/SQL Packages and Types Reference document, the section detailing the UTL_FILE package.
    Good Luck,
    Avi.
    Message was edited by:
    Avi Abrami

  • In trying to update I received this message: Firefox 3.6.3(2).dmg.part could not be saved, because the source file could not be read.

    In trying to download an update I first received: "There were problems checking for, downloading, or installing this update. Firefox could not be updated because: No data was received (please try again)" It also gave a link to download manually. When I tried from the Firefox website I got: /Users/(deleted for privacy)/Desktop/Firefox 3.6.3(2).dmg.part could not be saved, because the source file could not be read.
    Try again later, or contact the server administrator. I tried this 3 times.
    == This happened ==
    Not sure how often
    == Mon around 11 am, central time, May 17, 2010

    I have tried downloading the file several times and get the same message: "No data received." I have no other system problems, I navigate well to other sites, but I'm unable to download this upgrade. Any suggestions?

  • Use ComboBox TableCellEditor  - values are not saved to the table model

    Hi,
    I got a combobox cell editor that uses to edit one of the columns.
    And i got an ok button that uses to collect the data from the table and save it to the db.
    In case i started editing of a cell and the editor is still displayed- if i will click on the button the data that will be colected from the table model will not contained the updated value in the cell editor.
    In this case the user think his changes were saved but the last updated field is not updated.
    Is this a bug i got in the cell editor or this is the normal behaviour?
    Can it be fixed? (So that if the cell is in the middle of editing the value that will be saved is the last value that was selected).
    public class PriorityCellEditor extends StandardComboBox implements TableCellEditor {
        private boolean isEditMode=false;
         * A list of eventlisteners to call when an event is fired
        private EventListenerList listenerList = new EventListenerList();
         * the table model
        public StbAreaClusterPriorityCellEditor(boolean isEditMode) {
            super(StbAreaMapper.clustersPriorities);
            setEditMode(isEditMode);
            setEditable(false);
            this.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
            setAlignmentX(Component.LEFT_ALIGNMENT);
        public boolean isEditMode() {
            return isEditMode;
        public void setEditMode(boolean editMode) {
            isEditMode = editMode;
            setEnabled(editMode);
        public Component getTableCellEditorComponent(JTable table, Object value,boolean isSelecte, int row, int column) {
            int selectedIndex;
            if (isSelecte) {
                setForeground(table.getSelectionForeground());
                setBackground(table.getSelectionBackground());
            } else {
                setForeground(table.getForeground());
                setBackground(table.getBackground());
            if(value instanceof String){
                selectedIndex=StbAreaMapper.mapGuiPriorityDescToGuiCode((String)value);
                setSelectedIndex(selectedIndex);
            return this;
        public void cancelCellEditing() {
            fireEditingCanceled();
        public Object getCellEditorValue() {
            return getSelectedItem();
        public boolean isCellEditable(EventObject anEvent) {
            return isEditMode;
        public boolean shouldSelectCell(EventObject anEvent) {
            return false;
        public boolean stopCellEditing() {
            fireEditingStopped();
            return true;
         * Adds a new cellEditorListener to this cellEditor
        public void addCellEditorListener(CellEditorListener l) {
            listenerList.add(CellEditorListener.class, l);
         * Removes a cellEditorListener from this cellEditor
        public void removeCellEditorListener(CellEditorListener l) {
            listenerList.remove(CellEditorListener.class, l);
         * Notify all listeners that have registered interest for notification on
         * this event type.
         * @see javax.swing.event.EventListenerList
        protected void fireEditingStopped() {
            // Guaranteed to return a non-null array
            Object[] listeners = listenerList.getListenerList();
            // Process the listeners last to first, notifying
            // those that are interested in this event
            for (int i = listeners.length - 2; i >= 0; i -= 2) {
                if (listeners[i] == CellEditorListener.class) {
                    ((CellEditorListener) listeners[i + 1]).editingStopped(
                            new ChangeEvent(this));
         * Notify all listeners that have registered interest for notification on
         * this event type.
         * @see javax.swing.event.EventListenerList
        protected void fireEditingCanceled() {
            // Guaranteed to return a non-null array
            Object[] listeners = listenerList.getListenerList();
            // Process the listeners last to first, notifying those that are interested in this event
            for (int i = listeners.length - 2; i >= 0; i -= 2) {
                if (listeners[i] == CellEditorListener.class) {
                    ((CellEditorListener) listeners[i + 1]).editingCanceled(new ChangeEvent(this));
    }

    Try this
    yourTable.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);

  • Output type not getting saved in the PO

    Hello Team
    we are facing one issue where output type is not getting saved in the PO.
    we give one output type and than save it , after going back to the PO we see that it is not there.and no output issued
    the PO is released properly and there is no issue , any idea what could be the reason for it

    Hi,
    Check in SU3 t.code, did check box selected u201CDelete After Outputu201D in Spool Control segment in Default TAB
    Also check Partner Function VN maintained in Default values TAB in NACR--- > EF Application for your output type
    Cross check partners {VN, PI, GS) are assigned to your PO output type in Partner Roles per Message Type
    Regards,
    Biju K

  • Mail attachments not saving to the folder I choose

    My mail attachments are not saving to the folder I choose.  When I select a file to save in the mail drop-down box, I am given options to save to a folder of my choice.  However, when I select save the document is actually saved deep in some Mail Downloads area, not in my chosen folder.  Has anyone had a similar problem and found a solution?

    What kind of files are you trying to attach?
    Is it all recipients having this problem or specific one(s)?
    Could you possibly post a screenshot of the sent message from your side and a screenshot of what the recipient sees?
    What happens if you send one of these messages to yourself?
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • I paid for adobe to convert a PDF to word -- now I can't save PDFs to my computer -- and I'm saving to the cloud -- HELP

    I'm so depressed -- what happened to the old days when you could actually get a person in support and not have to join a forum -?
    I purchased adobe acrobat to convert a PDF to a word document - that's all I wanted --
    Now every damn PDF I receive or try to open can only be saved in the adobe cloud -- which I have no interest in -- and not on my computer --
    How can I resolve this situation --
    I can't seem to find "settings" or "support" --
    Yes, I'm over 50 -- and I struggle with this maddening technology -- nothing is simple or straightforward --
    I scanned a document, emailed it to myself and would like to name it and save it to my computer -- used to be a 3 minute process -- now its 30 minutes (of valuable, but wasted time later) -- and here I am -- seeking help from no one in particular!  The anonymous "forum" --

    No -- I installed adobe acrobat -- and now, whether I'm signed in or not -- the little disc/save icon is whited out and it can no longer be selected -- when I open a PDF I can only save it to the cloud
    I am a physician, and a lot of what I look at is protected health information --- I can't be saving it in the cloud!!!  I have to find a way to disable this feature -- and restore my ability to save to my hard drive ONLY --
    Thanks -- but if you can tell me those things, I'll be grateful
    tried to attach screen shot to show you, but it was too big .......

  • My iPod was stolen! I need to access info it saved to the iCloud!

    A couple of weeks ago, my iPod Touch was stolen by my downstairs neighbors.  Long story, but I know it was them.  I had been using it as a motion-activated surveillance camera.  I was using an app called iVigilo SmartCam+ with the extra addons, like motion sensor and video recording.  So, one of the options in the app allows for these videos to be saved to my Camera Roll, Apple's iCloud, and iVigilo's Cloud.  That's three different places. 
    Now, I've managed to access the files saved from iVigilo's Cloud, which was 99% of the video.  According to an admin of the app, the last "event" only showed up as a photo instead of a video, was because the app or device or internet was interrupted before the video could be saved to the cloud.  The app first takes a photo when motion is detected, which is then used as the thumbnail to the video in the app when reviewing the saved events.
    So, the admin told me that there is still a small chance that even part of that video could be saved to Apple's iCloud.  Now, he told me that this is possible if using a Mac computer, but I unfortunately do not own or even know anyone with a Mac.  I only have Windows computers.  Now, when I open iCloud on my pc, if I click on "Manage..." it pops up a new window and shows me that I have some backups saved, mail saved, but also that iVigilo has what looks like all three days' worth of footage saved, but all iCloud lets me do is delete it, but I sure don't want to do that.  I've been told about the "Mobile Documents" folder that gets saved by iCloud on a Mac, but how do I get my info of the iCloud with a pc?
    Or, is it possible somehow to force my iPhone to use the iPod's backup?  Maybe the video I need got saved to my Camera Roll in time?
    Oh, and I had the Find my iPhone thing turned on on the iPod and used the Lost Mode for it from my iPhone, but either the theif wiped the iPod, just isn't telling it to connect to WiFi (I had auto-ask to join networks turned off), or they short-circuited the device when they stole it because the power cable was plugged in at the time and they either riped or cut it right from the cable.  I immediately called the cops at what turned out to be 5 hours after the theft, but the cops said that without proof and the neighbor denying it, they couldn't do anything about it.  The neighbor denied to the cop about even knowing the device was there, which turned out to be a lie because the last actual video I have been able to access shows her going down the stairs, stops next to the device (which is at this point in a black fabric case I made myself and this fabric case is zip-tied to the metal stair railing. The entire device is covered except a hole I cut out for the camera.), she then bends over to look at the front of the camera, and then continues down the stairs, goes into her apartment, leaving the door open, talks to her sister that's inside the apartment, and you hear her clearly say, "There is a f***ing camera setup out here on the stairs."  Then, barely two minutes later, when the camera detects the next movement is just the photo taken, showing that sister coming out of the apartment towards the device.  How is this NOT enough evidence to get her???  So, if I can even get just a little bit of that missing video, there couldn't be anymore doubts!

    You can restore the iPhone from an iPod backup as long as the iOS version on the iPhone is equal to or greater than the iOS version on the iPod. If you restore from iTunes backup all the apps have to be in the iTunes library since synced media like apps and music are not included in the backup.that iTunes makes.

  • Need to save the image saved in the System Clipboard in using JDK 1.3.1

    Does anyone know how to use JDK 1.3.1 to take an image saved in the System clipboard and save it to a file using the JPG format?
    I know how it is done in JDK 1.4 using the following code. Unfortunately, the same code does not recognize the image in the clipboard in JDK 1.3.1
    I am using jai-1_1_2_01.
    package clipboard;
    import java.awt.datatransfer.Clipboard;
    import java.awt.datatransfer.DataFlavor;
    import java.awt.datatransfer.Transferable;
    import java.awt.image.RenderedImage;
    import java.awt.Toolkit;
    import java.awt.datatransfer.UnsupportedFlavorException;
    import java.io.IOException;
    import java.io.FileOutputStream;
    import java.io.BufferedOutputStream;
    import java.io.File;
    import javax.media.jai.JAI;
    import javax.media.jai.RenderedOp;
    public class clipboard
    {  private File tempFile = null;
    * @param args
    static int BUFFER_SIZE = 65536;
    public static void main(String[] args)
    {  clipboard clip = new clipboard();
    clip.writeImageFromClipboard();
    public void writeImageFromClipboard()
    {  Clipboard            clip = Toolkit.getDefaultToolkit().getSystemClipboard();
    Transferable transferable = clip.getContents(null);
    RenderedImage img = null;
    FileOutputStream fileOutStr = null;
    BufferedOutputStream bufOutStr = null;
    DataFlavor [] dataFlavors;
    File tempFile;
    int
    byteCount;
    String [] strArr;
    dataFlavors = transferable.getTransferDataFlavors();
    System.out.println("clip=" + clip.getName());
    System.out.println("Transferable=" + transferable);
    for (int i = 0; i < dataFlavors.length; i++)
    {  System.out.println("dataFlavours[" + i + "]=" + dataFlavors.toString());
    if (transferable.isDataFlavorSupported(new DataFlavor("image/x-java-image; class=java.awt.Image", "Image")))
    { try
    { img = (RenderedImage) transferable.getTransferData(new DataFlavor("image/x-java-image; class=java.awt.Image", "Image"));
    if (this.tempFile == null)
    { this.tempFile = File.createTempFile("__TMP_IMG__", ".jpg");
    System.out.println(this.tempFile.getCanonicalPath());
    fileOutStr = new FileOutputStream(this.tempFile);
    bufOutStr = new BufferedOutputStream(fileOutStr);
    // Encode the file as a JPG image.
    JAI.create("encode", img, bufOutStr, "JPEG", null);
    catch (UnsupportedFlavorException e)
    { e.printStackTrace();
    catch (IOException e)
    { e.printStackTrace();
    finally
    { if (bufOutStr != null)
    { try
    { bufOutStr.flush();
    bufOutStr.close();
    catch (IOException e)
    if (fileOutStr != null)
    { try
    { fileOutStr.flush();
    fileOutStr.close();
    catch (IOException e)
    else
    { System.out.println("Not an image!");

    The login  you connected to the server  and run the above statement does not have permissions to operate  on this path "C:\Users\ISLLCdba\Desktop\MAA
    PROFILE PICTURES\"
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • I deleted iTunes when it said "iTunes could not back up iPhone because the backup could not be saved on the computer"and now it wont let me install it again and keeps saying "itunes cannot be installed because the file cannot be found in the cabinet "

    iTunes told me to delete my backup folder when I was having problems syncing my phone to my computer. After that it wouldn't work at all. After trying and trying I deleted iTunes when it said "iTunes could not back up iPhone because the backup could not be saved on the computer"and now it wont let me install it again and keeps saying "itunes cannot be installed because the file cannot be found in the cabinet ". What the **** itunes? Nothing is working!!
    I wanted to update my iTunes so I could sync my phone to my computer and update my phones software so I can use the latest apps that need a 4.2 or higher.
    This is not fun for me so if anyone knows what I can do to fix this please help. Is it possible to download the "cabinent file" with the lastest iTunes?
    Thank you.
    -Kait
    My phone is the iPhone4 and my computer is a Windows Vista

    I doubt that corrupt files are the problem. It is more likely a space or permissions issue. Is the hard-drive on which iTunes is stored close to capacity? Do you (or the particular user profile you have logged on with) have the requisite permissions to save to that drive?
    Otherwise, do you get an error code? This might point us in the right direction.

  • Deleting files from the filesystem

    How can you delete a file from the filesystem in Java? Is it possible?
    Thanks

    File file = new File("c:\\test\\abc.txt");
    file.delete();

  • When I go to create a new project in imovie using the iPhone 5, I am not able to see any of my video clips or photos that are saved on the device.

    When I go to create a new project in imovie using the iPhone 5, I am not able to see any of my video clips or photos that are saved on the device.

    When you move or copy the compound clips with their events into an external drive all the events should be there. Not clear on why you want to move them into a single event. You can drag and drop from one event to another.
    Why are you using compound clips? You can simply copy the project from each machine with used media onto the external drive and that should do it.

  • Trying to back up iPad to external hard drive, "iTunes library file cannot be saved. The disk you are attempting to use is full."

    This issue is somewhat complex so I will try to explain it as clearly as I can. Any help will be greatly appreciated.
    It all began when I kept getting popups from my iPad saying that I had not backed up since May. I realized that was pretty dangerous so I decided to finally try syncing it to iTunes, though I had avoided doing so for so long because I knew that when I tried there was no room on the computer. I then remembered that I have an external hard drive with plenty of storage space, so I got that out and set it up with a folder to move iTunes and the backup into.
    On iTunes I went to the Advanced Preferences and changed iTunes Media Folder Location to the G: folder, with the keep organized box checked. I also copied the previous backups from the original C: drive to G: so that I could delete the ones on C:.
    I used Junction Link Magic to link my now empty MobileSync backup on C: to a new (JLM would not work unless it was empty) backup folder on external hard drive G:.
    I plugged in my iPad to iTunes to sync it, and while it was backing up I checked the new folder on G: to make sure that the backup was being put there. It was.
    However, about halfway through I got the message "iTunes library file cannot be saved. The disk you are attempting to use is full."
    My question is Why? If it is being made in a 1.5 terabyte hard drive now, and not the computer, why is there no disk space? My guess is that it must still somehow be saving to the computer. But how? And how can I get it to save solely on the G: drive where there is enough room?
    I am running Windows XP and the latest version of iTunes.
    An additional but not as crucial issue:
    Much of my music has been lost, with the being displayed next to the songs in the iTunes library, and only 50 (purchased) songs remain on my iPad. This was because those missing songs were stored on a different external hard drive ( I:). However, I copied many of the music folders on I: over to G: so that everything could be together. I am wondering if it is possible for me to get these songs back onto my iPad. But this is not my most important issue right now, because I believe that once I get the first issue solved I can simply plug in I: and G: at the same time while syncing the iPad, and get the songs back.
    Note: I have come to realize the iTunes program itself is still under Program Files in the C: drive. Does this have to do with anything?

    Short term, free up some disk space. Long term, move the library to a bigger drive.
    tt2

  • I have Iphoto '09, version 8.1.2 (424). I am having an identical problem.  All my pictures are imported into Iphoto when I downloaded them from my camera.  Until recently, I thought that the pictures were actually saved in the library.  Since I need to cr

    I have Iphoto '09, version 8.1.2 (424). I am having an identical problem.  All my pictures are imported into Iphoto when I downloaded them from my camera.  Until recently, I thought that the pictures were actually saved in the library.  Since I need to crop my pictures for the web, and Iphoto doesn't do that, I purchased Photoshop Elements to do that.  To my surprise, when I try to get a picture from Iphoto to Photoshop, it can't be done. That was when I realized, after wasting a lot of time, that the photos are not in the Iphoto library.
    I started naming the pictures on Iphoto so I had a recognizable file name to open on Photoshop. Couldn't find it.  I looked in the Backup folder and the Transfer software folder (I have a Nikon camera), and the names I entered in the Iphoto display, could not be found.
    When I am trying to upload a photo to the web, I get the Finder folder showing  with an active folder called "Photos" under "Media", which only displays Iphoto and PhotoBooth.  This is a folder name that I cannot find in my HD anywhere when I look for it.  If I edit a picture with Photoshop, I am not going to save it back to Iphoto (not sure whether it will work properly).  How do I get my folder of edited photos to show when I want to upload a picture to the web?
    Where (the name of the folder) do I find the pictures I see displayed on the Iphoto library, including any name changes, keywords added, and so on?

    See my response to your other post.

Maybe you are looking for