I would like this output

Sorry I would like this output:
PID PCODE P_NUMBER L_NAME USED     NEW
191 TI4-35304     4-3530 POS     6     2
          TCC      0     1
192 PI4-36701     4-3670 POS     4     23
TCC     0     18
193 TI4-34906     4-3490 POS     0     1
TCC 0     4
Basically I do not want to display the PID PCODE and P_NUMBER on each line if it is the same for the L_NAME.
I tried this :
SELECT CASE WHEN row_number() OVER(PARTITION BY P.PRODUCT_ID ORDER BY P.PRODUCT_ID) >1 THEN NULL ELSE P.PRODUCT_ID END "PID" ,
CASE WHEN row_number() OVER(PARTITION BY P.PRODUCTCODE ORDER BY P.PRODUCT_ID) >1 THEN NULL ELSE P.PRODUCTCODE END "PCODE",
          CASE WHEN row_number() OVER(PARTITION BY P.PART_NUMBER ORDER BY P.PRODUCT_ID) >1 THEN NULL ELSE P.PART_NUMBER END "P_NUMBER",
               Pkg_Locations.GetLocation(Pkg_Locations.GETLOCATIONIDFROMSUB(I.SUB_LOCATION_ID)) AS L_NAME,
          SUM(CASE WHEN I.USED =1 THEN I.AVAILABLE_QTY ELSE 0 END) AS USED,
          SUM(CASE WHEN I.USED =0 THEN I.AVAILABLE_QTY ELSE 0 END) AS NEW     
     FROM INVENTORY I,
     PRODUCTS P
WHERE I.PRODUCT_ID = P.PRODUCT_ID
GROUP BY P.PRODUCT_ID,P.PRODUCTCODE,P.PART_NUMBER,Pkg_Locations.GetLocation(Pkg_Locations.GETLOCATIONIDFROMSUB(I.SUB_LOCATION_ID))
but it does not put all the values on the top line.

Try this
SELECT CASE WHEN row_number() OVER(PARTITION BY P.PRODUCT_ID  ORDER BY P.PRODUCT_ID) >1
            THEN NULL ELSE P.PRODUCT_ID END "PID" ,
       CASE WHEN row_number() OVER(PARTITION BY P.PRODUCT_ID, P.PRODUCTCODE ORDER BY P.PRODUCT_ID, P.PRODUCTCODE) >1
            THEN NULL ELSE P.PRODUCTCODE END "PCODE",
       CASE WHEN row_number() OVER(PARTITION BY P.PRODUCT_ID, P.PRODUCTCODE, P.PART_NUMBER ORDER BY P.PRODUCT_ID, P.PRODUCTCODE, P.PART_NUMBER) >1
            THEN NULL ELSE P.PART_NUMBER END "P_NUMBER",
...

