Missing Setting from 5.0.4

I just updated and am missing the following settings:
Top menu>View>Video Playback>Apple Firewire NTSC (720x480)
Top menu>View>Audio Playback>Audio Firewire DV
How do I get these back?
Thanks-

Hi Geo, that's not really a setting, it's a link to an external device of yours (camera, deck, or converter).
Assuming the device is still there, plugged in, and powered on:
First do option-F12 or Refresh A/V and see if it shows up.
If not try power cycling/reconnecting the device and Refresh again.
If not that then look in System Profiler to see whether it shows up there.
If none of those then report back and somebody smarter will have an answer...
I have seen advice but not experienced a need to roll tape in some cameras before they are seen by FCP.

Similar Messages

  • Insert old missing data from one table to another(databaase trigger)

    Hello,
    i want to do two things
    1)I want to insert old missing data from one table to another through a database trigger but it can't be executed that way i don't know what should i do in case of replacing old data in table_1 into table_2
    2)what should i use :NEW. OR :OLD. instead.
    3) what should i do if i have records exising between the two dates
    i want to surpress the existing records.
    the following code is what i have but no effect occured.
    CREATE OR REPLACE TRIGGER ATTENDANCEE_FOLLOWS
    AFTER INSERT ON ACCESSLOG
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    DECLARE
    V_COUNT       NUMBER(2);
    V_TIME_OUT    DATE;
    V_DATE_IN     DATE;
    V_DATE_OUT    DATE;
    V_TIME_IN     DATE;
    V_ATT_FLAG    VARCHAR2(3);
    V_EMP_ID      NUMBER(11);
    CURSOR EMP_FOLLOWS IS
    SELECT   EMPLOYEEID , LOGDATE , LOGTIME , INOUT
    FROM     ACCESSLOG
    WHERE    LOGDATE
    BETWEEN  TO_DATE('18/12/2008','dd/mm/rrrr') 
    AND      TO_DATE('19/12/2008','dd/mm/rrrr');
    BEGIN
    FOR EMP IN EMP_FOLLOWS LOOP
    SELECT COUNT(*)
    INTO  V_COUNT
    FROM  EMP_ATTENDANCEE
    WHERE EMP_ID    =  EMP.EMPLOYEEID
    AND    DATE_IN   =  EMP.LOGDATE
    AND    ATT_FLAG = 'I';
    IF V_COUNT = 0  THEN
    INSERT INTO EMP_ATTENDANCEE (EMP_ID, DATE_IN ,DATE_OUT
                                ,TIME_IN ,TIME_OUT,ATT_FLAG)
         VALUES (TO_NUMBER(TO_CHAR(:NEW.employeeid,99999)),
                 TO_DATE(:NEW.LOGDATE,'dd/mm/rrrr'),       -- DATE_IN
                 NULL,
                 TO_DATE(:NEW.LOGTIME,'HH24:MI:SS'),      -- TIME_IN
                 NULL ,'I');
    ELSIF   V_COUNT > 0 THEN
    UPDATE  EMP_ATTENDANCEE
        SET DATE_OUT       =  TO_DATE(:NEW.LOGDATE,'dd/mm/rrrr'), -- DATE_OUT,
            TIME_OUT       =   TO_DATE(:NEW.LOGTIME,'HH24:MI:SS'), -- TIME_OUT
            ATT_FLAG       =   'O'
            WHERE EMP_ID   =   TO_NUMBER(TO_CHAR(:NEW.employeeid,99999))
            AND   DATE_IN <=  (SELECT MAX (DATE_IN )
                               FROM EMP_ATTENDANCEE
                               WHERE EMP_ID = TO_NUMBER(TO_CHAR(:NEW.employeeid,99999))
                               AND   DATE_OUT IS NULL
                               AND   TIME_OUT IS NULL )
    AND   DATE_OUT  IS NULL
    AND   TIME_OUT IS NULL  ;
    END IF;
    END LOOP;
    EXCEPTION
    WHEN OTHERS THEN RAISE;
    END ATTENDANCEE_FOLLOWS ;
                            Regards,
    Abdetu..

    INSERT INTO SALES_MASTER
       ( NO
       , Name
       , PINCODE )
       SELECT SALESMANNO
            , SALESMANNAME
            , PINCODE
         FROM SALESMAN_MASTER;Regards,
    Christian Balz

  • Photosho CS Problem - Can't drag a layer set from one document to another one

    I have two documents open
    On the source document, i want to drag a layer set from this document to a new one, but its not letting me
    What would cause this.
    My structure for the source document is
    >Set 1 Layer Set
         >layer
         > Adjustment Layer
         >background
    Background
    Structure of the target document
    >Named Layer Set
         > Where I want to insert the Layer Set from source document
         >layer
         > Adjustment Layer
         >background
    Background

    No error message is given. I just can't drag it into the spot I want to drag the layer set to (its not an individual layer, its a layer set)
    Basically, this is all I can do (have to do a correction on how the layers and layer sets work, missing one level from the original post):
    I've attached images as well to illustrate
    On my target document, I want to have the layer set go where the red text is:
    >Content Layer Set
         >Named Layer Set
              > Where I want to insert the Layer Set from source document (Set 1)
              >layer
              > Adjustment Layer
              >background
    Background
    right now, I can only drag the layer set to this position:
    >Content Layer Set
          > This is where the Set 1 from the source document can go, I can't drag it into the layer set below
         >Named Layer Set
              >layer
              > Adjustment Layer
              >background
    Background
    First Image I attached shows the Set 1 Layer Set, above the layer set I want to drag it into
    Second Image I attached shows what happens when I try to drag the layer set into the named layer set; it comes up with the "no symbol"
    No Error message is given

  • Missing classes from the javax.swing package?

    Can anyone throw any light on what appears to be a missing class from the javax.swing package?
    When CelsiusConverter.java from The Swing Tutorial (code fragment shown below) is compiled the JFrame class can't be found.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CelsiusConverter implements ActionListener {
        JFrame converterFrame;Despite the package javax.swing being imported, the compiler does not seem to be be able to find the JFrame class.
    CelsiusConverter.java:14: Class JFrame not found in type declaration.
        JFrame converterFrame;To attempt to solve this issue all the files in jdk1.5.0_02\lib were added to CLASSPATH.
    CLASSPATH was set to C:\Program Files\Java\jdk1.5.0_02\lib\dt.jar;C:\Program Files\Java\jdk1.5.0_02\lib\htmlconverter.jar;C:\Program Files\Java\jdk1.5.0_02\lib\jconsole.jar;C:\Program Files\Java\jdk1.5.0_02\lib\tools.jar;C:\Program Files\Java\jdk1.5.0_02\lib;C:\Program Files\Java\jdk1.5.0_02\lib\ir.idl;C:\Program Files\Java\jdk1.5.0_02\lib\jawt.lib;C:\Program Files\Java\jdk1.5.0_02\lib\jvm.lib;C:\Program Files\Java\jdk1.5.0_02\lib\orb.idl;C:\Program Files\Java\jdk1.5.0_02\demo\jfc\SwingApplet\SwingApplet.jar;.;c:\CoreJavaBook

    This is extremely strange... If you're sure it's not a problem in your code or with your classpath, the only other thing I can think to suggest is re-downloading / installing java

  • Why does iPhoto/Aperture keep deleting photo sets from my Flickr account or keep placing whole sets back into the Pending stage of uploading the photos. This is becoming very frustrating and extremely time consuming. Any help would be most welcome

    Has anyone got any idea as to why Iphoto/aperture keeps deleteing my photo sets from my Flickr account without warning or reason given. Also when I enter my sets the program will revert all of the photos back to the Pending stage of the up oading process. One or two photos I could live with but some of my set are in excess of 1500 photos per set, and this becomes very very time consuming to re upload them. and whats more annoying on some occassions after spending 12 to 16 hours re uploading them I find that they have all been duplicated. Is there a Bug with Iphoto or Aperture????????
    any help would be most welcome P Jefferys

    I am using Iphoto version 9.5.1, and No I am not deleting any photo from any file. what happens is this :- I open up Iphoto and enter my flickr account via the shared folder icon on the left hand side of the screen this is when I get a pop up screen from Iphoto informing me that they have removed a SET of photos from my Flickr account (no reason given) when i go into that set all I can see is dashed empty square where the photo used to be. I will then get another pop up screen saying that Iphoto can no longer access my flickr account and will I permit a reconnection and allow Iphoto to access my flickr account (add pass words etc) when I get back into flickr the SETS have gone and all other photos enter the Pending stage again. After re uploading the missing photos I find that some 50% of them have been duplicated.
    PJ

  • Deleate missing files from catalog

    With DSLR cameras we shoot tens of thousands of pictures a year and delete hundreds from our hard drives over time.  So how do you delete hundreds of missing missing files that still exist in the catalog, which cause the "Reconnect Missing Files" screen to show?  Does a setting exist to remove all missing files from the catalog?

    In PSE11, do Find >> All Missing Files and select all and delete.
    Thanks
    Andaleeb

  • Missing Data from Legacy System

    Hello All,
    My client went live end of January this year. They had a month of transaction data in their legacy system which they did not bring into SAP. Since this is their first year on SAP and recently implemented Extended Withhold Tax one month data is missing; when they run the 1099s at the end of the year they are going to be reported incorrectly.
    How can we bring over that missing data from legacy system over to SAP without having to clear those invoices in SAP?
    Thank You In Advance

    Hi Shashi,
       Have a look : <a href="http://www.box.net/shared/9tda040za6">Transferring Data with DB Connect</a>
    <a href="http://sapbwneelam.blogspot.com">More Docs...</a>
    Hope it Helps
    Srini

  • Need help in restricting a result set from a UNION in MERGE

    Hello,
    Would really appreciate if anybody could help me out with the issue I am facing with the below statements (I am new to Oracle ):
    merge into table_name_1 p
    using
      select p_key, value_1, value_2
      from some_tables
      UNION
      select p_key, value_1, value_2
      from some_tables
      UNION
    )t
    on (p.p_key = t.p_key)
    when matched then
      update table_name_1 with value_1 and value_2
    when not matched then
      insert table_name_1 with p_key, value_1, value_2;
    Now, the union of all those selects gives me distinct values and it works most of the times but when I get values like below, the merge fails:
    p_key-----value_1-----value_2
    100-----25-----50
    100-----NULL-----50
    I browsed the net and understood the reason behind this: the result set becomes ambiguous and merge doesn't know which row to insert first and which one to update.
    Now, my requirement is: I could have any of the below scenario/result sets from the union and I need only 1 row per p_key -
    result_set_1
    p_key-----value_1-----value_2
    100-----25-----50 ***************need this row
    100-----NULL-----50
    100-----NULL-----NULL
    result_set_2
    p_key-----value_1-----value_2
    100-----25-----NULL ***************need this row
    100-----NULL-----NULL
    result_set_3
    p_key-----value_1-----value_2
    100-----25-----NULL ***************need this row (p_key = 100)
    100-----NULL-----NULL
    200-----NULL-----75 ***************need this row (p_key = 200)
    200-----NULL-----NULL
    300-----90-----95 ***************need this row (p_key = 300)
    So, I basically need a way to restrict the values that I will get from the UNION of all those selects to fit the requirement above, hope I was able to explain the issue I am facing.
    Any help would be greatly appreciated.
    Thanks,
    Dpunk

    In all cases the goal is to find an order by value that will make the row you want be first.
    The query I gave is calculating a priority for each row by adding up values showing whether each column is null or not null. The case statements check whether each column is null and need to be added up to give a total priority value.
    Value_1   Value_2   Priority
    Not Null  Not Null  2 + 1 = 3
    Not Null  Null      2 + 0 = 2
    Null      Not Null  0 + 1 = 1
    Null      Null      0 + 0 = 0
    The priority value ends up being a bitmap showing whether each value is null or not null. I think that reflects my mathematics background.
    Another way of getting the same result (suggested to me by your asking why it needs the "+") would be to use two CASE expressions as separate order by items:
    select p_key, value_1, value_2 from
    (select p_key, value_1, value_2, row_number() over
              (partition by p_key
               order by case when value_1 is null then 0 else 1 end DESC,
                        case when value_2 is null then 0 else 1 end DESC
              ) as rn
      from (your UNION query here)
    where rn = 1
    A third way is to use a more complex case statement:
    select p_key, value_1, value_2 from
    (select p_key, value_1, value_2, row_number() over
              (partition by p_key
               order by case when value_1 is NOT null and value_2 is NOT null then 1
                             when value_1 is NOT null and value_2 is     null then 2
                             when value_1 is     null and value_2 is NOT null then 3
                             when value_1 is     null and value_2 is     null then 4
                         end  ASC
              ) as rn
      from (your UNION query here)
    where rn = 1

  • Unable to migrate table, character set from WE8MSWIN1252 to AL32UTF8

    Hi,
    On our source db the character set is AL32UTF8
    On our own db, we used the default character set of WE8MSWIN1252 .
    When migrating one of the table, we get an error of this: ORA-29275: partial multibyte character
    So in to alter our character set from WE8MSWIN1252 to AL32UTF8, we get this error:
    ALTER DATABASE CHARACTER SET AL32UTF8
    ERROR at line 1:
    ORA-12712: new character set must be a superset of old character set
    I would sure not like to reinstall the db and migrate the tables again. Thanks.

    See this related thread - Re: Want to change characterset of DB
    You can use the ALTER DATABASE CHARACTER SET command in very few cases. You will most likely have to recreate the database and re-migrate the data.
    HTH
    Srini

  • HT201274 iPhone 4s, but wifi option is greyed out. I want to erase all content and setting from my old 4s and it will not connect to the internet, because the cellular data is no longer connected, bought a iPhone 5c. how do I erase all on my 4s with no in

    I have an iPhone 4s, but wifi the option is greyed out. The wifi stopped working on it months ago. Now I wanted to erase all content and setting from my old 4s and it will not connect to the internet, because the cellular data is no longer connected, since I bought a new iPhone 5c. I can't erase my phone by pluggin it into my Macbook Pro, since I can't disable the "Find my iPhone" App without internet. How do I erase all the data and setting on my 4s without connecting to the internet? It is running ios 7

    See this https://answers.yahoo.com/question/index?qid=20131119125513AAtRloc
    I just did it. To enter DFU mode, I had to use "method 3" on this post
    http://thebigboss.org/guides-iphone-ipod-ipad/dfu-mode
    Too bad my 4S is 2 years old. Wifi is dead. I had to upgrade to 5S, but 5S is soooooo much faster than 4S so it's kind of good outcome. Without the 4S breaking down, a stingy person like me would have never upgraded the phone.

  • How do I change the default setting from Pages to MS Word for Mac?

    How do I change the default setting from Pages to MS Word for Mac?

    https://discussions.apple.com/message/13008817#13008817

  • How to enable user sets from tools in sales order

    Hi,
    How to enable user sets from tools in sales order..it is greyed out..
    and is there anyway we can do to add shipsets from other place?
    Thanks

    Hi Ruchi
    I hope u had gone to the screen fields which u want them not to be editable. So there u select all the fields contents which u do not want to to be changed and check the boxes with W.content and Display and save it. Once evrything is done u have to activate the particular transcation going in to the standard variants and put the name and click the activate button.
    Hope its clear
    Reward if help ful
    Sri

  • Error in submiting request set from Daily Business Intelligence Administrat

    I am getting the following error when submitting "ADS Incremental Financials Request Group" request set from "Daily Business Intelligence Administrator" responsibility in vision R12 instance :
    APP-FND-01564: ORACLE error -1116 in SUBMIT: others
    Cause: SUBMIT: others failed due to ORA-01116: error in opening database file 11
    ORA-01110: data file 11: '<path>.dbf'
    ORA-27041: unable to open file
    SVR4 Error: 24: Too many open files
    Additional information: 3.
    The SQL statement being executed at the time of the error was: &SQLSTMT and was executed for the file &ERRFILE.
    OS is Solaris 10.5
    in a document it was suggested to increase the ulimit -n equal to ulimit -Hn and in solaris for R12 nofiles (descriptors) = 65536. Both ulimit -n and ulimit -Hn have been set to 65536 but still the error is showing.
    Plz Helppp

    Check Note: 549806.1 - ADS Incremental Financials Request Group errors out with APP-FND-00806
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=549806.1

  • Avtivation of BC set from Third party system

    Dear All,
    We are using BC sets for configuration of regular business organizational units. We also have a workflow in third party system (like MS Share Point) for approval of such elements. Now we are looking to call BC sets for configuration of these elements Via third party system upon approval in workflow.
    Kindly help me to understand the feasibility & possible approach to develop the system.
    Thanks & Regards,
    Sandip

    Hi,
    Your question if i understood correctly.
    You cannot transfer the BC Set from one system to another.
    BC sets are used to have a snap shot for your customizing in SAP.
    This are predefined by SAP, which as per mine knowledge you cannot transfer from an external tool to SAP ECC.
    Kindly refer the below doc which may help you...
    Business Configuration Sets (BC Sets) and their use - Basis Corner - SCN Wiki
    Rgds,

  • Adobe Acrobat 10.1.3 Mac OS does not inherit the Duplex setting from PPD for HP printers

    Adobe Acrobat for the Mac OS does not inherit the setting from the PPD for the printer. Our current settings for the PPD has Duplex enabled as the default for the HP LJ 9050 and it works in all the application with the exception of Acrobat 10.1.3, Acrobat does not inherit this setting from the driver.  Our previous installation with Acrobat 10.1.0 duplex worked well with our PPD configuration where Acrobat inherits the setting from the PPD and duplex is default for all our black and white printers.
    We found reference to the reserve issue with 10.1.2 in the forum but that solution is global for all printers and it only works with version 10.1.2 
    Does anyone know how to set the default printing settings in Acrobat version 10.1.3 to allow us to have duplex printing by default on the Mac.

    >It looks like a typical case of finger pointing, Adobe blames Epson, Epson blames Apple. Apple blames the user...
    No, you still don't get it...Lightroom is a Cocoa app...it uses Cocoa printing APIs...therefore, print drivers will have to be rev'ed to support those Cocoa APIs...the 3800 (6.10) DOES...the earlier 3.5x drivers won't under Leopard.
    What's the driver version of your R800? Something like 3.09? The odds are REAL GOOD (since Epson hasn't released an updated driver for that printer yet) that it's not been updated.
    So, you are just gonna have to wait for Epson to rev the drivers, use Tiger instead of Leopard or print out of Photoshop CS3 (which is a Carbon app and uses the Carbon APIs) or not print.
    You may not _LIKE IT_ but those are your options...

Maybe you are looking for