Viewlink Search down to top

Hi,
Anyone have experience with implementing search using last table's field with 3 levels Master child relationship (T1 --> T2 --> T3(Last table))
I want to join 3 tables as follows
Table1 has Primary key T_A
Table2 has Primary key T_B Foreign key T_A
Table3 has Primary key T_C Other fields T_B_1,T_C_1...etc (Last Table)
Create 2 view link as follows
ViewLink1 is Table1ToTable2 with 1 to * relationship (Join using key field T_A)
ViewLink2 is Table2ToTable3 with 1 to * relationship (Join using key field T_B)
Now Create VO for Table1 as Table1VO and add viewCriterta with bind variable say bTC1,Problem is when i set bind variable for Table3's field say T_C_1 and after execute the criteria error was thrown as ORA-00904: "QRSLT"."T_B": invalid identifier .
If i use two tables and used one viewLink it works fine.
JDev version 11.1.1.3
Thanks for reading appreciate any idea
-Suresh
Edited by: -Suresh- on Jun 30, 2012 5:43 PM
Table1 has Primary key T_A
Table2 has Primary key T_B Foreign key T_A
Table3 has Primary key T_C Other fields T_B_1,T_C_1...etc (Last Table)
Create 2 view link as follows
ViewLink1 is Table1ToTable2 with 1 to * relationship (Join using key field T_A)
ViewLink2 is Table2ToTable3 with 1 to * relationship (Join using key field T_B)

Hi,
Above describe sample scenario related to real scenario, Following is the real query which i get run time.Real scenario i have used 5 tables and 4 viewLinks as above sample
Please see image for following ViewCriteria
http://images-srk.blogspot.com/2012/06/viewcriteria.html
        ViewObjectImpl voProf = this.Table1VO();
        voProf.applyViewCriteria(null);
        voProf.setApplyViewCriteriaName("CamSubscriberNodeVVOCriteria");
        voProf.setNamedWhereClauseParam("pMobileNO", pMobileNO);
         voProf.executeQuery();
         System.out.println(voProf.getQuery());//This query pasted next blockGenerated Query
SELECT * FROM (SELECT
    Table1.SUBSCRIBER_NODE_ID SUBSCRIBER_NODE_ID,
    Table1.SUBSCRIBER_PROFILE_ID SUBSCRIBER_PROFILE_ID,
    //Comment add for many fields
    Table1.NODE_SUBSIDIARY_TYPE NODE_SUBSIDIARY_TYPE
FROM
    Table1) QRSLT  WHERE ( ( (EXISTS(SELECT * FROM (SELECT
    Table2.CONTRACT_ID CONTRACT_ID,
    //Comment add for many fields
    Table2.ACTUAL_USER_PROFILE_ID ACTUAL_USER_PROFILE_ID
FROM
    Table2) QRSLTSQ1  WHERE  ( (EXISTS(SELECT * FROM (SELECT
    Table3.CONTRACT_PACKAGE_ID CONTRACT_PACKAGE_ID,
     //Comment add for many fields
    Table3.NO_OCS_PRODUCT NO_OCS_PRODUCT
FROM
    Table3) QRSLTSQ1  WHERE  ( (EXISTS(SELECT * FROM (SELECT
    Table4.CONNECTION_ID CONNECTION_ID,
     //Comment add for many fields
    Table4.PART_KEY PART_KEY
FROM
    Table4) QRSLTSQ1  WHERE  ( (EXISTS(SELECT * FROM (SELECT
    Table5.STATUS STATUS,
     //Comment add for many fields
    Table5.PART_KEY PART_KEY
FROM
    Table5) QRSLTSQ1  WHERE  ( ( ( UPPER(MOBILE_NO) = UPPER(:pMobileNO)  )  OR  ( :pMobileNO IS NULL ) ) )  AND (QRSLT.CONNECTION_ID = QRSLTSQ1.CONNECTION_ID))) )  AND (QRSLT.CONTRACT_PACKAGE_ID = QRSLTSQ1.PACKAGE_CONTRACT_ID))) )  AND (QRSLT.CONTRACT_ID = QRSLTSQ1.CONTRACT_ID))) )  AND (QRSLT.SUBSCRIBER_NODE_ID = QRSLTSQ1.SUBSCRIBER_NODE_ID))) ) )]Error Message
