Uploaded files and Session id

I was wondering if it is possible to associate uploaded files in 'wwv_flow_files' with the session id of the session during which the file was uploaded. Is there any field in the 'wwv_flow_files' that provides the session info?
I need to generate a report that contains details of files uploaded during a particular session.
Any ideas?

Dimitri, Thanks for your response. Actually, we are trying to find out if there is any way to use the existing wwv_flow_file and somehow generate a report containing the documents uploaded by that particular user in that particular session! We are trying to avoid having to create a separate table, because then, we will need some kind of an ID to associate with each document, and our data related to that document is only submitted from the page that the report needs to be displayed on. So, we don't have a generated ID before generation of the report!
I dunno how much sense I am making...sorry if I am confusing u!

Similar Messages

  • How to upload file and show it's progress

    hi
    i want to upload files and show the progress of the upload
    process how?
    thanks in advance.

    Hey,
    I attached a sample I did in Flash 8 using PHP. Hope it
    helps.
    http://www.cybercussion.com/vault/fileuploading.zip

  • When I upload files and correct in lightroom then I export to another named file I keep getting two duplicates. numbered 1 and 2. this never happened before

    When I upload files and correct in lightroom then I export to another named file I keep getting two duplicates. numbered 1 and 2. this never happened before

    When I first upload to lightroom I set up a file called new photos. When I correct them I export to a newly named file. But when I go to the newly named
    File on my harddrive there are duplicate files
    Stan

  • File upload using commons-upload-file and tomcat 5.5

    Hi,
    This is my first post and I hope that I post it at the right place.
    I'm trying to upload a file using commons-upload-file and tomcat 5.5.
    Is there a way to prevent submitting a big file, If I detect that the file being uploaded exceed a limit that I have fixed ?
    i.e. I check the request length, if it's bigger than 1meg I cancel the whole thing and the big file is not transferred.
    The problem that I get at the moment is that it seems that the file is transferred even if I close request inputstream or response outputstream. Any help would be appreciated !
    Thank you
    Redgy

    Well here is a snippet of my code:
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            long maxSize = 50000;
            boolean isMultipart = ServletFileUpload.isMultipartContent(request);
            if(isMultipart){
                // Create a new file upload handler
                ServletFileUpload upload = new ServletFileUpload();
                upload.setSizeMax(maxSize);
                try {
                    upload.parseRequest(request);
                } catch (FileUploadException ex) {
                    ex.printStackTrace();
                    request.getInputStream().close();
                    response.getWriter().print("blah");
                    response.sendError(response.SC_INTERNAL_SERVER_ERROR);
                    response.getOutputStream().close();
        }If the file is bigger than 50kb, it Throws the FileUploadException.
    But whatever I do, It seems that there is still a connection between my browser and tomcat.. any clue ?
    thanks
    Edited by: redgyx on Jan 31, 2008 6:17 AM

  • HT4599 How do I upload photos from PC to icloud - loaded into upload file and does not seem to upload

    How do I upload photos from PC to icloud.  I have already moved photos to icloud upload file and nothing seems to upload.  jnelso1

    I have this problem too. Photo stream works fine on iPhone+iPad, but the photos are never loaded to my PC (Win 8.1). My shared folders works fine on iOS and PC, but not My photo stram.
    In the beginning, a couple of years ago, it work, but not now (2014).
    All iOS are updated, and PC-iCloud software/panel is Active, and Photo stream is activated.
    What to do??
    Reset all streams on PC? I tried, no result.
    I can understand that it takes time to reload all Pictures from iCload to my PC, but I wait Days, weeks...

  • How to upload file and put in BDC, need sample func specs to practice on...

    Hi guys,
    I do not have anything to do as of the moment, so I want to practice BDC on, lets say SU01. I have seen existing BDC programs here and I am confused as to why some are using read dataset, open dataset, etc. and others are not using them at all. Anyway, what I want to do is to create a flatfile and upload it then populate the fields in t-code SU01.
    Also, if its not too much, I want some functional specs or requirements that I can practice here in the office:)
    Again, thanks guys and have a nice day!:)
    Message was edited by: viraylab

    Hi,
    In order to practice BDC you better go through recording first through the Tcode SHBD. There you provide the name for the recording and also the Tcode you want to use for BDC. Once you complete with the recording you press the back button and click on program button in the application toolbar. You get the complete program written to execute the BDC in both session method and also Call transaction Method.
    BDC can be done using some flat files in presentation server as well as application server. Data sets will be used for loading the file from application server. For presentation server functions like Ws_Upload and WS_download will be used.
    So if you want to create Flat file in presentation server upload the same through BDC you use functions BDC_open group for opening a session,BDC_insert group to insert the flat file and bdc_close group to close after completion of the upload of data.
    Give me your mail id so that i can send you some specs for the same.
    Hope this helps you.
    Pls reward points for useful answers..
    Regards,
    Ram Mohan

  • Using ABAP Webdynpr How to Upload File and download file in SAP R/3

    Hi SAP GURUS ,
                             I wanted to save employee profile from ESS to SAP so i am creating ESS Application .
    For that I go with BDS Approach and create test program for this  I got success while uploading file in my folder
    which i have created with the help of class and content repository . but when i Using ABAP Webdynpro , i got error FM "BDS_BUSINESSDOCUMENT_CREATEF"  message " error_kpro " .
                           Also I wanted to use KM for storage of Documents and wanted to retrive with help of ABAP Webdynpro .
                           So pls tell me / mailed me the process , approach and if you have examples .
        Thanks in Advance ,
         Vishwassap at gmail

    Hi Vishwas,
    Check out the thread [Efficient way of saving documents uploaded|Re: Efficient way of saving documents uploaded by users; and check the blog by Raja Thangamani.
    Also check the thread [Export Images through Function Modules   |Export Images through Function Modules;.
    Hope it helps you.

  • Upload file and link to sales order in SAP via rfc (C#)

    Hello all,
    In my company we have the possibility to attach files to sales orders, e.g. pdf files with the printing details.
    These files are added by the GUI user, this works fine.
    Now we have an extra order creation stream in which a pdf file has to be added to the SO without user interaction.
    In a previous question I had a little question about the linking, that has been solved, I will post the test program later.
    I now can link front end files (pdf's in this case) to the sales orders and it works fine.
    Now we are developing a frontend in C# (build by a third party) which creates a sales order via a RFC. We also want that RFC to include the PDF file and link it to the created order.
    In the interface of the RFC I included a table with 255 char lines. That is the same as in the example program. the problem is that our partner is yet unable to fill the interface in exact the same way as the example program does, so the linked pdf file is corrupted.
    Does anyone have hints how C# should fill the interface table, or how I can change the interface?
    code snippid table declaration for pdf table:
    IT_PDF     LIKE     ZETEX_TAB_PDF
    and
    structure ZETEX_TAB_PDF consists of
    LINE     CHAR255
    the sample program (see other topic on where I got it)
    REPORT  zzfb_brc LINE-SIZE 260.
    * Report  Z_RMTIWARI_ATTACH_DOC_TO_BO
    * Written By : Ram Manohar Tiwari
    * Function   : We need to maintain links between Business Object and
    *              the attachment.Attachment document is basiclally a
    *              business object of type 'MESSAGE'.In order to maintain
    *              links, first the attachment will be crated as Business
    *              Object of type 'MESSAGE' using Message.Create method.
    *              Need to check if we can also use FM
    *              'SO_DOC_INSERT_WITH_ORIG_API1' or SO_OBJECT_INSERT rather
    *              than using Message.Create method.
    * I took this program and removed all the parts for adding URL's and
    * notes.
    * Include for BO macros
    INCLUDE : <cntn01>.
    * Load class.
    CLASS cl_binary_relation DEFINITION LOAD.
    CLASS cl_obl_object      DEFINITION LOAD.
    PARAMETERS:
    *  Object_a
       p_botype LIKE obl_s_pbor-typeid DEFAULT 'BUS2032',    "SO
       p_bo_id  LIKE obl_s_pbor-instid DEFAULT '0000757830', "example number
    *  Object_b
       p_docty  LIKE obl_s_pbor-typeid DEFAULT 'MESSAGE' NO-DISPLAY,
       p_msgtyp LIKE sofm-doctp        DEFAULT 'EXT'     NO-DISPLAY,
    *  Relationship
       p_reltyp  LIKE mdoblrel-reltype DEFAULT 'ATTA'.
    TYPES: BEGIN OF ty_message_key,
            foltp     TYPE so_fol_tp,
            folyr     TYPE so_fol_yr,
            folno     TYPE so_fol_no,
            doctp     TYPE so_doc_tp,
            docyr     TYPE so_doc_yr,
            docno     TYPE so_doc_no,
            fortp     TYPE so_for_tp,
            foryr     TYPE so_for_yr,
            forno     TYPE so_for_no,
           END OF ty_message_key.
    DATA : lv_message_key TYPE ty_message_key.
    DATA : lo_message TYPE swc_object.
    DATA : lt_doc_content TYPE STANDARD TABLE OF soli-line,
           ls_doc_content TYPE soli-line.
    * Create an initial instance of BO 'MESSAGE' - to call the
    * instance-independent method 'Create'.
    swc_create_object lo_message 'MESSAGE' lv_message_key.
    * Upload the pdf file, for now from the frontend, in the future from
    * the server.
    DATA:
    *  dsn(40) TYPE C VALUE '/usr/sap/trans/convert/1.pdf', "server location
    l_lines TYPE i. "filelenght
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename   = 'c:tsimple.pdf'
        filetype   = 'BIN'
      IMPORTING
        filelength = l_lines
      TABLES
        data_tab   = lt_doc_content.
    * no exceptions, the file is there in this example
    clear l_lines.
    loop at lt_doc_content into ls_doc_content.
    l_lines = l_lines + 255.
    endloop.
    compute l_lines =   l_lines
                      + STRLEN( ls_doc_content ).
    ** the coding for the server input, for later
    *OPEN DATASET dsn FOR INPUT IN BINARY MODE.
    *IF sy-subrc <> 0.
    *  EXIT.
    *ENDIF.
    *READ DATASET dsn INTO ls_doc_content.
    *WHILE sy-subrc EQ 0.
    *  APPEND ls_doc_content TO lt_doc_content.
    *  READ DATASET dsn INTO ls_doc_content.
    *ENDWHILE.
    *CLEAR ls_doc_content.
    *CLOSE DATASET dsn.
    * define container to pass the parameter values to the method call
    * in next step.
    swc_container lt_message_container.
    * Populate container with parameters for method
    swc_set_element lt_message_container 'DOCUMENTTITLE' 'Some title'.
    swc_set_element lt_message_container 'DOCUMENTLANGU' 'E'.
    swc_set_element lt_message_container 'NO_DIALOG'     'X'.
    swc_set_element lt_message_container 'DOCUMENTNAME' p_docty.
    swc_set_element lt_message_container 'DOCUMENTTYPE' 'PDF'.
    swc_set_element lt_message_container 'DocumentSize'    l_lines.
    swc_set_element lt_message_container 'DocumentContent' lt_doc_content.
    swc_call_method lo_message 'CREATE' lt_message_container.
    * Refresh to get the reference of create 'MESSAGE' object for attachment
    swc_refresh_object lo_message.
    * Get Key of new object
    swc_get_object_key lo_message lv_message_key.
    * Now we have attachment as a business object instance. We can now
    * attach it to our main business object instance.
    * Create main BO object_a
    DATA: lo_is_object_a TYPE sibflporb.
    lo_is_object_a-instid = p_bo_id.
    lo_is_object_a-typeid = p_botype.
    lo_is_object_a-catid  = 'BO'.
    * Create attachment BO object_b
    DATA: lo_is_object_b TYPE sibflporb.
    lo_is_object_b-instid = lv_message_key.
    lo_is_object_b-typeid = p_docty.
    lo_is_object_b-catid  = 'BO'.
    *TRY.
    CALL METHOD cl_binary_relation=>create_link
      EXPORTING
        is_object_a = lo_is_object_a
        is_object_b = lo_is_object_b
        ip_reltype  = p_reltyp.
    * Check if everything OK...who cares!!
    COMMIT WORK.

    I woudl suggest you check ORDERS05 IDOC type (ORDCHG message type).
    FM - idoc_input_ordchg

  • To upload file and save it in a location

    Hi,
    I need to upload an image file in database. and also save a copy of this uploaded image file in a particular location. If updating the image file, then i need to remove the previous image file and save the new one against a particular record.
    I did to upload. i want to save a new file and remove the previous file. how to do this?
    Thanks in advance

    Hi,
    Hope this help
    https://cn.forums.oracle.com/forums/thread.jspa?threadID=983109
    ADF Faces Intermedia image upload and Display
    http://baigsorcl.blogspot.com/2010/08/uplaoding-and-downloading-images-in.html
    http://baigsorcl.blogspot.com/2010/09/store-images-in-blob-in-oracle-adf.html
    ~Abhijit

  • Location of audio files and sessions

    Hi,
    This seems like such a basic question, but I can't figure out how to do this. I've been a Pro Tools user for the past several years, but I'm recently getting into Logic as well. I have 2 internal drives, one for my system files, and one for audio files/sessions. However, when I first installed Logic, it defaulted all the files to be saved onto my main hard drive (in Music\Logic). I want all of these files to be saved to my second drive, which contains all of my audio files. How do I change the location that these go into automatically? For now, I just dragged that folder over to my second hard drive and open the sessions off of that...but every time I create a new session, it tries to save it into that folder on the main drive. I have to manually browse to my second hard drive. I want it to automatically come up on my new path. How do I do this? Thanks for the help.

    OK, so I'm a bit confused. I think I may have messed some things up. I dragged my Logic folder to my second hard drive as that's where I want everything stored. One of the sessions is in process still, and I worked on it some today. I opened it from the folder on the second drive however, to assure that everything would be saved to that path when I saved it. However, for that session, when I go to project settings, recording, core audio recording folder....it has the ORIGINAL location (the primary hard drive). Are all the audio files still being stored to the original drive? All I want to do is change the default setting to be on my secondary drive and all sessions/audio data go to a Logic folder on that drive.

  • Advice on uploading files and process data

    Hi, I'm building an Apex application. It requires that users can sometimes upload data (csv) that will be validated and inserted into the database.
    For now I've created a component that uploads the file and copy it to my UPLOADED_FILES archive table as a blob. Now I need to create a process that review data from blob and, if posible, inform the user of incorrect lines.
    It seems that I need to recreate the file on the oracle server from the blob, then use SQL Loader to create an external table from that file and finally run my own validate/copy procedure over the external table data.
    So my questions are:
    - Is there a more proper way of doing this?
    - Can I create the external table directly from the blob, without recreating the file, and an oracle directory?
    - When using sql loader, how can I deal with quotes in the text? (the csv is generated from an spreedsheet, it can have text data with quotes that will be scaped, so a posible line will be (three fileds separated by semicolons):
    my data 1;"my data 2""some escaped quotes here""and a semicolon inside ; my data 2 final";my data 3;
    Will work the declaration: fields terminated by ";" optionally enclosed by '"' ?
    note '"' = apostrophe+quotation+apostrophe
    Thanks for your advice.

    user3917161 wrote:
    It seems that I need to recreate the file on the oracle server from the blob, then use SQL Loader to create an external table from that file and finally run my own validate/copy procedure over the external table data.
    So my questions are:
    - Is there a more proper way of doing this?The only other option is to manually parse the LOB yourself. So until Oracle provides external tables on LOBS too, this approach of writing it to external file for loading as an external table is a necessary evil.
    - Can I create the external table directly from the blob, without recreating the file, and an oracle directory?No.
    From Oracle® Database Administrator's Guide:
    "<i>Oracle Database provides two access drivers for external tables. The default access driver is ORACLE_LOADER, which allows the reading of data from external files using the Oracle loader technology. The ORACLE_LOADER access driver provides data mapping capabilities which are a subset of the control file syntax of SQL*Loader utility. The second access driver, ORACLE_DATAPUMP, lets you unload data—that is, read data from the database and insert it into an external table, represented by one or more external files—and then reload it into an Oracle Database.</i>"
    Perhaps we'll get a 3rd access driver in future that either supports LOBs, or enables us to define our own access driver (all that is needed as output from the driver is text lines - and this should not be that difficult to standardise as a custom interface to implement).
    - When using sql loader, how can I deal with quotes in the text? (the csv is generated from an spreedsheet, it can have text data with quotes that will be scaped, so a posible line will be (three fileds separated by semicolons):
    my data 1;"my data 2""some escaped quotes here""and a semicolon inside ; my data 2 final";my data 3;
    Will work the declaration: fields terminated by ";" optionally enclosed by '"' ?
    note '"' = apostrophe+quotation+apostropheBest is to try it and see whether it works. Also refer to the Oracle® Database Utilities for SQL*Loader syntax and options.

  • Upload file and update text at the same time

    I wanted upload a file and i have text box also, i know how
    to upload a file but the problem i cannot update the text box at
    the same time can anyone share how, I'm using the
    ASPSimpleUpload.Upload.
    please helpe thanks

    Do you mean something like this?
    SQL> create table table_name
      2  (column_a number
      3  ,column_b number
      4  ,column_c number
      5  ,date_column_d date
      6  );
    Table created.
    SQL>
    SQL> insert into table_name values (0,0,0,sysdate);
    1 row created.
    SQL> insert into table_name values (1,1,1,sysdate);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> create view view_name
      2  as
      3  select
      4  column_a,
      5  column_b,
      6  column_c,
      7  case when column_c = 1 then to_date('01-JAN-1900','DD-MON-YYYY')
      8       else date_column_d
      9  end  date_column_d
    10  from
    11  table_name;
    View created.
    SQL> select * from view_name;
                COLUMN_A             COLUMN_B             COLUMN_C DATE_COLUMN_D
                       0                    0                    0 12-DEC-2008 07:42:15
                       1                    1                    1 01-JAN-1900 00:00:00Edited by: SomeoneElse on Dec 12, 2008 7:42 AM

  • Upload File and Store it in R/3

    All,
    I want to upload the File from webdynpro to R/3. I want to store it in some Ztable. How can I do that. Can anyone help me. I already saw the upload/Download tutorial. Its not explaining how to read the uploaded file & stroe it in R/3.
    Pls help me..
    BM

    Hi Bharathi,
    You can find my code below. I can upload file to R/3.
           for (int k = 0; k <wdThis.wdGetContext().nodeRequisitionsTable().size(); k++)
                   IPublicNewPurchaseReqCust.IRequisitionsTableElement tn =wdThis.wdGetContext().nodeRequisitionsTable().getRequisitionsTableElementAt(k);
                   IPublicNewPurchaseReqCust.IFileUploadElement tableelement =wdThis.wdGetContext().nodeFileUpload().getFileUploadElementAt(k);
                   if(purgrptbl.getPurchaseGroup().equals(tableelement.getPurGroup()))
                   if (!(tn.getGr_Ind()))
                        if(tableelement.getFileSource()!=null)
                        IWDResource resource = tableelement.getFileSource();
                        Zbapi_Pr_Create_Attachment_Input inputattach = new Zbapi_Pr_Create_Attachment_Input();
                        wdContext.nodeZbapi_Pr_Create_Attachment_Input().bind(inputattach);
                        inputattach.setBanfn(wdContext.currentOutput_PRCreateElement().getNumber());
                   //file inputstream basla
                        Soli objhead1 = new Soli();     
                        objhead1.setLine("&SO_FILENAME="+resource.getResourceName());     
                        inputattach.addObjhead(objhead1);
                        Soli objhead2 = new Soli();
                        objhead2.setLine("&SO_FORMAT=BIN");     
                        inputattach.addObjhead(objhead2);
                        final int chunkSize = 255;
                        final byte[] chunk = new byte[chunkSize];     
                        try
                             final BufferedInputStream in
                               = new BufferedInputStream(tableelement.getFileSource().read(false));     
                             int size = this.getFileSize2(resource);
                             while((size=in.read(chunk, 0, chunkSize))> 0)
                        // If last chunk is partial, pad rest with zeros
                                  if ( size < chunkSize )
                                    Arrays.fill( chunk, size, chunkSize, (byte) 0);
                             //create new list object
                                  final Solix objbin = new Solix();
                             //write the byte array into the list
                                  objbin.setLine(chunk);
                             //add list to input node for RFC
                                  inputattach.addObjcont_Bin(objbin);
                          in.close();
                          catch (IOException e2)
                        e2.printStackTrace();
                   //file inputstream end
                        Sood1 headchange = new Sood1();
                        headchange.setObjla("TR");
                        headchange.setObjnam("Bildirim2");
                        int strleng=resource.getResourceName().length();
                        String Filename=resource.getResourceName().substring(0,strleng-4);
                        headchange.setObjdes(Filename);
                        headchange.setFile_Ext(resource.getResourceType().getFileExtension());     
                        headchange.setObjlen(Integer.toString(this.getFileSize2(resource)));
                        inputattach.setObject_Hd_Change(headchange);     
                   try
                        inputattach.execute();
                   } // END TRY
                   catch (WDDynamicRFCExecuteException ce)
                       IWDMessageManager manager = wdComponentAPI.getMessageManager();               
                         manager.reportException(ce.getMessage(), false);
                   } // END CATCH
                        }//if(tableelement.getFileSource()!=null)
                   }//!(tn.getGr_Ind()))           
              }//purgrptbl.getPurchaseGroup().equals(tableelement.getPurGroup())     

  • Issues with uploaded files and timestamps

    Hi All,
    I am building an app that will have 2 csv's uploaded daily, and compare results. The problem I have is that I can't seem to get the data into tables using the timestamp datatype.
    I fixed this by making the columns varchar2 rather than timestamp in a stage table, and am now trying to write a sql query that would move the data to the original tables.
    I have tried the "insert into <table_name> select ..." without any success.
    I get a "ORA-01401: inserted value too large for column" error.
    I have tried to use timestamp(0) - (6) as the datatype, and have tried to use the to_timestamp(field,'YYY-MM-DD-HH24.MI.SS')
    Here is my table(s) - note that the temp table is exactly the same, except the timestamps are converted to varchar2
    CREATE table "PRINT_RESULTS" (
       "OUTPUT_FILE"            VARCHAR2(65)       NOT NULL,
        "FOLDER_ID"               NUMBER                NOT NULL,
        "TIME_PROCESSED"   TIMESTAMP(0)       NOT NULL,
        "TIME_RECEIVED"       TIMESTAMP(0)       NOT NULL,
        "FILE_SIZE"                  NUMBER(10,0)       NOT NULL,
        "PROGRAM_USED"      VARCHAR2(50)      NOT NULL,
        "PRINT_FILENAME"      VARCHAR2(55)      NOT NULL,
        "DOCUMENT_CNT"       NUMBER(7,0)         NOT NULL,
        "SHEET_CNT"               NUMBER(7,0)        NOT NULL,
        "IMPRESSION_CNT"     NUMBER(7,0)         NOT NULL,
        constraint  "HVP_PRINT_RESULTS_PK" primary key ("ID")
    )And here is the select statement I have been using: insert into PRINT_RESULTS <br>Select "OUTPUT_FILE", "FOLDER_ID",
    to_timestamp("TIME_PROCESSED",'YYYY-MM-DD-HH24.MI.SS'),
    to_timestamp("TIME_RECEIVED",'YYYY-MM-DD-HH24.MI.SS'),
    etc...Any ideas would be greatly appreciated.
    Thanks in advance...
    Corey

    Corey,
    1) What does the data look like in your VARCHAR2 columsn TIME_PROCESSED and TIME_RECEIVED?
    2) What happens if you change your INSERT INTO SELECT, and for the timestamp columns in your select clause, change those for the time being to TO_TIMESTAMP(null)? Does the error still occur?
    Joel

  • Waveburner;  a few Questions regarding track files and Session Data

    After a bit of negotiating, I'm almost ready to burn. Was having problems with file locations and discovered that i had multiple files in different locations. Those have been eliminated and all relative track files are in one place now with the Song Data File as well.
    I then re-imported the individual aif tracks only to find that all of my fades and edits are GONE. It appears that I may have to DO THEM ALL OVER AGAIN! Please tell me that there is a work around.
    Is it possible to import only the Session Data related to the fades and edits(everything but the actual audio files), so as to avoid all this "do-again" work?
    I was also wonder if it is necessary, or perhaps a good idea, to change the File INFO for each of the individual audio track files from "OpenWith" iTunes (default setting) to "Open With": WAVEBURNER ?. (selectable on the aiff files, "Show More Info" window
    Currently the aif files are set to "OpenWith" iTunes (default)
    One last question please.
    Is Waveburner really up to snuff? How many people are using this for Mastering and Burning CD's? I'm about to start inserting some AU Mastering Plug Ins and I'm hoping for the best. Any other suggestions are greatly appreciated.
    G5 Dual 2.0/PBook G41.5Ghz/LogicPro7 Live5 Reason3.0 PansncDA7 TascamFW1804   Mac OS X (10.4.7)  

    You're grammer isn't bad jord, it was I who asked a plethora of questions under one Subject heading.
    When i open the project file(.wb3),
    The prompt says;
    "Please choose a replacement from the list below:"
    /Volumes/320GB HD/Users/ahuihou/.Trash/1 Track 01.aiff
    /Volumes/320GB HD/Users/ahuihou/.Trash/2 Track 02.aiff
    /Volumes/320GB HD/Users/ahuihou/.Trash/3 Track 03.aiff
    /Volumes/320GB HD/Users/ahuihou/.Trash/4 Track 04.aiff
    /Volumes/320GB HD/Users/ahuihou/.Trash/6 Track 06.aiff
    As you can see the files are in the trash.
    The first problem is that there are no actual files in the trash. Just an icon of a CD Disc which was dragged there to eject it, It is no longer in the disc drive/tray. Perhaps i should put the disc back in the drive and then update/replace the files afterwords. (The CD is scratched.)
    The strange thing is that i can still preview the track that's in the trash by selecting More Info and playing it on the little Quicktime player bar. I guess the file is in a cache somewhere?
    I've looked everywhere on all drives for the specific files but can not find them anywhere.
    In the Replacement prompt there is a place that I can check to "Search in the same folder for subsequent files" button on the "Replacement" prompt.
    which "same folder" is it refering to?
    The Trash folder where the old files are or the Folder where the actual .wb3 project file is? I do have all of the correctly named song files/regions in the same folder with the project file.
    maybe i should just start again. i'm not one to give up easy though and would much prefer to "beat" the computer at the game.

Maybe you are looking for