Flow Layout....please help!

Hi all,
I am having trouble with my flow Layout manager. As i add more and more components to the panel, I am not able to see the components unless the resize the frame, I am wondering is there a way that I can make flow Layout manager to creat a new line rather than continuing adding to one horizontal line!!!!!??????
Thank you for your attention,
Dan

thank you all for all the help, however, i am still having trouble setting the layout of my control panel......
so here is my sample code!!!
and please correct me!!!!
public DrawControls(DrawPanel target) {
     this.target = target;
     //setLayout( new GridBagLayout());
     //setLayout(new FlowLayout());
     setBackground(Color.white);
     target.setForeground(Color.red);
     CheckboxGroup group = new CheckboxGroup();
     Checkbox b;
     add(b = new Checkbox(null, group, false));
     b.addItemListener(this);
     b.setForeground(Color.red);
     add(b = new Checkbox(null, group, false));
     b.addItemListener(this);
     b.setForeground(Color.green);
     add(b = new Checkbox(null, group, false));
     b.addItemListener(this);
     b.setForeground(Color.blue);
     add(b = new Checkbox(null, group, false));
     b.addItemListener(this);
     b.setForeground(Color.pink);
     add(b = new Checkbox(null, group, false));
     b.addItemListener(this);
     b.setForeground(Color.orange);
     add(b = new Checkbox(null, group, true));
     b.addItemListener(this);
     b.setForeground(Color.black);
     target.setForeground(b.getForeground());
     //setLayout(new FlowLayout());
     //Line buttons
     //setLayout(new BorderLayout());
     insertLine = new Button("H.Lines");
          insertLine.addActionListener(this);
          insertLine.setBackground(Color.lightGray);
     add(insertLine);
     // String buttons
     insertVerLine = new Button("V.Lines");
     insertVerLine.addActionListener(this);
     insertVerLine.setBackground(Color.lightGray);
     add(insertVerLine);
     insertString = new Button("Descripion");
               insertString.addActionListener(this);
               insertString.setBackground(Color.lightGray);
     add(insertString);
     // logo button
     insertLogo = new Button("Graphics");
               insertLogo.addActionListener(this);
               insertLogo.setBackground(Color.lightGray);
     add(insertLogo);
     //delete button
     delete = new Button("Delete");
               delete.addActionListener(this);
               delete.setBackground(Color.lightGray);
     add(delete);
     //reset button
     reset = new Button("Reset");
               reset.addActionListener(this);
               reset.setBackground(Color.lightGray);
               reset.setForeground(Color.red);
     add(reset);
     //label
     Label label1 = new Label("Text");
     add(label1);
     //textbox
     yourText = new TextField(10);
     //yourText.setMaximumSize(yourText.getPreferredSize());
     add(yourText);
TextField yourText;
Button insertLine;
Button insertVerLine;
Button insertString;
Button insertLogo;
Button delete;
Button reset;

Similar Messages

  • Error with spring layout -please help me

    hi ppl..
    i had written a piece of code...in which i used spring layout....but it was giving the following error...
    putConstraints(java.awt.Component,javax.swing.SpringLayout.putConstraints) in javax.swing.SpringLayout cannot be applied to putConstraints(java.lang.String,javax.swing.JPanel,int,int,java.lang.String,java.awt.Container)
    The piece of code tat gave the error was
    layout.putConstraints(SpringLayout.WEST,panel1,5, SpringLayout.WEST,contentPane);
    layout.putConstraints(SpringLayout.NORTH,panel1,5,
    SpringLayout.NORTH,contentPane);
    where panel1 is (JPanel) and contentPane is (container)
    please help me....      
    delete

    putConstraints(...)The correct method should be putConstraint(...).

  • Problem in layout, please help in correcting code

    Hello Friends,
    I am facing a very strange problem. I have 1 DespktopPane, say DT in which I have created two InternalFrames, say IF1 and IF2. Also there are two JPanels, say P1 and P2. P1 contains various controls and IF1s ContentPane is set to P1 and P2 contains nothing. There two MenuItems, say M1 and M2. On M1s click I displayed IF1 and on M2s click I displayed IF2. Before adding IF2 everything is working fine, i.e. all the controls are able to display on IF1 but after adding IF2 allthe controls are transferred from IF1 to IF2 and now IF1 displays as a blank screen and IF2 contains allthe controls which are added in JPanel p2 whereas IF2s ContenPane is set to P2 and no control is added in P2.
    For your reference, here is the code:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class MDILayout extends JFrame implements ActionListener
        private static JFrame frame = null;
        private static JDesktopPane desktop = null;
        private static JInternalFrame intframe = null;
        private static JInternalFrame rangeframe = null;
        private static JPanel panel = null;
        private static Image img = null;
        private static JMenuBar menubar = null;
        private static JMenu mfile = null;
        private static JMenuItem bexit = null;
        private static JMenuItem borders = null;
        private static JMenuItem boption = null;
        JButton bcancel,bquery,bexecute,bupdate,bnext,bprev;
        JLabel lheader,lheader1,lheader2,lheader3,lline,lline1,
        lodate,lquality,ltype,lparty,lindent,lsize,lmul,lgsm,lquantity,ldest,lorderno;
        JTextField todate,tquality,ttype,tparty,tindent,tlength,twidth,tgsm,tquantity,tdest,torderno;
        JComboBox cbotype;
        Font bigfont,bigfont1;
        static String ltext="",ltext1="",ltext2="",ltext3="";
        Panel p; Graphics g;
        MDILayout()
            frame = new JFrame("Deckle Suite (Board)");
            desktop = new JDesktopPane();
            intframe = new JInternalFrame("Orders",true,true,true,true);          
            rangeframe = new JInternalFrame("Machine - Deckle Range",true,true,true,true);           
            frame.setSize(1024,738);
            frame.setResizable(false);
            intframe.setSize(1000,680);
            rangeframe.setSize(500,350);
            JPanel p1=(JPanel)getContentPane();
            p1.setLayout(null);
            JPanel p2=(JPanel)getContentPane();
            p2.setLayout(null);
            intframe.setContentPane(p1);
            rangeframe.setContentPane(p2);
            frame.setContentPane(desktop);
            desktop.add(intframe);
            desktop.add(rangeframe);
            intframe.setMaximizable(true);
            intframe.setResizable(false);
            rangeframe.setMaximizable(true);
            rangeframe.setResizable(false);
            intframe.setContentPane(p1);
            intframe.setDefaultCloseOperation(HIDE_ON_CLOSE);
            rangeframe.setContentPane(p2);
            rangeframe.setDefaultCloseOperation(HIDE_ON_CLOSE);
            menubar = new JMenuBar();
            mfile = new JMenu("File");
            bexit = new JMenuItem("Exit");
            borders = new JMenuItem("Orders");
            boption=new JMenuItem("Options");
            menubar.add(mfile);
            mfile.add(borders);
            mfile.add(boption);
            mfile.add(bexit);
            frame.setJMenuBar(menubar);
            ltext="==========";
            for(int i=0;i<6;i++)
                    ltext1=ltext+ltext1;
                    ltext=ltext1;
            ltext2="----------";
            for(int j=0;j<6;j++)
                    ltext3=ltext2+ltext3;
                    ltext2=ltext3;
            bigfont=new Font("Monotype Corsiva",Font.BOLD,35);
            bigfont1=new Font("Times New Roman",Font.PLAIN,20);
            lheader=new JLabel("Deckle Suite (Board)");
            lheader1=new JLabel("Khanna  Paper  Mill (Pvt.) Ltd.");
            lheader2=new JLabel("Fatehgarh Road");
            lheader3=new JLabel("Amritsar");
            lline=new JLabel(ltext1);
            lline1=new JLabel(ltext3);
            lodate=new JLabel("Order Date");
            lquality=new JLabel("Quality");
            ltype=new JLabel("Sheet/Reel");
            lparty=new JLabel("Party");
            lindent=new JLabel("Indent No.");
            lsize=new JLabel("Size");
            lmul=new JLabel("x");
            lgsm=new JLabel("GSM");
            lquantity=new JLabel("Quantity");
            ldest=new JLabel("Destination");
            lorderno=new JLabel("Line No.");
            todate=new JTextField(50);
            tquality=new JTextField(50);
            ttype=new JTextField(20);
            cbotype=new JComboBox();
            tparty=new JTextField(200);
            tindent=new JTextField(50);
            tlength=new JTextField(35);
            twidth=new JTextField(35);
            tgsm=new JTextField(20);
            tquantity=new JTextField(35);
            tdest=new JTextField(200);
            torderno=new JTextField(200);
            lheader.setBounds(350,50,500,50);
            lheader1.setBounds(370,100,500,30);
            lheader2.setBounds(430,130,200,30);
            lheader3.setBounds(460,160,200,30);
            lline.setBounds(0,200,3000,30);
            lline1.setBounds(0,350,3000,30);
            lorderno.setBounds(40,240,100,20);
            lodate.setBounds(40,270,100,20);
            lquality.setBounds(320,270,100,20);
            ltype.setBounds(40,400,70,20);
            lparty.setBounds(40,300,70,20);
            lindent.setBounds(40,430,100,20);
            lsize.setBounds(450,430,50,20);
            lmul.setBounds(560,430,50,20);
            lgsm.setBounds(40,460,50,20);
            lquantity.setBounds(320,460,50,20);
            ldest.setBounds(40,490,100,20);
            torderno.setBounds(120,240,100,20);
            todate.setBounds(120,270,100,20);
            tquality.setBounds(380,270,200,20);
            cbotype.setBounds(120,400,90,20);
            tparty.setBounds(120,300,700,20);
            tindent.setBounds(120,430,200,20);
            tlength.setBounds(490,430,60,20);
            twidth.setBounds(580,430,60,20);
            tgsm.setBounds(120,460,80,20);
            tquantity.setBounds(380,460,80,20);
            tdest.setBounds(120,490,500,20);
            cbotype.addItem("SHEET");
            cbotype.addItem("REEL");
            p1.add(lheader);
            p1.add(lheader1);
            p1.add(lheader2);
            p1.add(lheader3);
            p1.add(lline);
            p1.add(lline1);
            p1.add(lodate);
            p1.add(todate);
            p1.add(lquality);
            p1.add(tquality);
            p1.add(lparty);
            p1.add(tparty);
            p1.add(ltype);
            p1.add(cbotype);
            p1.add(lindent);
            p1.add(tindent);
            p1.add(lsize);
            p1.add(tlength);
            p1.add(lmul);
            p1.add(twidth);
            p1.add(lgsm);
            p1.add(tgsm);
            p1.add(lquantity);
            p1.add(tquantity);
            p1.add(ldest);
            p1.add(tdest);
            p1.add(lorderno);
            p1.add(torderno);
            lheader.setFont(bigfont);
            lheader1.setFont(bigfont1);
            lheader2.setFont(bigfont1);
            lheader3.setFont(bigfont1);
            lheader.setForeground(Color.blue);
            lheader1.setForeground(Color.gray);
            lheader2.setForeground(Color.gray);
            lheader3.setForeground(Color.gray);
            bcancel=new JButton("Refresh");
            bquery=new JButton("Query");
            bexecute=new JButton("Execute");
            bupdate=new JButton("Update");
            bnext=new JButton("Next");
            bprev=new JButton("Previous");
            bcancel.addActionListener(this);
            bquery.addActionListener(this);
            bexecute.addActionListener(this);
            bupdate.addActionListener(this);
            bnext.addActionListener(this);
            bprev.addActionListener(this);
            borders.addActionListener(this);
            boption.addActionListener(this);;
            bexit.addActionListener(this);
            bcancel.setBounds(250,550,200,25);
            p1.add(bcancel);
            bquery.setBounds(450,550,200,25);
            p1.add(bquery);
            bexecute.setBounds(650,550,200,25);
            p1.add(bexecute);
            bupdate.setBounds(250,575,200,25);
            p1.add(bupdate);
            bprev.setBounds(450,575,200,25);
            p1.add(bprev);
            bnext.setBounds(650,575,200,25);
            p1.add(bnext);
            torderno.setEnabled(false);
            todate.setEnabled(false);
            bcancel.setEnabled(true);
            bexecute.setEnabled(false);
            bquery.setEnabled(false);
            bprev.setEnabled(false);
            bnext.setEnabled(false);
            bupdate.setEnabled(false);
            frame.show();
            frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
        public static void main(String args[])
            MDILayout layout=new MDILayout();
        public void actionPerformed(ActionEvent ae)
            if (ae.getSource()==borders)
              intframe.show();
              intframe.repaint();
            if (ae.getSource()==boption)
              rangeframe.show();
              rangeframe.repaint();
    }Please provide me the solution so that P1 appears in IF1 and P2 appears in P2.
    Thanks in advance,
    Ankur

    all the controls are able to display on IF1 but after adding IF2 allthe controls are transferred from IF1 to IF2 and now IF1 displays as a blank screen
    You can't have components at more than one place in the hierarchy. If you add a component to something it is removed from its existing parent if there is one.
    I'm not sure how much that helps you - I took one look at your code and ran away screaming.

  • Corrupted Layout PLease help?

    Dear Mac friends,
    I have a trouble - just bought Pages to write an application for an artist grant. When I make a PDF document from it, then the layout changes. It is like the complete document has become smaller in some way or another?
    See a picture here: http://homepage.mac.com/steven_vrancken/pages/PhotoAlbum169.html
    Left you see the layout as presented in pages, and right you see the corrupted layout in the PDF file.
    How can I solve this please?
    Can anyone help me out?
    Thank you very much.

    Yes thank you, funny, I checked the forum 5 minutes ago to see if my question was answered... nothing, so I started searching the forum, and I found your anwser to someone else... `this question comes at least once a week`... so you must have been writing your answer to my the same time I was reading your answer somewhere else on the forum
    thanks.

  • Fluid Grid Layout - Please help

    Hello, I would sure appreciate help asap!
    I have made a draft of a website and although I used the Fluid Grid layout I seem to be having issues.  Layout is has header/nav, main, rightsidebar and footer. I do realize that I put a table into the header/nav and rightsidebar and will go back and update these soon, but that's not the issue I have right now.
    1.  Why is it when I view the pages at a 100% zoom in IE, it looks so much smaller than 100% zoom in Chrome.  My concern is the MAIN Div on all the pages.
    2.  Why in Chrome is the rightsidebar going all the way to the right and not staying contained within the gridcontainer?
    3.  I thought ems were the way to go with fonts, but I can't get a "balance" between IE and Chrome design wise.....also with images?
    http://www.1800gotblinds.com/index-draft.php
    http://www.1800gotblinds.com/products.php
    So frustrated, thanks for any help you can offer! 
    Donna

    If you're going to use ems, you must establish a base font-size, 100% = 16px which is the average default font-size in most browsers.  Your content CSS might look something like this:
    /**layout**/
    body {
    font-size: 100%;
    .gridContainer {
    font-size: 16px;
    /**typography**/
    h1 {font-size: 3em}
    h2 {font-size: 2.25em}
    h3 {font-size: 1.75em}
    p {font-size: 1em}
    Also look at Viewport Sized Fonts
    http://css-tricks.com/viewport-sized-typography/
    Nancy O.

  • Cover flow question - please help!

    Hi ... something is annoying me about viewing album art in the 'cover flow' ....
    I have my sort to "albums" and I have one album by Kenny Wayne Shepherd that has guest artists on each track. The album appears as 10 separate tracks within cover flow (ie i see the picture 10 times and have to scroll 10 times to get to the REAL next album). I'm sure there's a way to fix this, and it probably has something to do with the compilation setting I'm guessing, but I can't figure it out. Help anyone? Thanks!

    i got these songs from my CD and transfered them to my Ipod before putting the album work with the song, the next day when i was free i put all the album art with the songs but when i play my songs the album art doesn't show up but when i open i-tunes it appears. anyway to fix this?
    also this might sound stupid:
    I have a ipod video- if i delete a song/file from my ipod will the space be restored on my ipod or will it still be considered "used space?"
    thanks!

  • Move the database storage layout, please Help.

    Hi Buddies,
    My current database A (9i) 's storage layout is
    File System SIZE
    /yqa1/tech/oracle 8628 MB <-- Oracle software plus server's dump dirs only
    /yqa7/appl/oracle 34521 MB <-data
    /yqa8/appl/oracle 34521 MB <-data
    we want to split existing 32G filesystem into separate chunks of 8G and map them into seperate filesystems
    (for expamle: split /yqa7/appl/oracle into
    /def1/appl/oracle [8G]
    /ghi7/appl/oracle [8G]
    /jkl23/appl/oracle [8G]
    /xyz2/appl/oracle [8G]
    for database A, finallly, we want to change the storage layout like this:
    File System SIZE
    /yqa1/tech/oracle 8628 MB <-- Oracle software plus server's dump dirs only
    /yqa7/appl/oracle 8628 MB <-data
    Is there any best practice to achive the purpose? or any frinds can provide practice documentation regarding to this?
    Thanks a lot in advance.
    Jerry

    You'd need to take the tablespace offline
    ALTER TABLESPACE tablespace_name OFFLINE;
    before you move or copy the datafile to relocate it.
    After completing the move or copy, you could use the
    ALTER DATABASE RENAME FILE 'old_file_name' TO 'new_file_name' ;
    for each of the datafiles in that tablespace.
    Then, you can bring the tablespace online again
    ALTER TABLESPACE tablespace_name ONLINE;

  • GridBag or Flow Layout: Help Please!!!

    Requirement: Allow the user to input the amount of a mortgage and then select from a menu of mortgage loans: 7 years at 5.35%, 15 years at 5.5%, and 30 years at 5.75%. Use an array for the different loans. Display the mortgage payment amount. Then, list the loan balance and interest paid for each payment over the term of the loan. Allow the user to loopback and enter a new amount and make a new selection or quit.
    I have written the code so far that allows for the creation of the pane, texts, user entry, combobox, and buttons.
    My problem is that I cannot get it sorted out to look like a usable interface. I don't know if I should go with a GridBag Layout or a Flow Layout.
    I am using the GridBag Layout in this example, but obviously I am missing the correct procedure on how to do it.
    Can anyone give me a hand?
    My goal for the interface is to have the following fields set up in the pane to lay out like this:
    Mortgage ------ MortgageTF
    Loan ----- LoanCB
    Payment ----- PaymentTF
    Balance
    Compute----- Reset----- Exit
    Thank you for any assistance.
    Havok
    My written code is below:
    import javax.swing.*;
    import java.awt.*;
    public class MCalc002 extends JFrame
    public MCalc002()
    super("Mortgage Calculator");
    setSize(500, 800);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setVisible(true);
    Container pane = getContentPane();
    GridBagLayout gridBag = new GridBagLayout();
    GridBagConstraints c = new GridBagConstraints();
    pane.setLayout(gridBag);
    JLabel mortgage = new JLabel("Mortgage:");
    c.gridx = 0; c.gridy = 0;
    pane.add(mortgage);
    JLabel loan = new JLabel("Loan Menu:");
    c.gridx = 2; c.gridy = 2;
    pane.add(loan);
    JLabel payment = new JLabel("Monthly Payment:");
    c.gridx = 3; c.gridy = 3;
    pane.add(payment);
    JLabel balance = new JLabel("Loan Balance:");
    c.gridx = 4; c.gridy = 4;
    pane.add(balance);
    JTextField mortgageTF = new JTextField(10);
    c.gridx = 4; c.gridy = 4;
    pane.add(mortgageTF);
    JComboBox loanCB = new JComboBox();
    c.gridx = 5; c.gridy = 5;
    loanCB.addItem("Please Select");
    loanCB.addItem("7yrs @ 5.35%");
    loanCB.addItem("15yrs @ 5.5%");
    loanCB.addItem("30yrs @ 5.75%");
    pane.add(loanCB);
    JTextField paymentTF= new JTextField(10);
    c.gridx = 4; c.gridy = 4;
    pane.add(paymentTF);
    JButton compute = new JButton("Compute");
    c.gridx = 5; c.gridy = 5;
    pane.add(compute, c);
    JButton reset = new JButton("Reset");
    c.gridx = 6; c.gridy = 6;
    pane.add(reset, c);
    JButton exit = new JButton("Exit");
    c.gridx = 7; c.gridy = 7;
    pane.add(exit, c);
    setContentPane(pane);
    public static void main(String[] arguments)
    MCalc002 pb = new MCalc002();
    //EOF

    My problem is that I cannot get it sorted out to look
    like a usable interface. I don't know if I should go
    with a GridBag Layout or a Flow Layout.
    My goal for the interface is to have the following
    fields set up in the pane to lay out like this:
    Mortgage ------ MortgageTF
    Loan ----- LoanCB
    Payment ----- PaymentTF
    Balance
    Compute----- Reset----- Exit
    import javax.swing.*;
    import java.awt.*;
    public class MCalc002 extends JFrame {
        public MCalc002() {
            super("Mortgage Calculator");
            setSize(500, 800);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            Container pane = getContentPane();
            GridBagLayout gridBag = new GridBagLayout();
            GridBagConstraints c = new GridBagConstraints();
            pane.setLayout(gridBag);
            JLabel mortgage = new JLabel("Mortgage:");
            c.gridx = 0; c.gridy = 0;
            c.insets = new Insets(20,10,20,10);
            gridBag.setConstraints(mortgage, c);
            pane.add(mortgage);
            JLabel loan = new JLabel("Loan Menu:");
            c.gridx = 0; c.gridy = 1;
            c.insets = new Insets(20,10,20,10);
            gridBag.setConstraints(loan, c);
            pane.add(loan);
            JLabel payment = new JLabel("Monthly Payment:");
            c.gridx = 0; c.gridy = 2;
            c.insets = new Insets(20,10,20,10);
            gridBag.setConstraints(payment, c);
            pane.add(payment);
            JLabel balance = new JLabel("Loan Balance:");
            c.gridx = 0; c.gridy = 3;
            c.insets = new Insets(20,10,20,10);
            gridBag.setConstraints(balance, c);
            pane.add(balance);
            JTextField mortgageTF = new JTextField(10);
            c.gridx = 3; c.gridy = 0;
            c.insets = new Insets(20,10,20,10);
            gridBag.setConstraints(mortgageTF, c);
            pane.add(mortgageTF);
            JComboBox loanCB = new JComboBox();
            c.gridx = 3; c.gridy = 1;
            c.insets = new Insets(20,10,20,10);
            loanCB.addItem("Please Select");
            loanCB.addItem("7yrs @ 5.35%");
            loanCB.addItem("15yrs @ 5.5%");
            loanCB.addItem("30yrs @ 5.75%");
            gridBag.setConstraints(loanCB, c);
            pane.add(loanCB);
            JTextField paymentTF= new JTextField(10);
            c.gridx = 3; c.gridy = 2;
            c.insets = new Insets(20,10,20,10);
            gridBag.setConstraints(paymentTF, c);
            pane.add(paymentTF);
            JButton compute = new JButton("Compute");
            c.gridx = 0; c.gridy = 4;
            c.insets = new Insets(20,10,20,10);
            gridBag.setConstraints(compute, c);
            pane.add(compute, c);
            JButton reset = new JButton("Reset");
            c.gridx = 1; c.gridy = 4;
            c.insets = new Insets(20,10,20,10);
            gridBag.setConstraints(reset, c);
            pane.add(reset, c);
            JButton exit = new JButton("Exit");
            c.gridx = 3; c.gridy = 4;
            c.insets = new Insets(20,10,20,10);
            gridBag.setConstraints(exit, c);
            pane.add(exit, c);
            setContentPane(pane);
            setVisible(true);  // Generally speaking, this should be the last operation in setting up GUI components.
        public static void main(String[] arguments) {
            MCalc002 pb = new MCalc002();
    }

  • In Pages, the column in the table won't flow onto the second page. The text is hidden. Please help!

    In Pages, the column in the table won't flow onto the second page. The text is hidden. Please help!

    Thank you for your reply,
    When I click 'view' , I can "show inspector". From the table tab, I can pull up the "Format". [See below]. I don't see the "Arrange" or "Object Placement Move with Text"
    Right now I have the Wrap Text On. When I take it off, It messes up my rows [see second image].
    All I want is for my column to flow onto the second page.
    Your assistance is genuinely appreciated.
    Thank you again.

  • I filmed several takes of the same scene for a movie. I trimmed the best clips from each take and put them into the project screen. However, I can't figure out how to make it flow seamlessly as one scene. Can someone please help me??

    I filmed several takes of the same scene for a movie. I trimmed the best clips from each take and put them into the project screen. However, I can't figure out how to make it flow seamlessly as one scene. Can someone please help me??

    1-800-676-2775  apple support   tech support 1 800 275 2273
    If your computer is on one minute before it freezes, than you have one minute to secure your serial number.
    click the apple----->click about this Mac ------> click on version----> until you see the serial number.  You may have to do this a couple of times if it freezes before you have all the numbers.  A camera might help.
    Good Luck

  • Hi All, please help me...Real time cube planning layout creation...

    Hi All,
    Could you help me on below process please.
    Iam working with BI7.0. I have real time cube (daily sales) and user need to access and update/add records accordingly.
    So for this real time cube I have to create planning layout with the data. User can see that data and update/add.
    I dont how to create planning layout (i heared that rsplan) how to show the data.
    Also I need some help on ABAP, I need to map some fields from a table.
    Actually from a flat file iam uploading data into ODS. In ODS has 3 more extra infoObjects.
    Ex: Shopping mall code, tenent number and outlet number info i have to pick contract number from table with routine and pass that contact number into ODS one field. It means Contact number will not come from flat file, thats what need table and routine.
    So for that I have to create one table (SE11) with all the information. and i have write routine.
    I have to read flat file 2 fields( like A and B) and check the value in a table and get the value C and put into ODS one field. I have to do this with routines.
    In the table have A, B and C values. Table also I have to create. so also please can u tell me some steps.
    Could you please help on this. Also with process chains for this.
    Thanks in advance!
    anil

    Hi Anil,
    If you go to RSPLAN there you can go to Portal link (it must be configured properly in system)
    In portal there will be wizard where you can easily go step by step and create planning functions and sequences like below:
           1.      You choose the appropriate InfoProvider.
           2.      You create one or more aggregation levels.
           3.      You create one or more filters.
           4.      You create one or more planning functions.
           5.      You create a planning sequence.
           6.      You test the planning model.
    which is clearly explained in below link
    http://help.sap.com/saphelp_nw70/helpdata/en/43/1d2440301a06f4e10000000a422035/frameset.htm
    after doing this you can create a query on aggregates you have created above and then make query input ready i.e planning enabled for keyfigures you want like mentioned in below link:
    http://help.sap.com/saphelp_nw70/helpdata/en/43/1d023a41130bd5e10000000a422035/frameset.htm
    then you can run query in Analyzer and save it as a work book after proper drilldown which can be used as template.
    Hope you understood basic thing, as you going on doing u will know clearly every thing.
    Ravi

  • 4/30/2011.  Can you please help me.  I have an iBook G4 with Leopard OS 10.5. Yet how do I correct Website movies going flow-pause-flow-pause-flow etc?  Chuck Y Chicago

    4/30/2011.  Can you please help me.  I have an iBook G4 with Leopard OS 10.5 and latest Safari updates and maximum Ram (512 or 640 kb).  Yet how do I correct Website movies going flow-pause-flow-pause-flow etc?  The problem is with the iBook, not the website and movies.  Thank you.  Chuck Y Chicago

    5/2/2011.  Thank you all for your replies.  My iBook is in the third group of the website you referred me to.  I bought it July 5, 2004 at CDW near here.  It had OS 10.3.6.  1GB (GHz.  Power PC G4.), opaque white case. Its screen is 14.1 inches.  Soon after I bought it I had its 128 RAM raised to 640 RAM, to work with maximum capability for converting VCR recorded videos/movie into digital files and burning these onto DVDs.  Later I had an Airport card installed.  As time passed I opened the apple icon (upper left hand corner of the screen), and Softwate Update, and eventually had this install OS 10.5.8.  At first It could only be updated to OS 10.4.  But then after several years I bought Leopard OS 10.5.8 from the Apple store near here.  By then Leopard had been adapted to work on iBook G4.  Its specifications are described with the same Apple icon and About this Mac. 
    It will play You Tube and similar websites OK.  But videos/movies from websites such as hulu.com, ABC, CBS and so on, it displays a pattern of flow-pause-flow-pause-flow-pause-flow and so on.
    I thought first to see if this forum would have any suggestions.
    I think probably that its CPU has reached its limit; later Mac laptops have greater CPUs.
    Many thanks to you all.   C Yopst   Chicago

  • HT1848 How can I do this with the latest version of itunes? It's not the same layout. Please help.

    I'm trying to transfer an app I purchased on my iphone to my computer (MacBook), it has the latest version of itunes, which has a different layout. I can't seem to figure this out. Please help? Thank you.

    Then change back to the old layout:
    iTunes 11: Show Sidebar and Status Bar

  • Hello everyone, i need Mongolian keyboard layout, how can i find it, please help me, my pc is version OS X Yosemite, 10.10.2

    hello everyone, i need Mongolian keyboard layout, how can i find it, please help me, my pc is version OS X Yosemite, 10.10.2

    CLICKY CLICK---> Multilingual Mac

  • Please help my mac is so slow coming up and going to different places. the flower keeps coming up all the time.

    Please help my mac is so slow coming up and going to different places. the flower keeps coming up all the time?????

    I'm having this problem but only online. I've confirmed that it is the computer (2007 MacBook), and it only happens when I'm using wi-fi connection. My other MacBook (2010) is connecting with wi-fi fine, and when I plug this MacBook into the ethernet connection it is also doing fine. I've re-started, check the memory, deleted cookies, histories, gone as far as uninstalling and re-installing browswers. Used the System Preferences network diagnostics and got an "all good". Ideas appreciated.

Maybe you are looking for

  • Problem with checkbox checking and unchecking

    Hi, I am using JDeveloper 11.1.2.1.0.In my page i have one tab.In that i am doing inline editing which contains checkbox.When i click check box the date columns which is there should be populated according to system's date.for this to happen i have g

  • Is NI Komplete really needed with Logic 8?

    With the current deals in place you can pick up NI Komplete for around $700, which is an amazingly good price considering what is included. ...but reading the feature list, there is a fair amount of redundancy for Logic users now that the Jam packs a

  • Agent Dashboard Profile

    I am seeking information about the user profile that is named in the Agent Dashboard, and how these are set-up.  We are using CRM 4.0 Web Client.  This particular agent dashboard screen is located on the main default login page of the web client and

  • HT4972 after upgarding to 5.1 I can't change from the default ringtone??

    how to change from the default ring tone...I have tried to cgange using settings...does not work

  • Air 3.0 crashes on reactivate [android]

    With Air 3.0, once i minimize an app on Android, more often than not it crashes when i re-open it. Using captive runtime i see the issue: -Existing game i have created working fine on Air 2.5 , 2.6, 2.7 -New app with nothing but a square drawn on sta