<Utils><buildFacesMessage> ADF: Adding the following JSF error message: ORA-00904: "QRSLT"."CONTRACT_ID": invalid identifier
java.sql.SQLSyntaxErrorException: ORA-00904: "QRSLT"."CONTRACT_ID": invalid identifier
     at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:91)
     at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
     at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)
     at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
     at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:791)
     at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:866)
     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1188)
     at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
     at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3430)
     at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1491)
     at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:1155)
     at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:859)
     at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:6314)
     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1169)
     at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:1338)
     at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:1256)
     at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:1250)
     at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:6248)
     at model.am.HotlineAMImpl.MainSearch(HotlineAMImpl.java:71)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at oracle.adf.model.binding.DCInvokeMethod.invokeMethod(DCInvokeMethod.java:567)
     at oracle.adf.model.binding.DCDataControl.invokeMethod(DCDataControl.java:2134)
     at oracle.adf.model.bc4j.DCJboDataControl.invokeMethod(DCJboDataControl.java:3020)
     at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:257)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1625)
     at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2141)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:730)
     at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:394)
     at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:252)
     at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:210)
     at view.HotlineBean.cbSearchAL(HotlineBean.java:30)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
     at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
     at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
     at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1259)
     at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
     at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
     at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
     at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
     at java.security.AccessController.doPrivileged(Native Method)
     at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
     at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
     at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
     at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)Thanks
-Suresh

