File search in a folder stored on a server

hi guys.
I need to write a program which seaches a file in a folder stored on a server for upload. The next time the program searches again it must not pick files that have already been uploaded. I am wondering if there is a way to that?
Thank you in advance.
willard

Hi and welcome willard,
1) use fm EPS_GET_DIRECTORY_LISTING for searching
2) mark your processed files:
a) rename your file with mv ->
Re: FM to rename   files in ABAP
   e.g.: mv data_2006_001 data_2006_001.FIN
or b) save your processed files in customer-table and validate aginst that table
hope taht helps
Andreas
P.S.
please reward useful answers
Thank you !

Similar Messages

  • Saving a file in a particular folder over the tomcat server

    I have a java class in the background of a JSP which creates an XML file and saves it.
    Furthermore another class picks that file and processes it. While running this program on my local computer it is obviously working fine but in order to run it on a tomcat server or for that matter any server, I want it to save the XML file in a particular folder, for example:
    tomcat_home/webapps/myapplication/ xmlfolder / something. xml
    so that my other class can easily pick up the file and I dont need to change the location each time I change the server.

    You can get the context root(the place from wher the aplication is running) of your application and then save the file somwhere, but i >>woulden't recomend that. But this is what you are looking for.How ?
    You can also just save the file, it will be saved in a temp directory. (use this only if the file is a temp file not for storing purposes)Just saving the file somehow doesnt work for me as the folder where a class is saving a file by default is somehow different from the folder where another class is trying to pick a file by default. Even if I give no path
    Other option is just to configure a tomcat system variable that specifys an folder. You can get that property from your application and >>then save the files there.Im not able to consider this one because the application will be put on different servers by different people later so they would all then need to configure their systems just to read a file. I was sure there were better ways. :(

  • EML files sitting in queue folder on SharePoint 2010 server

    Okay, so the incoming email is actually making it to the SharePoint 2010 server.  I actually sent 4 emails from my outlook to the sharepoint site library email.  the emails are inside of the queue folder on the sharepoint server.  Why would
    this be?  and tje emails all satrt off with NTFS_...

    Hello,
    Same here as well. all mails were going to sitting in queue folder prefixed with NTFS_.
    Then I did a telnet {FQDN} 25
    helo {server FQDN} 
    mail from:{your email address} 
    rcpt to:{email address of email enabled library} 
    give 250 success code if everything looks great.
    In my case it gave me 
    501 5.5.4 
    then checked the SMTP Server Domain , was different then changed to correct one it worked fine. 
    Regards
    Yogesh
    YOGESHA H P(MCTS)

  • How to check whether file exist in a folder at the application server

    Hi to all experts.
    if suppose there is a file at the application server test.txt my requirement if the one more file is created of the same name before overwriting the file a warning message is to displayed to the user that the file already exist .
    how to do it

    HI Mohammed,
    use The FM DX_FILE_EXISTENCE_CHECK
    or static class CL_GUI_FRONTEND_SERVICES=>FILE_EXIST
    For more info
    search file in application server
    application server
    hope it helps you.
    Regards!

  • I lost a Mail folder stored on the .Mac server:  Now how do I restore it?

    With the new .Mac Mail put in place today, I somehow deleted a mail folder stored on the server. Fortunately, I just backed up this file last night.
    Specifically, I backed it up by click-dragging all the mail stored on the Mail .Mac server to my desktop. That desktop file reads: Mac-username
    Inside that desktop file, virtually all the mailboxes end with .imapmbox
    Problem is, I can't figure out how to restore this folder. I tried turning Mail off and inserting the desktop backup copy into Library/Mail, etc., then restarting, but the one missing folder does not reappear on the server!
    Perhaps I need to erase all the .Mac Mail files on the server first?
    Any help greatly appreciated.
    MacBook Pro, iMac 20" Intel Core Duo   Mac OS X (10.4.8)   Would like to sell my iMac 20" Intel Core Duo (1GB)

    You’re welcome.
    I don’t think what you observed was caused by something you did wrong. Rather, it looks like a glitch in Mail.
    As to how messages on the server can be backed up, I’d rather (1) copy them into custom "On My Mac" mailboxes in Mail first, then backup these, or (2) save them in standard mbox format (which must be imported as Other to bring them back into Mail), i.e. do File > Save As and choose Raw Message Source from the Format popup menu.
    Backing up the data that Mail caches locally isn’t safe because it might or might not allow you to recover the messages afterwards depending on a variety of things, such as the account settings and the format used by the mail client to cache the messages locally (if any). What you did wouldn’t have worked in Mail 1.x without the aid of a third party utility, for example, no matter what the settings.

  • How to move all files from a folder for a user to a centralized folder on a core server

    Hello,
    I'm curious if there is a batch file that can be made to move the contents that are setup like this....
    I'm having to redo a TS cluster and I'd like to make a batch file script that can be executed that moves the contents of say 'jsmith's local desktop profile @ \\NGTTS1\users\jsmith to a centralized folder on our roaming desktop profile server that saves
    all of the files for the desktops @ \\NGTFS1\users\jsmith.
    The problem I have is no matter what I tell users to save there files to our Y drive that is a folder that is synced across all 6 of our TS servers, users still store files on there desktops, so as you can imagine if one day they are on one server, then
    next day they could be on another and there files aren't the same.... hence the reason why I want to move all there files to the centralized server so when I redo the profiles from scratch on the TS server in the farm they suck files from the core server and
    have all of the files they are used to having.... 
    Now I know I can do this with a MOVE command I've just never done one to this exact.
    Hopefully someone knows the command to move all the contents of one folder on one server to the folder on a different server. I've already got the bulk of the coding done of the .bat script I just don't know this move command:
    would it be this:
    move \\NGTTS1\users\jsmith *.* \\NGTFS1\users\jsmith
    any help would be appreciated, I'm sure this is a easy command to do!
    This is the coding I have so far....
    @echo off
    color 0A
    title Moving Local Profile folder to Centralized Profile Folder on Core Server.
    :start
    echo Welcome, %USERNAME%
    echo What would you like to do?
    echo.
    echo 1. Moving Local Profile folder to Centralized Profile Folder on Core Server
    echo. 
    echo 0. Quit
    echo.
    set /p choice="Enter your choice: "
    if "%choice%"=="1" goto Move-user-profiles
    echo.
    if "%choice%"=="0" exit
    echo Invalid choice: %choice%
    echo.
    pause
    cls
    goto start
    :Move-user-profiles
    echo.
    set /p profile="Enter user profile: "
    move "\\NGTTS1\users\%profile%" *.* "\\NGTFS1\users\%profile%"
    echo moving files from local profile folder to FS1 profile server, stand-by...
    echo.
    goto cancel-special 
    :cancel-special
    set /p cancel="Type cancel to stop action: "
    if not "%cancel%"=="cancel" exit
    cls
    echo Action is cancelled.
    echo.
    pause
    exit

    In Windows we would do this using Group Policy.  There is a Policy setting that csn move the Desktop folder to any server you want to move it to.  Once set it will automatically do this for you.
    You should post in the Group Policy forum to find out how we use Group Policy to manage users profiles in Windows.
    You cannot use a script to relocate a users Desktop folder.  The desktop is locked by the time the users logon script is finished running.  It the desktop and profile are already being managed by Group Policy then this can only be done with GP.
    There are also numerous issues associated with deployment and re-deployment that you need to address  Post your questions in the Winows Deployment forum to get assistance with deployment issues.
    Again - want you are asking is not generally possible because of how Windows is designed.  This would only likely work on a simple system or on a stand alone PC and then only under a very limited set of circumstances.
    Use GP folder redirection to do this.  For deployment use Deployment Forum and for TS specific issues post in the RDS forum. 
    All of  this needs to be considered correctly for TS users inn a TS Cluster environment. (TS Cluster?? - not sure what you mean by that.
    ¯\_(ツ)_/¯

  • ITunes not storing files in iTunes media folder location

    A number of years ago I wanted to move my itunes media files to an external drive. At the time an article was posted that explained how to do such that. Additionally the article explained how to put the media files in one folder on the external file server and all the itunes definition files in another folder on the same external file server. It worked perfectly! All seemed well. Of course since making this change there have been many many updates to iTunes and the OS.
    Recently, I was scanning through the folders of the external file server and noticed some media files that appeared in the iTunes application listing were missing in the physical iTunes media folder (folder A). After a little searching I found the media files were in the iTunes definitions folder (folder B). Initially I thought somehow I had changed the folder location under the iTunes advanced tab. I checked it stilled pointed to the ORIGINAL folder A location. Yet iTunes had for a while as it turns out had created a whole new media folder tree and was adding the media files to that media tree (folder B). This is the folder the original only contained the iTunes definitions.
    Thinking I had made a mistake somewhere sometime ago, I copied all the media files to the proper folder (folder A) and reset the iTunes Media folder location to point to folder A. All was fine.
    Today I added some new media to the iTunes library and once again, iTunes created a new media folder tree in folder B were only the iTunes definitions are supposed to be stored. So once again I moved the media files to the proper folder.
    There is no question THIS IS A SOFTWARE BUG. It does NOT matter what folder location is specified in the Preferences->Advanced->itunes media location is specified, iTunes will either CHANGE the folder location to wherever the definitions files are located or begin putting the media files where the definitions files are located even though the iTunes media location is setting to a different folder.
    when this started I do not know. I have been using itunes for a number of years and once I had my external file server set up never had reason to check it.
    One might ask why put the media files in one location and the definition files in another location. That is because there was a time when iTunes for some reason would think it definition files were corrupted and start to do nasty things to the media library. Once I lost a number of songs it is then when I found a note in this forum that suggested putting the definitions in one folder and the media in another folder. It was great idea. Is there a work around of a fix for this bug?

    Some additional information.
    When I click the apps tab in iTunes, some of the applications listed are actually songs (the songs are also shown in the music list and point to the proper location), when I click Get Info on some of the apps, it points to a song, and some apps that actually exist in the Mobile Apps folder are shown to located in a song folder. Bottom line the apps database is corrupted.
    When I consolidated the music files I did not touch the mobile applications folder. As best I can tell all the movies and songs are fine (about 3000 items in total).
    When I export the library it does not include the apps in the xml file. So deleting the iTunes DB and re-importing the .xml will not work.
    To recap. All the songs and movies are in one folder (folder A). This is the folder listed in the Preferences->Advanced->Itunes media location. The apps folder is located in a different folder (folder B) where the iTunes definition files are located. How they got there I do not know.
    How do I fix the apps tab and have the app icons (and physical applications) to point to the proper location? Also to remove the songs listed in the apps list without removing the song from the iTunes library.

  • Looking for answers on XMP files - where should they be stored as sidecar files?  With the original raw file or in a separate folder?

    Looking for answers on XMP files - where should they be stored as sidecar files?  With the original raw file or in a separate folder?
    Relatively new user of Adobe LR5 and PS CC, about a year old. 
    If they should be stored somewhere beside the folder that contains the originals, where and how to change the settings?
    If I choose to write metadata to the original files, is that sidecar files or does the XMP file show separately?
    To be honest, I usually find a video and I cannot figure this out.  I have never received an answer on any of my questions by the way. 

    Hi there,
    You answered a prior question from me so I wanted to reach out to you about this.   I just need a step by step on how, if possible, to View LRCC on my MacBookPro when the main interface is on my iMac

  • The file "search.savedSearch" couldn't be saved in the folder "Today".

    The file “search.savedSearch” couldn’t be saved in the folder “Today”. No mention of where this directory/folder is ...
    This is the error message I get every time I try to access 'Open an Existing WorkFlow' in Automator.
    I am just starting to learn how to use this app. I have tried looking for files of this name and even content and have tried to scan my time machine backups but no luck. I realise this must be a working file keeping track of recent files opened by the OS but I have found nothing under System e.t.c. Any help as to how I can solve this would be appreciated.

    I have no idea why you're getting any message associated with a smart folder. When you click on the *Open an Existing WorkFlow* button when launching Automator, you should get a Open dialog window asking for you to drill to the workflow location. The OS supplied workflows are in /Library/Application\ Support/Apple/Automator/Workflows/. Ones you create are where you store them. All I can suggest is to move the com.apple.Automator.plist and com.apple.Automator.LSSharedFileList.plist files out of your user's /Library/Preferences/ to the Desktop, restart, and try Automator again.

  • Search string in any type file of a specified folder(DW能查找任意类型文件中的源代码吗)

    If search a string in a unfrequent type file,we can add this type in DW's  MMDocumentTypes.xml.
    But if a project has many many different unfrequent type files,I hope DW can support search string in any type file of a specified folder.
    Can DW help me? I really love DW very very much.

    hello shweta,
    Here is a batch script that will do this for you:
    batch file begin ********************************************
    @ ECHO OFF
    :READFILE
    SET | FIND "SEARCH_STRING" source.txt > NUL
    IF ERRORLEVEL 1 GOTO READFILE
    IF ERRORLEVEL 0 GOTO END
    sleep 5
    GOTO READFILE
    :END
    batch file end ***********************************************
    here, SEARCH_STRING is the string that will be searched in file source.txt. This SEARCH_STRING denotes the end of file (the file is ready to be transferred).
    This batch file should be called from PI "Run OS command before processing of the message".
    I tried this on my system and it worked for me.
    Just check at your end. I hope this will solve your query.
    Regards, Gaurav.
    Edited by: Kr.gaurav on Sep 9, 2010 3:54 PM

  • Huge file in one of the search index partition folder

    Hi,
    I got a very strange situation in my SP farm. I have two index partitions on two WFE servers, each has Index Partition 0 and 1. On one of them, starting yesterday a very huge file grew over 30GB in the Index Partition 0 - Journal folder. I found the same
    file in other Journal folder, most of them with less than 100MB.
    Anyone has insight on this kind of behavior? Thanks in advance!
    Regards,
    Edwin

    Hi Edwin,
    Please help collect the following information for further troubleshoot:
    1.Check the Search Application Topology if the index partition is in normal state.
    2.Check the ULS log if there are any errors when the issue happened.
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Create a Document with an original file stored on application server

    Hello,
    I start with document managment system : i am able to create new document (CV01N) manually, add a local file and check-in this file.
    Now we need to store file which are stored on the SAP Application Server.
    Firstly, in the GUI of transaction CV01N, i don't know how to browse file on application server. All files i can't attach as original, are files i can access from my computer.
    Is it possible to access also on application server files ?
    Moreover, i have to define function module which have to
    - Create a document (DMS)
    - Attach an orginial file which is stored on application server
    - Check-in the file
    This function module will be called from a web application
    I define this kind of function and run it correctly with a local file (stored on my computer) : i call BAPI "BAPI_DOCUMENT_CREATE2" and "BAPI_DOCUMENT_CHECKIN2"
    But i don't how to do with a file stored on application server. I see also note 504692 and try a program like ZZUZTEST_TEST_CHECKIN which use FM CVAPI_DOC_CHECKIN but it return an error Error uploading  E:\usr\sap\TD1\DVEBMGS00\data\FACTURE.txt" (this path and file exist on application server and is really the file i want to checkin)
    Please could you confirm what i search, is possible or not.
    If possible, could help me with some explanations and guidelines and perhaps a sample ?
    Thank you very much.
    Regards,
    Eric
    The function used
    FUNCTION Z_TEST_CHECKIN.
    Checkin the first original of a document info record *
    from the application server and/or in the background *
      data   : w_host like BAPI_DOC_AUX-HOSTNAME.
      data: lf_line(255).
      data: ls_draw like DRAW,
            ls_message_cvapi like messages,
            lt_files_cvapi type standard table of CVAPI_DOC_FILE,
            lt_files_cvapi_header like CVAPI_DOC_FILE.
      data: lt_originals LIKE cvapi_doc_file OCCURS 0 WITH HEADER LINE,
            vo_originals LIKE cvapi_doc_file OCCURS 0 WITH HEADER LINE.
      ls_draw-dokar = 'ZFT'.
      ls_Draw-doknr = '0000000000000004500000032'.
      ls_Draw-dokvr = '00'.
      ls_Draw-doktl = '000'.
    Read Originals contained in the document info record
      CALL FUNCTION 'CVAPI_DOC_GETDETAIL'
        EXPORTING
          pf_batchmode    = 'X'
          pf_hostname     = ' '
          pf_dokar        = ls_draw-dokar
          pf_doknr        = ls_draw-doknr
          pf_dokvr        = ls_draw-dokvr
          pf_doktl        = ls_draw-doktl
          pf_active_files = 'X'
        IMPORTING
          psx_draw        = ls_draw
        TABLES
          pt_files        = vo_originals
        EXCEPTIONS
          not_found       = 1
          no_auth         = 2
          error           = 3
          OTHERS          = 4.
      IF sy-subrc <> 0.
        WRITE 'Error returned by CVAPI_DOC_GETDETAIL'.          "#EC NOTEXT
        EXIT.
      ENDIF.
    Check if we can really access the file from the application server
      read table vo_originals index 1.
      open dataset vo_originals-filename for input in text mode ENCODING DEFAULT.
      if not sy-subrc is initial.
        message e500(26) with vo_originals-filename 'not found'.
      endif.
      read dataset vo_originals-filename into lf_line.
      if not sy-subrc is initial.
        message e500(26) with vo_originals-filename 'read error'.
      endif.
      lt_originals             = vo_originals.
      lt_originals-STORAGE_CAT = 'SAP-SYSTEM'.
      append lt_originals.
      w_host = sy-host.
      CALL FUNCTION 'CVAPI_DOC_CHECKIN'
      EXPORTING
      PF_DOKAR = ls_draw-dokar
      PF_DOKNR = ls_draw-doknr
      PF_DOKVR = ls_draw-dokvr
      PF_DOKTL = ls_draw-doktl
    PS_DOC_STATUS =
      PF_FTP_DEST = 'SAPFTPA'
      PF_HTTP_DEST = 'SAPHTTPA'
    *PF_HOSTNAME =  w_host
    PS_API_CONTROL =
    PF_REPLACE = ' '
    PF_CONTENT_PROVIDE = 'SRV'
      IMPORTING
      PSX_MESSAGE = ls_message_cvapi
      TABLES
      PT_FILES_X = lt_originals
    PT_COMP_X =
    PT_CONTENT =
      IF ls_message_cvapi-msg_type CA 'EA'.
        ROLLBACK WORK.
        MESSAGE ID '26' TYPE 'I' NUMBER '000'
        WITH ls_message_cvapi-msg_txt.
      ELSE.
        COMMIT WORK and wait.
      ENDIF.
    ENDFUNCTION.

    This is a bit tricky. I spent lots of hours about this .
    You have to set PF_HOSTNAME with your name of your AS and gives the path to the file on the server.
    You wrote
    *PF_HOSTNAME = w_host
    But beware: if you have more thän one AS you have to fix one AS for upload or you have to find the servers name of the file. A better way can be to share one folder by each AS.
    You also have to decide between HTTP or FTP.
    You wrote:
      PF_FTP_DEST = 'SAPFTPA'
      PF_HTTP_DEST = 'SAPHTTPA'
    You must define only one ! Then you have to check your settings in SM59 about working right.
    Pls rate, if this was helpful.
    Regards,
    Markus

  • DME files not getting stored in Appl Server .

    Hi All ,
        Please help me to solve this issue ..
         My DME files is not getting stored in the application server directory created by me , rather it is getting stored in the
        TEMP folder of the application server . How Can I store the DME output files in my application server , please let me know if I have missed any steps .
    Regards,
    Ranjita

    Hi,
    FUNCTION YFI_PAYMEDIUM_DMEE_20_F2.
    ""Global Interface:
    *"  IMPORTING
    *"     VALUE(I_FPAYH) LIKE  FPAYH STRUCTURE  FPAYH
    *"     VALUE(I_FPAYHX) LIKE  FPAYHX STRUCTURE  FPAYHX
    *"     VALUE(I_FORMAT_PARAMS) LIKE  FPM_SELPAR-PARAM
    *"     VALUE(I_FILENAME) LIKE  REGUT-FSNAM
    *"     VALUE(I_XFILESYSTEM) TYPE  DFILESYST
    *"  TABLES
    *"      T_FILE_OUTPUT STRUCTURE  FPM_FILE
    *"  CHANGING
    *"     REFERENCE(C_FILENAME) LIKE  REGUT-FSNAM
    put filename
      DATA: Y_FILENAME TYPE REGUT-FSNAM,
            T_FILENAME TYPE STANDARD TABLE OF REGUT-FSNAM WITH HEADER LINE,
    structures filled by application program
                L_FPAYH  TYPE FPAYH,
    *structure for bank data
      L_BANKDATA TYPE YFI_BANK_AD_DATA,
    *date
       W_DATE(10) TYPE C,
    *counter
       W_CHAR(3) TYPE N,
    *dot
       W_DOT(1) TYPE C VALUE '.',
       W_LEN TYPE I,
       W_POS TYPE I.
    fill strutures of payment documents
      L_FPAYH   = I_FPAYH.
    Get the Client code( Source Code )
    based on the Company code ,House Bank and Bank Id
      SELECT SINGLE * FROM YFI_BANK_AD_DATA
      INTO CORRESPONDING FIELDS OF L_BANKDATA
      WHERE Z_BUKRS  = L_FPAYH-ZBUKR AND
      Z_BANK = L_FPAYH-HBKID AND Z_BANKID = L_FPAYH-HKTID.
    *today's date
      W_DATE = SY-DATUM.
    *make file name as per bank
    IF L_FPAYH-HBKID cp 'HSP01*'.
    IF L_FPAYH-HBKID cp 'HS*'.
       CONCATENATE '/data/fi/epay/hsp01_int/' '%' L_BANKDATA-Z_CLIENTC(4) W_DATE6(2) W_DATE4(2) w_date(4) L_FPAYH-LAUFI
            '.___' INTO Y_FILENAME.
    CONCATENATE '/data/fi/epay/pearl2/' '%' L_BANKDATA-Z_CLIENTC(4) W_DATE6(2) W_DATE4(2) w_date(4) L_FPAYH-LAUFI
             '.___' INTO Y_FILENAME.
    ELSE.
       CONCATENATE '/data/fi/epay/icp01/' '%' L_BANKDATA-Z_CLIENTC(4) W_DATE6(2) W_DATE4(2) W_DATE+2(2) '.___' INTO Y_FILENAME.
      ENDIF.
    *is there any entry for given key
      SELECT COUNT( * ) FROM REGUT WHERE DWNAM LIKE Y_FILENAME .
    *if none
      IF SY-SUBRC <> 0.
    *this wud be first file - remove % from file name
        W_LEN = STRLEN( Y_FILENAME ) - 22.
        Y_FILENAME = Y_FILENAME+22(W_LEN).
       IF L_FPAYH-HBKID cp 'HSP01*'.
        IF L_FPAYH-HBKID cp 'HS*'.
         CONCATENATE '/data/fi/epay/hsp01_int/' Y_FILENAME INTO Y_FILENAME.
    CONCATENATE '/data/fi/epay/pearl2/' Y_FILENAME INTO Y_FILENAME.
       ELSE.
         CONCATENATE '/data/fi/epay/icp01/' Y_FILENAME INTO Y_FILENAME.
        ENDIF.
        SPLIT Y_FILENAME AT W_DOT INTO Y_FILENAME W_CHAR.
        W_CHAR = '001'.
    *if yes
      ELSE.
    *existing file name
        SELECT DWNAM FROM REGUT INTO TABLE T_FILENAME WHERE DWNAM LIKE Y_FILENAME
        AND DWNAM NE SPACE.
    *get file name with max counter
        LOOP AT T_FILENAME.
          Y_FILENAME = T_FILENAME.
          DO.
            SEARCH Y_FILENAME FOR '\'.
            IF SY-FDPOS = 0.
              EXIT.
            ELSE.
              W_POS = SY-FDPOS + 1.
              W_LEN = STRLEN( Y_FILENAME ) - W_POS.
              Y_FILENAME = Y_FILENAME+W_POS(W_LEN).
              MODIFY T_FILENAME FROM Y_FILENAME .
            ENDIF.
          ENDDO.
        ENDLOOP.
        SORT T_FILENAME DESCENDING.
        READ TABLE T_FILENAME INDEX 1.
        Y_FILENAME = T_FILENAME.
    *increment the counter by 1.
        SPLIT Y_FILENAME AT W_DOT INTO Y_FILENAME W_CHAR.
        TRY.
            W_CHAR = W_CHAR + 1.
          CATCH CX_SY_CONVERSION_NO_NUMBER.
    *-- Make it first file
           W_CHAR = '001'.
        ENDTRY.
      ENDIF.
    *put file name
      CONCATENATE Y_FILENAME  W_DOT  w_char INTO Y_FILENAME.
    *export to ABAP memory id will be used by filename node in header
      EXPORT Y_FILENAME TO MEMORY ID 'Y_DMEE_FILENAME'.
    CONCATENATE '/data/fi/' y_filename INTO y_filename.
      C_FILENAME = Y_FILENAME.
    *}   INSERT
    ENDFUNCTION.

  • I want to import my bookmarks from my old hard drive to my new computer. Old hard drive is in new computer as secondary drive, can't run firefox from it. Would like to find the file where my bookmarks are stored

    have looked in the old hard drive for the file where my favorites would be stored. the only file that I can find is not the latest. I did not back up my favorites on the old computer.

    Bookmarks are no longer stored in an html file. Instead, they are stored in a file called '''places.sqlite''' in your '''Profile''' folder.
    # Locate the '''places.sqlite''' file in your old hard drive.
    # Copy it into the '''Profile''' folder of your new hard drive.
    # Note that since you would be overwriting the places.sqlite in your new drive, your current bookmarks/history etc would be overwritten by the ones in the old drive.
    For more information, see these articles:
    [http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile Recovering important data from an old profile] and [http://kb.mozillazine.org/Places.sqlite places.sqlite]
    If you wish to know how to locate your Profile folder, read this article: [https://support.mozilla.com/en-US/kb/Profiles Profiles].

  • My MacBook Pro (Mountain Lion) seems to be making copies of files in my download folder.  Why is this happening and how do I stop it?

    My MacBookPro with Mountain Lion seems to be making copies of files in my download folder.  Why is this happening and how do I stop it?

    This issue has nothing to do with Time Machine or local snaphsots. No built-in feature of OS X does what you describe.
    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions — they’re easy to carry out and won’t change anything on your Mac. 
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing. 
    Below are instructions to enter some UNIX shell commands. The commands are harmless, but they must be entered exactly as given in order to work. If you have doubts about the safety of the procedure suggested here, search this site for other discussions in which it’s been followed without any report of ill effects. 
    Some of the commands will line-wrap or scroll in your browser, but each one is really just a single line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then either copy or drag it. The headings “Step 1” and so on are not part of the commands. 
    Note: If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. The other steps should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply. 
    Launch the Terminal application in any of the following ways: 
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.) 
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens. 
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid. 
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign. 
    Step 1 
    Triple-click the line of text below to select it:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}' 
    Copy (command-C) the selected text to the Clipboard. Then click anywhere in the Terminal window and paste (command-V). Post the lines of output (if any) that appear below what you just entered. You can do that by copy-and-paste as well. Omit the final line ending in “$”. No typing is involved in this step.
    Step 2 
    Repeat with this line:
    sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|edu\.mit|org\.(amavis|apache|cups|isc|ntp|postfix|x)/{print $3}' 
    This time, you'll be prompted for your login password, which you do have to type. It won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning. 
    Note: If you don’t have a login password, you’ll need to set one before taking this step. If that’s not possible, skip to the next step. 
    Step 3
    launchctl list | sed 1d | awk '!/0x|com\.apple|edu\.mit|org\.(x|openbsd)/{print $3}' 
    Step 4
    ls -1A /e*/mach* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Spo,Sta}* L*/Fonts 2> /dev/null  
    Important: If you formerly synchronized with a MobileMe account, your me.com email address may appear in the output of the above command. If so, anonymize it before posting. 
    Step 5
    osascript -e 'tell application "System Events" to get name of every login item' 2> /dev/null 
    Remember, steps 1-5 are all copy-and-paste — no typing, except your password. Also remember to post the output. 
    You can then quit Terminal.

Maybe you are looking for

  • AirPlay & Cinema Display HD

    Is there a way to connect my Cinema Display HD to an Apple TV and therefore to use AirPlay?

  • JSP Session in a Javascript Window

    When I open a javascript window (with window.open) and use session cookies everything works. In the new javascript window I have no problems to navigate. After disabling cookies I tried to open the javascript window again and get the following errorm

  • To know schema using table name

    Can I know the schema using the table name.

  • Why are my Photoshop images interlaced?

    Is that just an effect FCP throws into to make the progressive frames look like the rest of your footage, or is FCP actually interlacing my Photoshop files? I can run some tests and figure it out but if someone has a quick answer, it'd be much apprec

  • I can't create database - ORA-604 and ORA-1519

    *** SESSION ID:(9.5) 2006-02-01 16:00:17.093 ORA-00604: error occurred at recursive SQL level 1 ORA-00000: normal, successful completion Offending statement at line 647 create tablespace SYSTEM datafile '/u03/oradata/MMSTUS/system01.dbf' SIZE 200M AU