Mohammadi, Help me!!    FND_INSUFF_PRIVILEGES

I met trouble the same to you:
OAFrame.jsp
oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_INSUFF_PRIVILEGES. (Could not lookup message because there is no database connection)
     at oa_html._OAFrame._jspService(_OAFrame.java:156)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
     at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
     at oracle.jsp.JspServlet.service(JspServlet.java:156)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:568)
Could you help me?

Please check your network connections. Double click the jpx file and check whether you are able to connect to the instance selected (Test Connection)

Similar Messages

  • Support ,​ ​ This is Thamer mohammad  ,I can't remember my security question answers , so Please help me to Create new Security Question for my Account .​ ​ Best wishes

    Support ,​
    This is Thamer mohammad
    ,I can't remember my security question answers , so Please help me to Create new Security Question for my Account .​
    Best wishes

    These boards aren't Apple Support; nobody here can reset the questions. Click here, phone Apple, and ask for the Account Security team, or fill out and submit this form.
    (90021)

  • Need help in export/import

    Hello All,
    I need help in export/import of an  internal table (based on deep structure) to/from desktop either in excel or XML file.
    I have an int table which has to be sent to desktop either in xls or xml file and then import back to an internal table(with deep structure).
    Ex :
    Int table is based on structure.
    Structure has fields
    as
    f1 -
    f2 -
    f3 - table type
    Your help will be appreciated.

    Hi Nishant,
    Please put your question in below mention forum.
    SAP Business One SDK
    Thanks
    Mohammad Imran

  • How application module helps for performance improve

    Hi Everyone,
    I have a sample web-application in which I am connecting with single AM instance (AM for database view object), retrieving some information and then close the connection. I am doing this as,
    // making AM instance
    <application module instance> = Configuration.createRootApplicationModule(<AM name>, config);
    // performing operations
    <operation result> = <application module instance>.<access VO with any operation>();
    System.out.println("Get result here");
    // disconnecting AM instance
    <application module instance>.getDBTransaction().disconnect();
    Configuration.releaseRootApplicationModule(<application module instance>, true);
    These are the activities which are performed by a single user. Now, I am doing stress test on same activities. I am testing the same code with 300 concurrent users (using JMeter with JSP URL). These are working fine. Also I checked multiple times, it always working fine.
    Now, I need to do something through which I can improve the performance. I know, I can use AM pool configurations to make this more effective. I have gone through the Oracle documents and checked the same test case with default or recommended pool configurations and I found similar kind of results (there is not much difference).
    On other hand, I tried with 'releaseRootApplicationModule' method with false parameter and found better results in default as well as recommended pool configurations.
    My question is, is the change of pool configurations recommended by Oracle really work? or do I need to concentrate more on coding part with default pool configurations?
    Here, I would like to know, what are the best practice (in code as well as pool configurations), I need to follow if I really want to improve the performance in real scenarios (when our application will access with large no. of concurrent users).
    I really look forward some help from experts. I have given a lot of time on this to know how really we can make our application more effective in terms of performance.
    I really appreciate for your reply.
    Regards,
    Dilip Gupta.

    >
    We added the createRootApplicationModule() API (in the oracle.jbo.client.Configuration class) to simplify acquiring an application module from the pool for brief programmatic manipulation before it is released back to the AM pool.
    Steve Muench.
    >
    check [url http://radio-weblogs.com/0118231/2009/08/20.html#a959]Check Your App for Misuse of Configuration.createRootApplicationModule()
    Edited by: Mohammad Jabr on May 10, 2012 7:14 AM

  • Help about h:selectOneListbox PLEASE!!!

    hi all
    i have a strange problem when working with <h:selectOneListbox>
    or <h:selectOneMenu> (I mean UISelectOne component).
    When i select one item and submit it, it just work well, but after using another <h:selectOneListbox>
    or <h:selectOneMenu> located in another page,
    and making just two or three page navigation between these two pages,
    without doing any changes to the <h:selectOneListbox>
    or <h:selectOneMenu>,
    the <h:selectOneListbox>
    or <h:selectOneMenu> in the first or the second page doesn't remember its selected value.
    here is the source code:
    ---------------------------------------------testHandler.java----------------
    import javax.faces.component.*;
    import javax.faces.model.*;
    import java.util.*;
    public class testHandler {
    private List list = new LinkedList();
    private Integer ival;
    private Object oval;
    public testHandler() {
    list.add(new SelectItem(new Integer(1), "1"));
    list.add(new SelectItem(new Integer(2), "two"));
    list.add(new SelectItem(new Integer(3), "three"));
    list.add(new SelectItem(new Integer(4), "four"));
    public Object getOval() {
    return oval;
    public void setOval(Object oval) {
    this.oval = oval;
    public Integer getIval() {
    return ival;
    public void setIval(Integer ival) {
    this.ival = ival;
    public void setList(List list) {
    this.list = list;
    public List getList() {
    return list;
    -----file2.jsp---------------------------------
    <%@ page contentType="text/html; charset=utf-8"%>
    <%request.setCharacterEncoding("utf8");%>
    <%@ page import ="VE.*"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%>
    <jsp:useBean id="bean2" scope="session" class="testHandler" />
    <f:view>
    <h:form >
    <h:selectOneListbox id="s5" value="#{bean2.oval}" >
    <f:selectItems value="#{bean2.list}"/>
    </h:selectOneListbox>
    <h:commandButton value="save"/>
    </br>
    </h:form>
    file
    </f:view>
    ------------------file.jsp------------------------
    <%@ page contentType="text/html; charset=utf-8"%>
    <%request.setCharacterEncoding("utf8");%>
    <%@ page import ="VE.*"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%>
    <jsp:useBean id="bean1" scope="session" class="testHandler" />
    <f:view>
    <h:form >
    <h:selectOneListbox id="s5" value="#{bean1.oval}" >
    <f:selectItems value="#{bean1.list}"/>
    </h:selectOneListbox>
    <h:commandButton value="save"/>
    </br>
    </h:form>
    file2
    </f:view>
    please HELP ME!!!
    THANK YOU VERY MUCH
    Mohammad GHSEMI HAMED
    Message was edited by:
    [email protected]

    For select components please refer
    http://www.oracle.com/technology/products/jdev/101/howtos/jsfselect/jsf_selects.html
    http://www.oracle.com/technology/products/jdev/101/howtos/jsfselect/jsf_selects_af.html

  • Help me in design of data model for flat files

    Hello guru's,
                        my client gave me excel spreadsheets and told to analyze what are the things i have to look into those. and also my manager introduced to one of the finace user . what are the questions i have to ask user regarding those files. the excel spreadsheets contains  actual data, budget data and forecast data.
                        one more thing SAP FICO in ECC is in realization phase. my manger told me that you have to map all G/L accounts and Costcenters with R/3 because there excel spreadsheets have different format.
              send me what are all questions i have to ask user? there are no documnets also so can you please tell me what are all documents i have to prepare like func spec or tech spec?
    Thanks,
    Sneha

    Hi,
    First thing you need to ask the finance person, what are the buisness requirement?
    you first take down what all he says and tell him or her that you would contact him again with after sometime.
    post the exact requirent here, then someone may help you
    Thanks
    Mohammad Riaz
    Edited by: Shadow on Nov 11, 2008 6:02 AM
    Edited by: Shadow on Nov 11, 2008 6:03 AM

  • Can u help me for my new project

    hi all
    i am going to my new project
    dear on that project our enviourment is....
    for frond end ::: we use orain erp software
    backend ::: oracle database 10g.
    report :: for oracle Discoverer
    editing :: oracle developer/ 2000
    i have no idea about oracle discoverer and oracle developer/2000
    i want to learn myself plz. give me any advice and suggestion...its very helpful for me.
    also i want both software and doc for learn give me any link there i get software.
    plz its very urgent;
    thanx in advance..
    regards
    Mohammadi.

    also i want both software and doc for learn give me any link there i get software.You can find both, software and documentation, on OTN
    http://www.oracle.com/technology/index.html

  • I Need Help of all experts , can anybody?

    Dear,
             I am Mohammad Nabi, have done my MBA in June 2006,After completion of the course i immediately joined the insurance co.presently iam working as Agency Manager for Bharti Axa Life Insurance......Before that i am very much interested in pursuing SAP SD ...when i about to join the course i have consulted some consultancies their they asked me experience....for that reason i joined insurance co. for experience....Now i would like to pursue SAP SD and i need full support of all SAP SD experts suggestions...I Know only what is SAP but i dont know even concept also...for that i need support of u all.....kindly you yourself give me suggestions and mould me as an expert....i will be very thankful for this kind of act.
               Hope U all definetly suggest me in making an expert....i am interested...i will work hard...
    Thanx & Regards
    Mohammad Nabi
    <REMOVED BY MODERATOR>

    Hi
    Its really great that you have now decided to achieve something. Lot of people take lot of time to first decide which route to ride... Just being part of this forum will help you a lot. You can read through all the queries asked here and try to find answers. Firstly it will be very difficult, but slowly you will get hang of things.
    According to me, to become expert in SAP, most important is your business process understanding should be good. SAP will behave the way we design.
    Keep on work.
    Regards
    Sandeep

  • Help configuring 5510

    I just upgraded an ASA-5510 from 7.0 to 8.4.4-1 and theres a lot of stuff in it I don't recognize that I never added, mostly because of new network objects, nat commands, and other migration stuff. Its been awhile since I've configured the ASA and I think I'd like to start from scratch and clean it up a bit because theres so many lines for so little that I really need. I just think its sort of a mess right now so I was hoping someone could help me with the commands to do the following tasks.
    I have a 5510 assigned an IP address on the outside interface with 3 inside interfaces and below are the only requirements I need.
    Network-A (192.168.1.0/24)
       - incoming ssh port 2202 goes to node 192.168.1.2
       - incoming ssh port 2203 goes to node 192.168.1.3
       - handle incoming https (443) requests
       - handle incoming www (80) requests
       - cannot see Network-B or Network-C
    Network-B (10.0.0.0/16)
       - ssh to nodes on Network-A
       - incoming ssh port 22 goes to node 10.0.0.20
    Network-C (192.168.2.0/24)
       - ssh to nodes on Network-A
       - incoming ssh port 2210 goes to node 192.168.2.2
    ASA-5510
       - sends logging to syslog node 192.168.1.3 on Network-A
       - there are DNS and NTP servers located outside
    Any help much appreciated.

    HI ,
    this is a whole new installation with 8.4 . you will need to be aware of the folllowing :
    -ASA 8.4 configuration guide ( it contains eveything from A to Z) .
    http://www.cisco.com/en/US/docs/security/asa/asa84/configuration/guide/asa_84_cli_config.html
    - ASA 8.3 and later configuration example :
    https://supportforums.cisco.com/docs/DOC-9129
    it contains the config for pre 8.3 images and the corrosponding one in 8.3 and later images ( very useful link ).
    - Finally remember to use the private ip address in your access-lists ( real ip address and not the translated one ).
    HTH .
    Mohammad.

  • Help in Analyzing AWR Report.....

    We have faced a performance issue in particular two programs which usually takes only seconds to run (it ran 0.8 and 0.6 sec respectively last month). But it took 2 and 1.4 hrs respectively and when took the AWR report for the run period I could see all looks fine in the report, as we don't have an option to re-run it again till next month end we would like to figure out the cause for the same.
    The explain plan for that particular statement looks fine and it gets completed with in seconds. The only doubt I have is we see "CPU Time" in the Top 5 times events and it consumed most of time. Please help me in finding is the normal scenario or not.
    Event Waits Time(s) Avg Wait(ms) % Total Call Time Wait Class
    CPU time 46,585 97.4
    db file sequential read 1,082,128 859 1 1.8 User I/O
    db file scattered read 540,320 667 1 1.4 User I/O
    log file parallel write 21,817 79 4 .2 System I/O
    db file parallel read 14,111 37 3 .1 User I/O
    Thanks,
    Jay
    +65-81620312

    user13338899 wrote:
    Mohammad,
    Appreciate the update. Please find below the following details,
    SQL> column NAMESPACE form a9;
    SQL> /
    VERSION BUNDLE_SER NAMESPACE ACTION ACTION_TIME ID
    10.2.0.5 PSU SERVER APPLY 26-APR-11 03.01.16.118430 PM 3
    SQL>
    $ uname -a
    SunOS DSOFSAOS01 5.10 Generic_142909-17 sun4u sparc SUNW,SPARC-Enterprise
    $ sqlplus '/ as sysdba'
    SQL*Plus: Release 10.2.0.5.0 - Production on Mon Jul 18 11:15:17 2011
    Copyright (c) 1982, 2010, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE 10.2.0.5.0 Production
    TNS for Solaris: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - Production
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    $ opatch lsinv -bugs_fixed | grep PSU
    9952230 11724962 Tue Apr 26 14:53:15 MYT 2011 DATABASE PSU 10.2.0.5.1 (INCLUDES CPUOCT2010)
    10248542 11724962 Tue Apr 26 14:53:15 MYT 2011 DATABASE PSU 10.2.0.5.2 (INCLUDES CPUJAN2011)
    11724962 11724962 Tue Apr 26 14:53:15 MYT 2011 DATABASE PSU 10.2.0.5.3 (INCLUDES CPUAPR2011)
    $
    $ vmstat
    kthr memory page disk faults cpu
    r b w swap free re mf pi po fr de sr m0 m1 m3 m4 in sy cs us sy id
    0 0 0 16622560 5455776 29 14 127 0 0 0 0 0 19 8 16 604 3281 402 0 0 100
    $
    The only thing I would like to know is we faced an performance issue with two programs which took so long to run than usual, as we do not have an option to re-run and could not find any issues in the awr apart from the particular sql took long time to run, what could be the possible causes for a sql behaving badly only at a certain time.
    If we run the same sql now, it gets completed in seconds. Also how to calculate the CPU used in that partuclar period?
    Thanks,
    Jay
    the particular sql took long time to run,does this SQL utilize bind variable & therefore subject to bind variable peeking?

  • Problem with threads and simulation: please help

    please help me figure this out..
    i have something like this:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class DrawShapes extends JApplet{
         private JButton choices[];
         private String names[]={"line", "square", "oval"};
         private JPanel buttonPanel;
         private DrawPanel drawingArea;
         private int width=300, height=200;
         public void init(){
              drawingArea=new DrawPanel(width, height);
              choices=new JButton[names.length];
              buttonPanel=new JPanel();
              buttonPanel.setLayout(new GridLayout(1, choices.length));
              ButtonHandler handler=new ButtonHandler();
              for(int i=0; i<choices.length; i++){
                   choices=new JButton(names[i]);
                   buttonPanel.add(choices[i]);
                   choices[i].addActionListener(handler);
              Container c=getContentPane();
              c.add(buttonPanel, BorderLayout.NORTH);
              c.add(drawingArea, BorderLayout.CENTER);
         }//end init
         public void setWidth(int w){
              width=(w>=0 ? w : 300);
         public void setHeight(int h){
              height=(h>=0 ? h : 200);
         /*public static void main(String args[]){
              int width, height;
              if(args.length!=2){
                   height=200; width=300;
              else{
                        width=Integer.parseInt(args[0]);
                        height=Integer.parseInt(args[1]);
              JFrame appWindow=new JFrame("An applet running as an application");
              appWindow.addWindowListener(
                   new WindowAdapter(){
                        public void windowClosing(WindowEvent e){
                             System.exit(0);
              DrawShapes appObj=new DrawShapes();
              appObj.setWidth(width);
              appObj.setHeight(height);
              appObj.init();          
              appObj.start();
              appWindow.getContentPane().add(appObj);
              appWindow.setSize(width, height);
              appWindow.show();
         }//end main*/
         private class ButtonHandler implements ActionListener{
              public void actionPerformed(ActionEvent e){
                   for(int i=0; i<choices.length; i++){
                        if(e.getSource()==choices[i]){
                             drawingArea.setCurrentChoice(i);
                             break;
    }//end class DrawShapes
    class DrawPanel extends JPanel{
         private int currentChoice=-1;
         private int width=100, height=100;
         public DrawPanel(int w, int h){
              width=(w>=0 ? w : 100);
              height=(h>=0 ? h : 100);
         public void paintComponent(Graphics g){
              super.paintComponent(g);
              switch(currentChoice){
                   case 0:     g.drawLine(randomX(), randomY(), randomX(), randomY());
                             break;
                   case 1: g.drawRect(randomX(), randomY(), randomX(), randomY());
                             break;
                   case 2: g.drawOval(randomX(), randomY(), randomX(), randomY());
                             break;
         public void setCurrentChoice(int c){
              currentChoice=c;
              repaint();          
         private int randomX(){
              return (int) (Math.random()*width);
         private int randomY(){
              return (int) (Math.random()*height);
    }//end class drawPanel
    That one's from a book. I used that code to start with my applet. Mine calls different merthod from the switch cases. Say I have:
    case 0: drawStart(g); break;
    public void drawStart(Graphics g){
      /* something here */
    drawMain(g);
    public void drawMain(graphics g){
    g.drawString("test", x, y);
    //here's where i'm trying to pause
    //i've tried placing Thread.sleep between these lines
    g.drawLine(x, y, a, b);
    //Thread.sleep here
    g.drawRect(x, y, 50, 70);
    }I also need to put delays between method calls but I need to synchronize them. Am I doing it all wrong? The application pauses or sleeps but afterwards, it still drew everything all at once. Thanks a lot!

    It is. Sorry about that. Just answer any if you want to. I'd appreciate your help. Sorry again if it caused you anything or whatever. .n_n.

  • Query Help

    Table1:
    ou store point
    LS LIB1 50
    LS LIB1 200
    LS LIB1 100
    LS LIB1 79
    I have to insert table1 to table2 by splitting into every 143point and assing serial number for every 143 from parameter.
    in aboce example we can split 3 time 143 like below table2 sample.
    Table2
    ou store point serial_number
    LS LIB1 50 101
    LS LIB1 93 101
    LS LIB1 107 102
    LS LIB1 36 102
    LS LIB1 64 103
    LS LIB1 79 103
    i tried below procedure its not working.
    table may have any order like below.
    Table1:
    ou store point
    LS LIB1 200
    LS LIB1 50
    LS LIB1 100
    LS LIB1 79
    then table2
    ou store point serial_number
    LS LIB1 143 101
    LS LIB1 57 102
    LS LIB1 50 102
    LS LIB1 36 102
    LS LIB1 64 103
    LS LIB1 79 103
    create or replace procedure assign_serial(from_num number,to_num number) is
    bal number(10);
    begin
    bal := 0;
    for c1 in(select * from table1)
    loop
    if c1.point <=143 then
    if bal=0 then
    bal=143-used;
    insert int0 table2 values(c1.ou,c1.store,used);
    elsif used > 0 then
    used=used-bal;
    insert int0 table2 values(c1.ou,c1.store,bal);
    bal=0;
    if used > 0 then
    insert int0 table2 values(c1.ou,c1.store,used);
    end if;
    bal:=143-used;
    end if;
    end loop;
    end;
    How to split and assign serial number,please hELP.

    .after giving serial num i have to change points in table1 to 0.The problem for SUm and split for every 143 is ,different OU and store is there.we have to know for which store points we earned serial number.
    i hope this below logic little satisfy except assign cardnum,please........ check and currect the logic
    LS LIB1 50
    LS LIB1 200
    LS LIB1 100
    LS LIB1 79
    --variable used and bal
    for c1 in(select * from table1)
    loop
    used := c1.points;
    if c1.point <=143 then
    if bal=0 then
    bal=143-used;
    insert int0 table2 values(c1.ou,c1.store,used);
    elsif used > 0 then
    used=used-bal;
    insert int0 table2 values(c1.ou,c1.store,bal);
    bal=0;
    if used > 0 then
    insert int0 table2 values(c1.ou,c1.store,used);
    end if;
    bal:=143-used;
    end if;
    end loop;

  • Help my safari doesnt open and gives me a crash report

    help my safari doesn't open and gives me a crash report ever since i downloaded a file from the internet. I have a macbook air (early 2014) with running os x yosemite version 10.10.1

    There is no need to download anything to solve this problem.
    You may have installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

  • Apple Mini DVI to Video Adapter is not working. Please Help...

    I bought an Apple Mini DVI to Video Adapter to connect my Macbook to a TV using normal video cable. When I connect the cable, my Laptop DIsplay gives a flickr once and then it shows nothing. I checked Display in the system preference where I don't get a secondary monitor option. My TV is panasonic and it's an old one. I work on Final Cut Pro and it's very very important to see my videos on a TV. What am I doing wrong with the connection? Anyone Please Please help...

    Your probably not doing anything wrong. There are thousands of users with Similar issues and it seems to be with many different adapters.
    We have Mini DP to VGA (3 different brands) and they all fail most of the time. This seems more prevalent with LCD Projectors. I've tested some (50+) with VGA Monitor (HP) and they all worked, LCD Projector (Epson, Hitachi, and Sanyo) and they all fail, DLP Projector (Sanyo) and one worked.
    My Apple Mini DP to DVi works most of the time. My Mini DP to HDMI (Generic non Apple) works every time.
    The general consensus is that Apple broke something in the OS around 10.6.4 or 10.6.5 and its not yet fixed. As we are a school we have logged a case with the EDU Support group so will see what happens.
    Dicko

  • Mini dvi to video adapter help pleaseeeeeeeeeeeeeeeeeeeeeeeeee

    right,
    ive got a 20" intel imac. i bought a mini dvi to video adapter.it said it works with the intel macs.
    i maybe being a bit thick here but the end of the dvi seems to be a different size to the port on the mac.
    please help....................

    You might find relief in the iMac Forum. Perhaps they will appreciate your distinctive thread header style more fully.
    good luck.
    x

Maybe you are looking for