Similar Messages

  • I have bought Adobe DW CS4 on CD and would like this version for download to my new laptop. How can I access it for no extra charge?

    I have bought Adobe DW CS4 (a few years ago) on CD and would like this version for download to my new laptop. How can I access it?

    cecilia linhart wrote:
    would like this version for download to my new laptop.
    Why are you "downloading" if you have the CD?
    Check if CS4 will run onyour new machine
    System requirements | CS4, Point Products

  • Has Apple made any attempt to fix the 'no deleting apps on iCloud' yet? Would like this feature instead of going to Apple or having write them to get done.

    Has Apple made any attempt to fix the 'no deleting apps on iCloud' yet? Would like this feature instead of going to Apple or having to write them to get this feature. What's the point of having an iPad if you can't manage it. You get an app you thought you'd like, but don't & now it's taking up space for another app that could be useful, if not better.

    Items showing as in the cloud on app store, do not take up any spce on either your ipad or on your icloud, it is stored in the app store cloud.
    The main reason to not delete is it is the history of what you have purchased, you can hide it from view if you would like.
    btw,, Apple Feedback Link
    http://apple.com/feedback

  • TS2551 I have problem opening this file. It just take hours and hours incircle but nothing happen. Please help ! I would like this app to be reinstall.

    I have problem opening this file. It just take hours and hours incircle but nothing happen. Please help ! I would like this app to be reinstall

    What file? Does this involve iPhoto somehow?

  • Currently have JTextArea, but would like the output to be in a JTable...

    Hi there. I asked this question in the database section, but I ended up getting more questions and separating code, etc. Needless to say, my initial question went unanswered. So, for the purposes of this question, let me get this one thing out of the way:
    Yes, I know this is one big file, and that I should have the GUI and DB separated. However, this is for a small project that I'm working on, and for the moment, I'm not too worried about separating class files. As long as the program works as I want it too, so much the better for me.
    Now, on to the question at hand. Currently, I have a project that connects to a MySQL DB, and it displays the output from an SQL command in a JTextArea. It looks horribly ugly, as all the columns are not formatted properly. Take a look:
    http://img508.imageshack.us/img508/2193/testxe4.jpg
    Sure I can see columns, but I would love for the output to be displayed in a neat JTable, which is also much easier on the eyes.
    Here is the current code:
    package classes;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.sql.*;
    import java.util.*;
    public class SQLClient extends JApplet {
         private Connection connection;
         private Statement statement;
         private JTextArea jtasqlCommand = new JTextArea();
         private JTextArea jtaSQLResult = new JTextArea();
         JTextField jtfUsername = new JTextField();
         JPasswordField jpfPassword = new JPasswordField();
         JButton jbtExecuteSQL = new JButton("Execute SQL Command");
         JButton jbtClearSQLCommand = new JButton("Clear");
         JButton jbtConnectDB1 = new JButton("Connect to Database");
         JButton jbtClearSQLResult = new JButton("Clear Result");
         Border titledBorder1 = new TitledBorder("Enter a SQL Command");
         Border titledBorder2 = new TitledBorder("SQL Execution Result");
         Border titledBorder3 = new TitledBorder("Enter Database Information");
         JLabel jlblConnectionStatus1 = new JLabel("");
         JLabel jlblConnectionStatus2 = new JLabel("Not Connected");
         public void init() {
              JScrollPane jScrollPane1 = new JScrollPane(jtasqlCommand);
              jScrollPane1.setBorder(titledBorder1);
              JScrollPane jScrollPane2 = new JScrollPane(jtaSQLResult);
              jScrollPane2.setBorder(titledBorder2);
              JPanel jPanel1 = new JPanel(new FlowLayout(FlowLayout.RIGHT));
              jPanel1.add(jbtClearSQLCommand);
              jPanel1.add(jbtExecuteSQL);
              JPanel jPanel2 = new JPanel();
              jPanel2.setLayout(new BorderLayout());
              jPanel2.add(jScrollPane1, BorderLayout.CENTER);
              jPanel2.add(jPanel1, BorderLayout.SOUTH);
              jPanel2.setPreferredSize(new Dimension(100, 100));
              JPanel jPanel3 = new JPanel();
              jPanel3.setLayout(new BorderLayout());
              jPanel3.add(jlblConnectionStatus1, BorderLayout.CENTER);
              jPanel3.add(jbtConnectDB1, BorderLayout.EAST);
              JPanel jPanel4 = new JPanel();
              jPanel4.setLayout(new GridLayout(4, 1, 10, 5));
              jPanel4.add(jtfUsername);
              jPanel4.add(jpfPassword);
              JPanel jPanel5 = new JPanel();
              jPanel5.setLayout(new GridLayout(4, 1));
              jPanel5.add(new JLabel("Username"));
              jPanel5.add(new JLabel("Password"));
              JPanel jPanel6 = new JPanel();
              jPanel6.setLayout(new BorderLayout());
              jPanel6.setBorder(titledBorder3);
              jPanel6.add(jPanel4, BorderLayout.CENTER);
              jPanel6.add(jPanel5, BorderLayout.WEST);
              JPanel jPanel7 = new JPanel();
              jPanel7.setLayout(new BorderLayout());
              jPanel7.add(jPanel3, BorderLayout.SOUTH);
              jPanel7.add(jPanel6, BorderLayout.CENTER);
              JPanel jPanel8 = new JPanel();
              jPanel8.setLayout(new BorderLayout());
              jPanel8.add(jPanel2, BorderLayout.CENTER);
              jPanel8.add(jPanel7, BorderLayout.WEST);
              JPanel jPanel9 = new JPanel();
              jPanel9.setLayout(new BorderLayout());
              jPanel9.add(jlblConnectionStatus2, BorderLayout.EAST);
              jPanel9.add(jbtClearSQLResult, BorderLayout.WEST);
              this.add(jPanel8, BorderLayout.NORTH);
              this.add(jScrollPane2, BorderLayout.CENTER);
              this.add(jPanel9, BorderLayout.SOUTH);
              jbtExecuteSQL.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
              executeSQL();
              jbtConnectDB1.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
              connectToDB();
              jbtClearSQLCommand.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
              jtasqlCommand.setText(null);
              jbtClearSQLResult.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
              jtaSQLResult.setText(null);
         private void connectToDB() {
              String driver = "com.mysql.jdbc.Driver";
              String url = "jdbc:mysql://localhost:3306/petstore2002";
              String username = jtfUsername.getText().trim();
              String password = new String(jpfPassword.getPassword());
              try {
                   Class.forName(driver);
                   connection = DriverManager.getConnection(url, username, password);
                   jlblConnectionStatus2.setText("Connected To Database");
              catch (java.lang.Exception ex) {
                   ex.printStackTrace();
         private void executeSQL() {
              if (connection == null) {
                   jtaSQLResult.setText("Please connect to a database first");
                   return;
              else {
                   String sqlCommands = jtasqlCommand.getText().trim();
                   String[] commands = sqlCommands.replace('\n', ' ').split(";");
                   for (String aCommand: commands) {
                        if (aCommand.trim().toUpperCase().startsWith("SELECT")) {
                             processSQLSelect(aCommand);
                        else {
                             processSQLNonSelect(aCommand);
         private void processSQLSelect(String sqlCommand) {
              try {
                   statement = connection.createStatement();
                   ResultSet resultSet = statement.executeQuery(sqlCommand);
                   int columnCount = resultSet.getMetaData().getColumnCount();
                   String row = "";
                   for (int i = 1; i <= columnCount; i++) {
                        row += resultSet.getMetaData().getColumnName(i) + "\t";
                   jtaSQLResult.append(row + '\n');
                   while (resultSet.next()) {
                        row = "";
                        for (int i = 1; i <= columnCount; i++) {
                             row += resultSet.getString(i) + "\t";
                        jtaSQLResult.append(row + '\n');
              catch (SQLException ex) {
                   jtaSQLResult.setText(ex.toString());
         private void processSQLNonSelect(String sqlCommand) {
              try {
                   statement = connection.createStatement();
                   statement.executeUpdate(sqlCommand);
                   jtaSQLResult.setText("SQL command executed");
              catch (SQLException ex) {
                   jtaSQLResult.setText(ex.toString());
         public static void main(String[] args) {
              SQLClient applet = new SQLClient();
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setTitle("Interactive SQL Client");
              frame.getContentPane().add(applet, BorderLayout.CENTER);
              applet.init();
              applet.start();
              frame.setSize(800, 600);
              Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
              frame.setLocation((d.width - frame.getSize().width) / 2,
              (d.height - frame.getSize().height) / 2);
              frame.setVisible(true);
    }Right now it works fine, and I am planning on using this as an initial prototype for the presentation. Can I get some help on getting the output displayed into a JTable? How would I go abouts doing the conversion? I'm fairly new to Java (taking a course on it), and I'm worried that if I change one line of code the whole thing will get ruined and I'll need to start from scratch.

    -> It sounds like you're getting annoyed with the amount of people asking perfectly legitimate questions
    Your expectations are not legitimate. We attempt to understand your problem and give you the resources to solve the problem. Many times those resources are in the form of a tutorial or a reference to the API. We are not here to write code for you.
    I pointed you in the right direction. Its up to you do to some learning on your own. You have not made the slightest effort to understand how to use a JTable. You have not made the slightest effort to search the forum to see if you question has been asked before (it has).
    Your attitude and effort determines how much effort we make. Frankly you have made no effort whatsoever to solve you problem so as far as I am concerned you are on you own. Apparently I am not the only one who thinks you should be making more of an effort based on all the other advice you have received.

  • HT204053 I set up my iTune and iCloud account with my work email sometime ago.  Last week I changed my iTune email account to a personal email and noticed that the iCloud account has not changed.  I pay for additional storage and would like this changed?

    My first iTune and iCloud account was set up with a work email address.  Last week, I changed my AppleID to a personal email account, but have found that on my iPhone under settings, iCloud, my account still has my work email.  How can I change this to reflect my new personal email.  I also pay to have extra storage, how is all of this working/tying together?  Please help!

    Sorry, you cannot use more than one iTunes account at a time.

  • When i open firefox, the, i think it's called the history menu, opens in the left had side too and i would like this to stop.

    it's the bar that runs from the top to bottom of the left hand side of firefox. i have no idea how this started, it didn't do this before, and i am starting to get annoyed. i looked through the settings, and google and couldn't find how to stop it. could someone give me the step by step?

    *CTRL+H opens or closes the History Sidebar (it says "History" at the top)
    *CTRL+B opens or closes the Bookmarks Sidebar (it says "Bookmarks" at the top)
    *For either Sidebar, clicking the small "x" to the right of "Histtory"/"Bookmarks" will close the Sidebar
    *If the Sidebar is open when you close/exit Firefox, it will be there when you open/re-start Firefox.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *'''''Adobe Shockwave for Director Netscape plug-in''''': [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *'''''Shockwave Flash''''' (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *'''''Next Generation Java Plug-in for Mozilla browsers''''': [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • When I respond to an email (through hotmail), the initial email does not appear in my response. This does not happen with internet explorer where I can see the email I am answering. I would like this to happen with Firefox. It used to.

    I use Firefox for my emails (hotmail). When I respond to an email, it does not appear under my response as it used to. This does not happen with internet explorer.
    == This happened ==
    Not sure how often
    == about a month ago

    Hello Jack.
    See this support article:
    http://support.mozilla.com/en-US/kb/Websites+look+wrong
    I hope it helps.

  • HT5312 My husband relinquished this IPad to me when he had to purchase another type of tablet.  Presently, all his information is imbedded into this IPad and I would like this IPad to default to it's original position.  How can I accomplish this?

    My husband relinquished this IPad to me when he had to purchase another product for work.  How do I reset this IPad to  it's original new settings?

    See Here...
    What to do before selling or giving away your iPhone, iPad, or iPod touch

  • I would like to move the FF4 Home button from the Right to the left side of the address field. Is this possible?

    I would like this because when I open a new tab, it opens to a blank page. Most often I want a tab to provide a new search process, and having to reach to the far right of the screen when the new tab is enabled on the left of the screen seems disjointed.

    Right click a blank part of the Tab Bar and then click ''Customize''. A panel will open and while it remains visible, you can re-arrange the layout. So drag the Home button somewhere else.
    For anything you don't want, drag it into that panel.
    Similarly, you can add to the existing layout by dragging stuff out of there.

  • Do I use a FOR LOOP or WHILE LOOP for a program like this?

    How do I write a progam in a way that in a certain expression 't+C', the variable t would decrease until the expression t+C will equal a certain expression .99x. Assuming .99x is a constant and C is a constant also. Also I would like to output the maximum value for the variable t (that satisfies the equation t+C=.99X) into a text box.
    Thank You

    Hey Altenbach..maybe I'm being a little vague
    This is for my senior project and I am designing a software package that helps design/simulate the characteristics of a cpacitive pressure sensor.
    If the membrane of the sensor contains a bimetal layer(polymer and metal)...well at some point the thickness 't' of the metal will affect the Young's modulus of the polymer.
    So i have chosen the tolerance of the bimetal in such a way that the combined Young's modulus (of polymer and metal) is at least still 99% of the Young's modulus of the Polymer.
    Now the thcikness t of the metal greatly affects the Young's moudulus of the bimetal...so if a user inputs a really high thickness t for his metal, the program will calculate the combined Young's Modulus and if it is lower than 99% of the Polymer then the program should spit out or suggest the maximum thickness t for which the combined Yung's modulus=99%of polymer.
    So far.
    The combined young's moudulus looks like this
    Yc=(tp/tc)Yp+(tm/tc)Ym.....where tp is polymer thickness and tm is metal thickness, tc is total thickness, Ym is metal Young's modulus and Yp is polymer Young's modulus...
    Now if Yc>.99Yp  and the user inputs a tm to be ridiculously high....then the program should output the maximum value of tm for which Yc=.99Yp. and also pop up an error message saying "your thcikness is too high" or summin like that. I don't know how to write for  or while loops...
    I really hope this helps....thank you very much

  • Could someone explain this output?

    my Maze class
    import java.util.Scanner;
    import java.io.*;
    public class MazeProblem{
         private char [][] maze;               //maze array of 0's and 1's
         private boolean [][] visit;          //visited/unvisited array
         private int height, width;          //height and width of array
         private int startx, starty;          //starting point
         private int exitx, exity;          //exit point
         private Scanner sc;                    //file reader
         private StringTokenizer st;          // to split the file.
         public MazeProblem(String file){
              try{
                   sc = new Scanner(new BufferedReader(new FileReader(file)));
                   while (sc.hasNextLine()){
                        height = sc.nextInt();
                        width = sc.nextInt();
                        System.out.println("no. of rows: " +height); // tester code
                        System.out.println("no. of cols: " +width);      //tester
                        maze = new char[height][width];
                        visit = new boolean [height][width];
                        for (int i = 0; i < height; i++){
                             for (int j = 0; j < width; j++){
                                  maze [j] = sc.next().toCharArray()[0];
                        System.out.println("");
                        startx = sc.nextInt();
                        System.out.println("startx = " + startx);
                        starty = sc.nextInt();
                        System.out.println("starty = " + starty);
                        exitx = sc.nextInt();
                        System.out.println("exitx = " + exitx);
                        exity = sc.nextInt();
                        System.out.println("exity = " + exity);
              catch(FileNotFoundException e){
                   System.out.println("File not found.");
                   System.exit(0);
              finally{
                   sc.close();
              for (int i = 0; i < height; i++){
                   for(int j = 0; j < width; j++){
                        System.out.print(" " + maze[i][j]);
              System.out.println("");     
         //find out if there is a path from start to finish
         public boolean isPath(){
              return isPath(startx, starty);     //call recursive method
         //recursive method that chekcs for the path from current location
         //to finish location.
         private boolean isPath(int x, int y){
              //base case current loc. outside of maze
              if (x < 0 || x >= height || y < 0 || y >= width)
                   return false;
              //base case current loc. is a wall
              else if (maze[x][y] == '1')
                   return false;
              //base case current loc already visited
              else if (visit[x][y] == true)
                   return false;
              //base case current loc is exit
              else if (x == exitx && y == exity)
                   return true;
              else{
                   visit[x][y] = true;               //mark current location as visited
                   //if there is a path from one of the neighbors then there
                   //is a path from current loc.
                   if (isPath(x-1, y) || isPath(x+1, y) || isPath(x, y-1)
                        || isPath(x, y+1)){
                        return true;
                   else                              //if there are no paths from neighbors
                        return false;               //then there is no path from current loc.
    }tester classimport java.util.Scanner;
    public class MazeTest{
         public static void main(String[] args){
              Scanner sc = new Scanner(System.in);
              System.out.print("enter your file name: ");
              String file = sc.nextLine();
              MazeProblem maze = new MazeProblem(file);
                   if (maze.isPath())
                        System.out.println("Path: " + maze.isPath());
                   else
                        System.out.println("No path present.");
    }when ran at command:
    no. of rows: 4
    no. of cols: 6
    startx = 2
    starty = 1
    exitx = 0
    exity = 4
    1 0 1 1 0 1
    0 0 1 0 0 0
    1 0 1 0 1 0
    0 0 0 0 1 1
    Path: false
    there is an obvious path.
    if I change my tester file to omit the if else portion the program works.
    But I would like to output if there isnt a path available, and can't seem to make that happen.
    the file looks like this:
    4 6
    1 0 1 1 0 1
    0 0 1 0 0 0
    1 0 1 0 1 0
    0 0 0 0 1 1
    2 1
    0 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    B_pnzk wrote:
    if (maze.isPath())
    System.out.println("Path: " + maze.isPath());
    else
    // etc
    This bit of the code caught my eye. Since you output is saying "Path: false" how does it ever get to that line given that the condition was if(maze.isPath())?
    It seems to me that you could change the MazeTest main() method so that this oddity doesn't occur. Or - with a little more effort - you could change the MazeProblem class so that it can't occur.

  • I would like to do a product visualization of a fabric on a shirt, but am not sure where to start

    Hi Everyone,
    I am on a conquest to do a product visualization of a fabric style on a shirt (fabric could be a solid color, striped, or checked). I have access to the fabric and can take pictures/scans of the fabric to extract the exact pattern and would like to overlay it onto an existing picture of a man with a proper dress shirt on to see how the fabric would look on the actual shirt.
    I would like this to be as real as possible so that you could not tell that the fabric was actually "draped" onto the shirt. The result would be something similar to the Perry Ellis website:
    http://www.perryellis.com/Dress-Shirts/pedmdressshirts,default,sc.html
    Could anyone point me in the right direction as to whether this can be done with Photoshop or if there is another alternative method I should pursue? I already have an original with my model in a very flat grey shirt that I would like to modify.
    I would even consider paying a photoshop expert to complete the job but am not sure if what I am asking for can be accomplished yet.
    Thanks in advance!

    Here are the two images (one is of the shirt, one is of the fabric). I can get higher resolution images if needed. What do you think?
    http://www.yourfilelink.com/get.php?fid=768239
    http://www.yourfilelink.com/get.php?fid=768241
    I don't mind it taking a long time, as long as the results are repeatable as I want to be able to do this with 20 fabrics or so and I want it to look as real as possible. I am a novice at Photoshop, would you recommend I pay someone to accomplish this? How long do you think it would take? Is it something I could learn because I plan on doing 20 of them and maybe more?

  • I have s mac book pro--I would like very much to have the output to the DVI cable --my audio(sound) wilkl nit default to DVI output  --How can this be changed

    I have a mac book pro--I would like very much to have the output to the DVI cable --my audio(sound) wilkl nit default to DVI output  --How can this be changed, so it does not default to interabnl speaker
    Is there a way to force the system to change to DVI output?????
    thanks a lot

    Hi there,
    You may find the troubleshooting steps in the article below helpful.
    Troubleshooting issues with no audio from built-in speakers on Macs
    http://support.apple.com/kb/ts1574
    -Griff W.

  • I would like to 'see and hear' my mac book pro output on my TV  how do I ?

    I have a new Mac book Pro and I would like to 'see and hear' the Audio and video on my television. My tv has 2 audio phono RCA jacks on the side and 1 video RCA jack on the side. It also has a s-video as well on the side (I have never used s-video.) My Mac Book Pro came with a DVI to VGA little cable adapter but how do I use this to get to my TV inputs? Do I have to buy from Apple, (or somewhere else), that cable called DVI to Video Adapter? but then that is only for the video? How do I get the audio out? From the headphone socket? And if this is the only way why hasn't Apple made their DVI out socket a dual purpose output ie: Video AND audio, like the mini DVI for the G4 powerbooks? Please help. If anyone has also come across this problem. I want to see my timeline in FCP on the TV before I put it to tape. Thanks.
    Thanx

    I have a new Mac book Pro and I would like to 'see
    and hear' the Audio and video on my television. My tv
    has 2 audio phono RCA jacks on the side and 1 video
    RCA jack on the side. It also has a s-video as well
    on the side (I have never used s-video.) My Mac Book
    Pro came with a DVI to VGA little cable adapter but
    how do I use this to get to my TV inputs? Do I have
    to buy from Apple, (or somewhere else), that cable
    called DVI to Video Adapter?
    You need a DVI or VGA to svideo adapter. They aren't cheap.
    but then that is only
    for the video? How do I get the audio out? From the
    headphone socket?
    Yup.
    And if this is the only way why
    hasn't Apple made their DVI out socket a dual purpose
    output ie: Video AND audio, like the mini DVI for the
    G4 powerbooks?
    Because DVI carries only video. Apple is using a new video card in the MBP with different abilities.
    Please help. If anyone has also come
    across this problem. I want to see my timeline in FCP
    on the TV before I put it to tape. Thanks.
    Most people doing this are using TV's with DVI/HDMI inputs.
    Thanx

Maybe you are looking for

  • IDOC to Non-ABAP-System

    I am trying to send an IDOC to a Non ABAP system. The receiving system consists of an "IDOC Listener" which receives and sends. The RFC Destination for the connection between the PI and that system is type T (TCP/IP). When checking it in SM59 or IDX1

  • Prompt problem in BO6.1

    Hello, I am using BO 6.1. I have some questions: 1. Suppose I created a prompt for countries. At run time it will show all 50 countries. How can I make it show only 10 countries? I could not make @Prompt function working. I am still unsure how can I

  • Screens 'bleeding through' to other screens

    We upgraded to Captivate 6 last year and I've been seeing an odd problem occuring with recorded demos since then.  A typical demo that I create has about 25-30 pages with various mouse actions, text boxes, highlight boxes, etc.  After first publishin

  • How to re-install uninstalled Acrobat XI?

    I uninstalled Acrobat XI. Now when I try to install it again, Creative Cloud just tell me that I already have it...

  • Error while creating webshop

    Hi All,     I have done the necessary jco settings in the shop admin and i have created a application scenario like 'webshop510'. When i am trying to create webshops with shopadmin/shopadmin url i am getting an error that scenariowebshop501 is not ex