Similar Messages

  • If I am browsing on site such as Ebay or any shopping site, and click on an item, when I return to the search page I am once again at the top of the page and have to search down for where I was in the list of items.

    If I am browsing on site such as Ebay or any shopping site and click on an item, when I return to the search page I am once again at the top of the page and have to search down for where I was in the list of items. This is not only on Ebay it is everywhere I search. Firefox goes back to the top of the page . It is annoying to have to figure out exactly where I was if I left the page and then returned. This is a hinderance when using Firefox. I have considered uninstalling it because of the inconvenience of 're-searching' after already doing a search. Firefox used to take me right back to where I was if I left a page, but that feature is not working now. I am not sure how to change this in the settings.

    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.

  • HT4993 my iphone4 says searching in the top left corner how do i get it to stop and get my service back?

    my iphone4 says searching in the top left corner and i can not make calls or get calls how do i fix it so i have my service back

    you can try a reset, hold down the home/sleep button until you see the apple logo and then release, then wait fro the phone to boot back up.
    if that doesn't work contact your cell provider

  • Lost search box at top of contacts

    Contacts only has an alpha down the right side, no longer has search box at top.  How do I get search box back at top.
    Thanks

    Try a reset. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. The phone should reboot.

  • Why does my iphone steady say "searching"...i erased everything and now it wont activate because it says "Searching" in the top left corner

    Why does my iphone steady say "searching"...i erased everything and now it wont activate because it says "Searching" in the top left corner..PLEASE HELP ASAP!!!

    1. Close all inactive apps in the Task Bar. Double-click the Home button and hold apps down for a second or two. Tap the minus sign to close app.
    2. Hold the Sleep and Home button down for about 10 seconds until you see the Apple Logo.

  • HT201263 MY I 4S  CUTS OFF IN THE MIDDLE OF THE DAY FOR NO REASON. IT WON'T TURN ON UNLESS I PLUG THE USB INTO COMPUTER. THEN THE PHONE HAS "SEARCHING " AT THE TOP LEFT SCREEN.BATTERY IS 64% NOW AND SOFWAER IS UP TO DATEN

    MY I4S PHONE CUTS OFF IN THE MIDDLE OF DAY FOR NO REASON. IT WILL NOT TURN BACK ON UNTILL I PLUG THE USB INTO THE COMPUTER. THEN IT HAS "SEARCHING "  AT THE TOP LEFT PART OF THE SCREEN. BATTERY IS 64% RIGHT NOW.   IT DID THE SAME THING YESTERDAY SO I DOWNLOADED THE IOS61.1  AND IT SAYS IPHONE SOFTWARE IS UP TO DATE.  ANY IDEAS

    Nothing happened, i managed to get my computer to recognise it and now restoring... but it says 3 hours remaining?! Will i lose everything?

  • I created a Pages document inserting 2 columns using 1) Inspector 2) Layout 3) columns.  How do I decrease the height of the column.  Have tried to use cursor and drag down the top border, but that does not reset the top border.

    I created a Pages document inserting 2 columns using 1) Inspector 2) Layout 3) columns.  How do I decrease the height of the column.  Have tried to use the cursor and drag down the top border, but that does not reset/decrease the top border.

    Set your columns back to one for the moment. In layout mode, insert a Text box. Place it in the upper left corner of your document, and drag down and right to the size of the container for your two columns. Click inside the Text Box, and now bump up your columns to 2. Your two columns are now contained in this resizable Text Box.

  • My iPhone says Searching in the top right hand side and has been like this for 2 days. Already had a replacement sim yesterday, still not working. Apple advised me to restore my phone by connecting to iTunes. When trying to do this it's not allowing

    My iPhone says Searching in the top right hand side and has been like this for 2 days. Already had a replacement sim yesterday, still not working. Apple advised me to restore my phone by connecting to iTunes. When trying to do this it's not allow

    Are you on a Windows PC? Do you have anti-virus software running on it? Here are some help articles for you to troubleshoot with:
    Resolve iOS update and restore errors
    Resolve iOS update and restore errors in iTunes

  • Hello guys i trust you are well .my phone keeps saying searching in the top left hand corner where my cellphone providers name is supposed to be ,this has happened before but i just connected it to the pc to restore but this time it hung up half way.help

    hey guys i trust you are well .my phone has a problem where it says searching in the top left corner where my service providers name is supposed to be ,it has done this before i fix it by connecting to itune on my pc this time it got stuck in setup mode and cannot find a activation server.and itunes says it cannot fix the problem and i should contact support hence this message please help .thank you in advance

    Hey jay_bek,
    Thanks for using Apple Support Communities.
    If you encounter no signal or searching on your iPhone, follow these steps to try to resolve the issue.
    iPhone: Troubleshooting No Service
    http://support.apple.com/kb/ts4429
    Turn your iPhone off, then on again.
    Remove the SIM card and verify that it's a valid, carrier-manufactured SIM. Also verify that it isn't damaged, worn, or modified. Then reinsert it.
    Have a nice day,
    Mario

  • No web page address bar when safari loads.     When safari opens, it goes to the apple page. All of the sudden, since last night there is no address bar or search bar on top. Just grey. Please helps,

    After Safari opens, there is no address or search box on top (or bottom).  I can't type in a new web page.
    Please help me.
    Thank you for any help

    Under VIEW, the "hide toolbar" is in bold, so I can not click "view toolbar"
    I tried the customize option as well and that doesn't work either.
    Thank you so much for trying to help me. I don't know what's wrong with Safari. I restarted the computer and did all updates. Really bummed :)

  • Putting a form search box on top of a image

    Is it possible to put a search box on top of an image.  When I enter the code now, all I see is the image, not the search box.

    You could place an image in the background of whatever container has the search box...
    <div style="background-image:yourimage.jpg">your search box code</div>
    I used a quick inline style, but you could put it in your external css or <head> however you have it set.
    Or are you talking about something else?
    Could you post a link to what you have and give a little more info about what you are trying to do?

  • Is there any way to stop the print screen from dropping down on top of the page to be printed.  Can the print screen be moved?

    Is there a way to stop the print screen from dropping down on top of the page to be printed.  Can the print screen be moved?  When the print screen drops down, it covers the page and the info needed to create the file.  Thank you

    You will find that this is application dependent.  Most Apple applications such as Safari and Mail will use the "sheet" type of dialog boxes that you are referring.  There is no way for the user to change that behavior.  Other, non-Apple, applications like Firefox use a "modal" dialog box for printing etc.  The modal boxes can be moved around so you can see the page behind.

  • Move Label From Down To Top The Frame?

    greetings all
    i want to make something like movie credits
    i have an empy frame and i have some labels
    and i want when the frame runs labels move in turn from down to top
    any ideas,how to do that?
    thanks in advance

    thanks Encephalopathic for the help
    but i have just two questions about your code:
    i don't understand what's DELTA_Y and what's it's function here:
    if (y > 0)
              y -= DELTA_Y;
    }and i have added another label and set it to be shown after the first label
    but what happens is the opposite,i don't know why?
    here's what i did:
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.Timer;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    public class test_timer
      private static final int Y_MAX = 300;
      protected static final int X_POS = 10;
      protected static final int DELTA_Y = 2;
      private static final int DELAY_TIME = 100;
      private static int y = Y_MAX;
      private static JPanel panel;
      public static void main(String[] args)
        JFrame frame = new JFrame("Credits");
        final JLabel label = new JLabel("Updating Component Test", JLabel.CENTER);
        final JLabel label2 = new JLabel("Statement Two", JLabel.CENTER);
        label.setFont(new Font("Courier New", Font.BOLD, 15));
        label.setSize(label.getPreferredSize());
        label.setLocation(X_POS, y);
        label.setForeground(Color.WHITE);
        label2.setFont(new Font("Courier New", Font.BOLD, 15));
        label2.setSize(label2.getPreferredSize());
        //i set the label2 to be down label1
        label2.setLocation(X_POS, y+25);
        label2.setForeground(Color.WHITE);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        panel = new JPanel();
        panel.setPreferredSize(new Dimension(2*Y_MAX, Y_MAX));
        panel.setLayout(null);
        panel.setBackground(Color.BLACK);
        panel.add(label);
        //i added label2 after label1
        panel.add(label2);       
        frame.add(panel);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
        new Timer(DELAY_TIME, new ActionListener()
          public void actionPerformed(ActionEvent ae)
            if (y > 0)
              y -= DELTA_Y;
              label.setLocation(X_POS, y);
              //set the new location to be less than label1 location
              label2.setLocation(X_POS,y-40);
        }).start();
    }

  • Javascript Drow-down on Top Level/Secondary Navigation

    Which component supports the Javascript Drow-down on Top Level/Secondary Navigation feature? WE are on SPS 16 on portal, but I thought this feature was released on SPS 14. I could not see the feature on SPS 12-15 EP release notes.
    Thanks.
    James

    Hi,
      I am not sure if u can do the dropdown of the DTN from the TLN with the standard portal. Needs more research..
    Regards,
    Harini S

  • HT201412 settings are not working and only searching showing on top left

    my iphone 4s not working,i can't make a call and when i pressed the setting icon it's all come up all white screen.on top left side says only 'searching'

    OK everyone - I think I figured it out!
    I had the same problems:
    - 'Searching' in upper left
    - Inability to make/receive calls
    - Inability to access the internet
    - Inability to access mail
    - Setup menu comes up blank
    - Cannot shut down/reboot by holding down top right button
    Here's what to do:
    - Hold down both the top right button and the lower middle button at the same time for a few seconds and you should see the white Apple logo appear on the screen.
    - Let go of the buttons at this point and the phone will reboot
    - When it comes back, everything should be OK
    Only other thing I notoced is that I actually watched the battery drain fromm 80% to 10% when it came back online! Very strange!

