HELP! Can't see real or WMV media in Safari

I installed Real Player plugin and WMV Plugins, but I can't see any media in Safari RSS (2.0.1). The plugins work ok in Camino browser, but not in Safari!! I can see the plugins in help/installed plugins. The option "play plugins" is checked in prefs, I repaired permissions, but no player in Safari...
What's wrong??

Check here.
Note: I had to uninstall Flip4Mac (remove from preference pane), delete net.telestream.wmv.export.plist, net.telestream.wmv.import.plist, and all instances of Flip4Mac WMV player components. Sounds more complicated than it is. Just right-click WMV in preference pane to remove, spotlight search net.teleserve to delete those, and spotlight search flip4mac to delete the wmv player components. Don't forget to logout after installing the two Media Player plug-ins. Good luck.

Similar Messages

  • HT204132 I can't see the green color oganization on safari /iOS8.3. That websight use evsslcertificate and root caertificate is Baltimore Cybertrust Root. Is it bug too ?

    I can't see the green color oganization on safari /iOS8.3. That websight use evsslcertificate and root caertificate is Baltimore Cybertrust Root. Is it bug too ?

    Now I can see  the green color oganization on safari /iOS8.3. It seems to be fixed.  Did you make any modifications?

  • Airport Extreme, can't see usb disk from media player

    I have a WD hard drive (formatted in FAT32) connected to my Airport Extreme. I can access it from my MacBook and I can see it under disks in Airport Utility. When I try to access the drive wirelessly from my Merlin media player (that's connected to my TV), the drive doesn't show up under the Airport Extreme Workgroup. I should mention that when the drive is plugged into my MacBook, I CAN access the drive on my media player under my MacBook's Workgroup. So I'm assuming the issue is with the Airport allowing the drive to be seen, and not the format of the drive itself. Can anyone help?

    By default, when you enable "File Sharing" in the AirPort Utility, your AirPort Extreme will share out an attached USB HDD with either Macs or PCs.
    To access the shared HDD from a Windows 7 PC:
    Start > Computer > Map network drive
    Drive: <use default or select a drive letter>
    Folder: \\<AirPort's Base Station Name or IP Address>\<HDD's Volume Name>
    User name: <Enter Base Station Administrator name>
    Password: <Enter Base Station Administrator password>

  • Help, can't see older pictures in iPhoto

    In my iPhoto library on the most recent events and pictures can be seen. By recent I mean mid 2010 onwards. The ones I can't see date back to 1999. These have blank thumbnails and when I click on an image - nothing.
    Information like event name and date and the number of pictures inside is still intact as as the name of all my albums. The preview at the bottom of the screen shows the photos but after rebuild can still see older events but everything is blank now.
    I noticed the icon beside iPhoto library is just a plain white file and not the iPhoto icon. After hitting "show package contents" I also notice the icon on the AlbumXML is also plain white file icon.
    I tried iPhoto rebuild - nothing.
    I tried BatcMod - nothing
    I tried iPhoto Library Manager - rebuilt the photos and events I can already see.
    Can I go back in Time Machine and pick an earlier version of my library - if so how do I do it?
    I have more than 19000 pictures and am praying I haven't lost them.
    I recently upgraded to Lion and am not sure if this is the reason.
    Can anyone help me PLEASE??

    Hi Terence - thanks for your reply.
    So what exactly am I looking for in Time Machine and how do I restore it?
    Is it my iPhoto library?
    Appreciate any help you can give me.

  • Help-can't see (canvas) item in viewer

    Hi
    I'm trying to position an 8 point garbage matte by use of the canvas, but can't see the positions because I can't see the item in the viewer while I am on the controls page in the canvas
    please excude dumb qstn, what am I doing wrong, how can i get it to show in viewer?
    thanks : )

    Hi(Bonjour)!
    Not sure to understand your question, but you can "tear" the filter tab from viewer window and position it anywhere on your screen. Be sure to double-clic the clip with the garbage matte applied to open it in viewer before tearing the filter tab.
    There also a local menu in this filter that allows to "see" either your garbage matte, source material, composition in the canvas.
    Michel Boissonneault

  • How can I see websites in compatibility mode in Safari?

    Just bought MacBook Air and having really big problem. For work i need website, which works only in compadibility mode in IE8. How can i see it in mode like this without virtual machines or Bootcamp?

      I do know whether this will work or not.
    Close all Safari windows.
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    "Develop" menu will appear in the Safari menu bar.
    Develop > User Agent > Internet Explorer 8.0
    If this does not help, revert back to Safari 6.0.3 -Mac.

  • HELP Can you see the missing parenthesis ?!

    Dear People,
    I am doing a simple program that creates a ContactBook and allows keyboard entry of lastName, telephoneNumber and emailAddress.
    I have a few error messages that say parenthesis missing but I don't
    see any missing ! :
    "Note.java": Error #: 200 : '{' expected at line 15
    "Note.java": Error #: 200 : '}' expected at line 59
    "TryContactBook.java": Error #: 200 : ')' expected at line 30
    "TryContactBook.java": Error #: 200 : ')' expected at line 42
    below is the coding
    thank you in advance
    Stan
    import java.util.*;
    public class TryContactBook
       private Note note;
       public static void main(String[] args)
         ContactBook myContactBook = new ContactBook();
         FormattedInput input = new FormattedInput();
         Note note = new Note();
         System.out.println("Enter the number of new notes you wish to record ");
         int numberOfNotes = input.readInt();
         System.out.println("Ready to record " + numberOfNotes + "note(s) ");
         for (int i = 0; i < numberOfNotes; i++)
           try
             System.out.print("Enter a last name: ");
              note.setLastNaame(input.readString());
             System.out.println("last name input is: " + notes.getLastName());
           catch (InvalidUserInputException e)
              System.out.println("InvalidUserInputException thrown when inputting last name. \n" +
                         e.getMessage());
            try
               System.out.println("Enter a telephone number ");
              note.setTelephoneNumber(input.readString();
             System.out.println("telephone number input is: " + notes.getTelephoneNumber());
           catch (InvalidUserInputException e)
              System.out.println("InvalidUserInputException thrown when inputting last name. \n" +
                         e.getMessage());
            try
              System.out.println("Enter an e-mail address ");
              note.setTelephoneNumber(input.readString();
              System.out.println("e-mail address  input is: " + notes.getEmailAddress());
            catch (InvalidUserInputException e)
              System.out.println("InvalidUserInputException thrown when inputting last name. \n" +
              e.getMessage());
    =====================================================================
    import java.util.*;
    * A class to maintain an arbitrarily long list of contacts.
    * Notes are numbered for external reference by a human user.
    * In this version, note numbers start at 0.
    * @author Stan Dominski
    public class ContactBook
        // Storage for an arbitrary number of notes.
        private ArrayList notes;
         * Perform any initialization that is required for the
         * notebook.
        public ContactBook()
            notes = new ArrayList();
         * Store a new note into the notebook.
         * @param note The note to be stored.
        public void storeNote(String note)
            notes.add(note);
         * @return The number of notes currently in the notebook.
        public int numberOfNotes()
            return notes.size();
         * Show a note.
         * @param noteNumber The number of the note to be shown.
        public void showNote(int noteNumber)
            if(noteNumber < 0 || noteNumber > numberOfNotes())
                // This is not a valid note number, so do nothing.
            else
                // This is a valid note number, so we can print it.
                System.out.println(notes.get(noteNumber));
         * Remove a note from the notebook if it exists.
         * @param noteNumber The number of the note to be removed.
        public void removeNote(int noteNumber)
           if(noteNumber < 0 || noteNumber > numberOfNotes())
           System.out.println("noteNumber is not valid.");
           else
            notes.remove(noteNumber);
          * List all the notes in the notebook
           public void listNotes()
              Iterator i = notes.iterator();
               Iterator myIterator = notes.iterator();
              while(i.hasNext() && myIterator.hasNext())
                 System.out.print(notes.indexOf(i.next() ) + ":" );
                 System.out.println("" + myIterator.next());
    =======================================================================
    import java.util.*;
    public class Note
       private ArrayList contactInfo;
       private String lastName;
       private String telephoneNumber;
       private String emailAddress;
       public class Note()
            contactInfo = new ArrayList();
           this.lastName = lastName;
          this.telephoneNumber = telephoneNumber;
          this.emailAddress = emailAddress;
        public  void setLastName(String lastName)
           this.lastName = lastName;
              public String getLastName()
                 return lastName;
                    public  void setTelephoneNumber(String telephoneNumber)
                       this.telephoneNumnber = telephoneNumber;
              public String getTelephoneNumber()
                 return telephoneNumber;
                    public  void setEmailAddress(String emailAddress)
                        this.emailAddress = emailAddress;
                  public String getEmailAddress()
                     return emailAddress;
    ======================================================================
    import java.io.*;
    import java.util.*;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.IOException;
    public class FormattedInput
         public String readString() throws InvalidUserInputException
           if(readToken() == tokenizer.TT_WORD || ttype == '\"' ||  ttype == '\'')
            return tokenizer.sval;
           else
             throw new InvalidUserInputException(" readString() failed. ..... Input data is not a string");
         // Method to read an int value
    public int readInt() throws InvalidUserInputException
       if (readToken() != tokenizer.TT_NUMBER)
         throw new InvalidUserInputException(" readInt() failed. " + " input data not numeric");
       else
         return (int)tokenizer.nval;   // value is numeric so return as int
           //helper method to read the next token
           private int readToken()
             try
               ttype = tokenizer.nextToken();
               return ttype;
             catch(IOException e)
               e.printStackTrace(System.err);
               System.exit(1);
              return 0;
           //object to tokenize input from the standard input stream
           private StreamTokenizer tokenizer = new StreamTokenizer(
                                                new BufferedReader(
                                                 new InputStreamReader(System.in)));
           private int ttype;                  //stores the token type code
    ======================================================================
    import java.io.StreamTokenizer;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.BufferedReader;
    public class InvalidUserInputException extends Exception
       public InvalidUserInputException() { }
          public InvalidUserInputException(String message)
              super(message);

    I have out comments on the errors I found. There might be more.
    I couldn't get the indentation to work so it will look a bit funny.
    //David
    "Note.java": Error #: 200 : '{' expected at line 15
    "Note.java": Error #: 200 : '}' expected at line 59
    "TryContactBook.java": Error #: 200 : ')' expected at
    line 30
    "TryContactBook.java": Error #: 200 : ')' expected at
    line 42
    import java.util.*;
    public class TryContactBook
    private Note note;
    public static void main(String[] args)
    ContactBook myContactBook = new ContactBook();
    FormattedInput input = new FormattedInput();
    Note note = new Note();
    System.out.println("Enter the number of new notes you wish to record ");
    int numberOfNotes = input.readInt();
    System.out.println("Ready to record " + numberOfNotes + "note(s) ");
    for (int i = 0; i < numberOfNotes; i++)
    try
    System.out.print("Enter a last name: ");
    note.setLastNaame(input.readString());
    System.out.println("last name input is: " +
    is: " + notes.getLastName());
    catch (InvalidUserInputException e)
    System.out.println("InvalidUserInputException
    xception thrown when inputting last name. \n" +
    e.getMessage());
    try
    System.out.println("Enter a telephone
    telephone number ");
    note.setTelephoneNumber(input.readString()); // 1 error
    System.out.println("telephone number input
    er input is: " + notes.getTelephoneNumber());
    catch (InvalidUserInputException e)
    System.out.println("InvalidUserInputException
    xception thrown when inputting last name. \n" +
    e.getMessage());
    try
    System.out.println("Enter an e-mail address
    l address ");
    note.setTelephoneNumber(input.readString()); // 2 error
    System.out.println("e-mail address  input
    ss  input is: " + notes.getEmailAddress());
    catch (InvalidUserInputException e)
    System.out.println("InvalidUserInputException
    xception thrown when inputting last name. \n" +
    e.getMessage());
    =======================================================
    =============
    import java.util.*;
    * A class to maintain an arbitrarily long list of
    contacts.
    * Notes are numbered for external reference by a human
    user.
    * In this version, note numbers start at 0.
    * @author Stan Dominski
    public class ContactBook
    // Storage for an arbitrary number of notes.
    private ArrayList notes;
    * Perform any initialization that is required for
    for the
    * notebook.
    public ContactBook()
    notes = new ArrayList();
    * Store a new note into the notebook.
    * @param note The note to be stored.
    public void storeNote(String note)
    notes.add(note);
    * @return The number of notes currently in the
    the notebook.
    public int numberOfNotes()
    return notes.size();
    * Show a note.
    * @param noteNumber The number of the note to be
    o be shown.
    public void showNote(int noteNumber)
    if(noteNumber < 0 || noteNumber >
    umber > numberOfNotes())
    // This is not a valid note number, so do
    mber, so do nothing.
    else
    // This is a valid note number, so we can
    , so we can print it.
    System.out.println(notes.get(noteNumber));
    * Remove a note from the notebook if it exists.
    * @param noteNumber The number of the note to be
    o be removed.
    public void removeNote(int noteNumber)
    if(noteNumber < 0 || noteNumber >
    mber > numberOfNotes())
    System.out.println("noteNumber is not
    is not valid.");
    else
    notes.remove(noteNumber);
    * List all the notes in the notebook
    public void listNotes()
    Iterator i = notes.iterator();
    Iterator myIterator = notes.iterator();
    while(i.hasNext() && myIterator.hasNext())
    System.out.print(notes.indexOf(i.next() )
    f(i.next() ) + ":" );
    System.out.println("" +
    println("" + myIterator.next());
    =======================================================
    ===============
    import java.util.*;
    public class Note
    private ArrayList contactInfo;
    private String lastName;
    private String telephoneNumber;
    private String emailAddress;
    public class Note()
    contactInfo = new ArrayList();
    this.lastName = lastName;
    this.telephoneNumber = telephoneNumber;
    this.emailAddress = emailAddress;
    public  void setLastName(String lastName)
    this.lastName = lastName;
    public String getLastName()
    return lastName;
    public  void setTelephoneNumber(String
    neNumber(String telephoneNumber)
    this.telephoneNumnber =
    telephoneNumnber = telephoneNumber;
    public String getTelephoneNumber()
    return telephoneNumber;
    public  void setEmailAddress(String
    lAddress(String emailAddress)
    this.emailAddress = emailAddress;
    public String getEmailAddress()
    return emailAddress;
    }} // 3 error
    =======================================================
    ==============
    import java.io.*;
    import java.util.*;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.IOException;
    public class FormattedInput
    public String readString() throws
    rows InvalidUserInputException
    if(readToken() == tokenizer.TT_WORD || ttype ==
    ype == '\"' || ttype == '\'')
    return tokenizer.sval;
    else
    throw new InvalidUserInputException("
    eption(" readString() failed. ..... Input data is not
    a string");
    // Method to read an int value
    public int readInt() throws
    InvalidUserInputException
    if (readToken() != tokenizer.TT_NUMBER)
    throw new InvalidUserInputException(" readInt()
    nt() failed. " + " input data not numeric");
    else
    return (int)tokenizer.nval; // value is numeric
    eric so return as int
    //helper method to read the next token
    private int readToken()
    try
    ttype = tokenizer.nextToken();
    return ttype;
    catch(IOException e)
    e.printStackTrace(System.err);
    System.exit(1);
    return 0;
    //object to tokenize input from the standard
    andard input stream
    private StreamTokenizer tokenizer = new
    = new StreamTokenizer(
    new
    new
    new
    new BufferedReader(
    new
    new
    new
    new
    new
    new
    new
    new InputStreamReader(System.in)));
    private int ttype; //stores
    stores the token type code
    =======================================================
    ==============
    import java.io.StreamTokenizer;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.BufferedReader;
    public class InvalidUserInputException extends
    Exception
    public InvalidUserInputException() { }
    public InvalidUserInputException(String
    tring message)
    super(message);

  • I can not see Aperture in the media brower of iMovie and idvd since I have upgraded my iphone 5

    I have Aperture 3.4.2 (most updated version I could find).  Now when I look to make a movie or dvd with my photos.  I can not find any of my recent photos in imovie or idvd via their respective media browsers.  Aperture and iphoto are both working fine and great (ie: I can adjust my photos accordingly and print them out).  I was able to successfully make both an imovie and then burn it on idvd (added photos to the idvd screens via media browers too), last week. 
    The only thing I can think that is different with my computer is that I upgraded my iphone from iphone4 to iphone5. 
    This is what I have looked into already:
    Aperture>Preferences>Preview is set to share and set to always>photo preview set to Don't limit    (no change)
    Tried alt+cmd when opening Aperture and reset Aperture (as well with iphoto).  (no change)
    Itunes>Advanced>choose photos to share> then a window pops up stating Aperture could not be found open Preferences in Aperture (My first step already proved that it should be fine)
    My question is why all of a sudden is Aperture and most of my iphone photos not showing up in imovie or idvd all of a sudden?  Does the recent Iphone5 updgrade have anything to do with it?
    Any help would be great since I have been looking all over the web for an answer with no success.
    Thanks in advance for your help.
    TOM

    Did you try this link: -> Images or Animations do not load
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    If NO, then check it first. If YES then bummer !! I was hoping that would work :-( Anyway here's how you can Downgrade to a previous version.
    Uninstalling Firefox
    * https://support.mozilla.com/en-US/kb/Uninstalling%20Firefox
    * DO NOT SELECT THE OPTION TO REMOVE YOUR USER DATA AND SETTINGS
    Downloading Firefox 3.6.19
    * http://www.mozilla.com/en-US/firefox/all-older.html
    Installing Firefox on Windows
    * https://support.mozilla.com/en-US/kb/Installing%20Firefox%20on%20Windows
    Check and tell if its working.

  • Can't see any photos in media browser in other apps

    I have my iPhoto library on an external drive due to its size as well as multiple user profiles on this box. No problem when I open iPhoto everything shows up all nice and organized, but if I'm working in another app that uses the media browser to allow quick access to photos (iMovie, Keynote, etc., or iTunes for syncing purposes) there is nothing. Any thoughts? Is there a way to tell the media browser/inspector where my iPhoto library is located so I can see my pics?

    Terence,
    Thanks for the kind response. Just checked, and the external drive is formatted as Mac OS Extended (Journaled). As further specific, both the library [package] and the image files themselves are stored on this external driver. One other twist: the iPhoto library is set up as a 'referenced' library (that is, I have UNchecked 'Copy items to the iPhoto Library' in iPhoto>Preferences>Advanced). Not sure if this is complicating things.
    Things work quite well in iPhoto itself. I have no issues accessing or managing photos in iPhoto. They simply don't appear anywhere else in OSX (e.g. the media browser, Front Row, or iTunes).
    Any other troubleshooting suggestions?
    Cheers,
    Mitch

  • Help - can't see Aperture library in iPhoto

    I'm following the directions outlined on
    http://docs.info.apple.com/article.html?artnum=304446
    but not seeing the Aperture library.
    Sharing is turned on in Aperture, and I have the latest versions of both software.
    A follow-on (probably answered when I get this worked out):
    I am assuming I can create a Photocast in iPhoto of files I have modified in Aperture (not the masters). If that happens and I continue to tweak the modified photo within Aperture, will that automatically update the iPhoto Photocast?
    Or does iPhoto in essence import a file from Aperture, so its not really dynamic? (or just reference the master or the top of the stack)?
    Thanks so much!

    Answering the second question first: You get a media browser with Aperture photos - if you use them in iPhoto you'll have imported them and thus created copies, so no, the changes won't go through to the photocast.
    In addition to turning on sharing, you might have to force previews to be generated for your Aperture library. I don't have Aperture but I believe the steps were to hold down Option and choose Generate Previews, forcing Aperture to create previews. I read this on a discussion that was in essence complaining about how slow Aperture is to generate previews - I guess if you didn't notice, then no previews were actually created. I think the preference you set might have been to apply it to newly imported photos, not existing ones.
    There's a task progress window or something that tells you it's generating previews. I'm not sure if it appears automatically or you have to bring it up.

  • Help - Can't See any of my photos

    Hoping that someone can help me - I am really at a loss here.
    I am using Lightroom 1.3.1 on a Vista 64 system with 8G RAM. Things had been working fine, but suddenly I cannot see any of my picture, either in the Library module or in the Develop module.
    In the Library module, I just see gray boxes for the thumbnails. When I originally open the Lightroom, there are no thumbnails, but when I mouse over them, the gray thumbnails appear. They also appear very disorganized - for example the gray thumbnail box for the "2" frame is upside down and the "2" label is reversed (mirror image). The filestrip view is similar.
    If I go to the develop module, all I see is a gray box instead of the picture itself.
    I've tried a few things - I deleted the preferences file and recreated it. I verified the integrity of the catalog. I tried creating a new catalog and I tried uninstalling and re-installing Lightroom. Nothing that I have done changes what I see.
    Help - I am at a loss as to what to try next!
    Thanks,
    Paul

    Well it actually uses the Profile which many another app wont bother to do, so if it is a corrupt profile it reacts differently that other apps.
    Don
    Don Ricklin, MacBook 2Ghz Duo 2 Core running 10.5.1 & Win XP, Pentax *ist D
    See LR Links list at my
    Blog for related sites.

  • Help - Can't see Reminders App on Macbook Air

    Reminders App on a Macbook Air (2010) Running Mavericks. I can no longer see the Reminders window.  The App shows that it opens but there is no Window to view the program.  How can I get it to display?  I've closed the program and reopened it.  It shows in the menu bar at the top but no window is available.  I've tried shutting down the computer and rebooting and then opening the program with same resluts, program show opened in the menu bar but no window visible.  Anybody have any suggestions on how to get my window to show again?

    Here's the documentation:
    About AirPlay Mirroring in OS X Mountain Lion
    Hopefully your Apple TV meets the minimum requirements shown in the above article.

  • Still can't see iPhoto in iMov Media Browser after deleting "&'s" and prefs

    Combed the discussions - many references to this problem - I tried deleting ALL question mark symbols "?" from ALL my iPhotos - an arduous task but I know I got them all - then deleted the preferences and rebuilt iPhoto with command option - everything in it... Still no luck viewing my iPhoto libraries in iMovie - so can't increase duration times because "show photo settings" grays out - does ANYbody have a fix?
    thanks!
    iMac G4 superdrive   Mac OS X (10.4.5)   iBook G4

    I saw your post earlier when I was having the same difficulty. A recent post suggested rebuilding the iPhoto Library using Shift Option when opening the application. I tried that and it created a new iPhoto Library_2 folder. That folder showed up in the Media Browser, so I just imported all the photos in my previous iPhoto folder into the new one. It worked for me; I hope it works for you.

  • Windows network - can't see "real" network drives

    Hi all-
    I'm hooked up to a Windows network and until my last (standard) password change, things worked ok.
    Now, although I can see the network drives, and attempt to connect, I get an error message saying that
    "The alias "Server20" could not be opened, because the original item cannot be found."
    If I attempt "Fix Alias...", the network drive is grayed out.
    Does anyone know how to address this?
    Any suggestions greatly appreciated!
    Thanks,
    Andrew

    Hi,
    I just had this problem. I tried to turn of the firewall of my XP computer which solved the problem. But since I do not want my firewall to be off I tried to search the settings of the firewall, and the I found that I had limited the access to shares to one other XP computer on my network. This is smart to to because it narrows down the security risk of having shares while you are connected to the network. So I simply added the new mac to the list of IP adresses that could access the shares on the XP computer. Which solved it.
    The setting can be found in your local area network setting->Advanced->Settings->Exceptions->File and Printer sharing->Edit
    -Tommy

  • Helping can't see Output to Decklink Mini Monitor

    Hi all,
    Did the upgrade last night to the Newest version on Premiere Pro CC and I lost all links to my Decklink Monitor. I have unistalled and reinstalled the drivers serval times now. Prior to the update all was good. Also experiencing the same with After Effects and don't see the ability to output to the Monitor in Photoshop (all programs upgraded to 2014)
    Anyone else experiencing this?
    Any ideas on fixes?
    Thanks
    Tommy

    In order for the Blackmagic to install into Premiere Pro CC 2014 you need to have Premiere Pro CC v7.x.x installed.
    Blackmagic will be releasing a driver that will correct this in the future. Sorry for the inconvenience.
    Best,
    Peter Garaway
    Adobe
    Premiere Pro

Maybe you are looking for

  • SM Bus Controller Win 8.1 Driver Required

    Had a  240 Gig SSD installed on my new HP Pavilion Windows had to be reinstalled from scratch & I now need a SM Bus Controller Driver Tried loading the Intel drivers from the HP Driver site It  loaded the missing PCI Simple Communications Controller

  • [ALV] Save as dialog box is - in fact - Save as Web Page

    Hi, When exporting ALV to Excel from a Web Dynpro application, the Excel file opens correctly. But, upon calling the "Save as" entry, the dialog box is not the expected one: it is the Save as Web page one. Although I tried to change Excel format usin

  • FM for getting Classification against Customer and Material

    hi friends.. Is there any FM for getting Classification against Customer and Material. transaction VCH3. (strategy SD03) regards

  • Does Oracle XML Publisher version 5.6.2 integrate with Oracle Portal?

    We want to know if XMLP is just an external application to Oracle Portal or if it integrates with Oracle Portal.

  • ORDVir object type

    First i had a problem with creating tables with image type column. For example, when i typed: CREATE TABLE stockphotos (photo_id NUMBER, photographer VARCHAR2(64), annotation VARCHAR2(255), photo ORDSYS.ORDVir); i got the answere invalid datatype for