Maybe you are looking for

  • Sun Studio Debugging problem

    Hello I need help configuring the Sun studio debugger to work in fedora 8. The project is loaded from a make file, compiles fine, and runs fine. However, I can not place break points, and when I start the visual debugger, it gives a message box title

  • J2I8 Capital goods transfer of credit - SEcess value is not showing

    Hi, I am working on capital procurement scenario. I have done MIGO and done J1IEX for capturing excise invoice. From this i have posted 50% duty value immediately. For claiming remaining 50% duty (On hold account) i have used T code J2I8. In this, i

  • Oracle 8i Lite Start up

    Hi everybody, I've windows/2000 pro installed on my m/c. The client version of it. I'm using this m/c to surf the net and do some MS Acesses development and VB development. Now, I'm trying to do something with Oracle 8i Lite. I've received oracle 8i

  • Final Cut Pro/GY-HD111E import problems?

    Final Cut Pro/GY-HD111E import problems? With a brand new Mac Pro and very latest Final Cut Studio complete with updates I'm having a little problem trying to import footage directly from a JVC GY-HD111E (yes I'm in PAL land, UK) via FireWire into FC

  • Can an iMac G4 be upgraded to an Intel processor?

    I was wondering can an iMac G4 be upgraded to an Intel processor? This stems from the whole PPC no longer being supported by Adobe Flash etc.