JComboBox and Tooltips

Hi,
I'm creating a project for school in which they want me to populate a JComboBox with a movie list that I created in a text file.
I was thinking that I want to set a tooltip for each item (movie) and then modify it so that people can see a picture of the movie and a little summary.
What's the easiest way to do that?
Or maybe instead of a tooltip I could use different forms? Please, give me some ideas with some code too
Thanks
PS: This is the code I'm using to populate the JComboBox.
private void populateMovies()
String fileName = "src
Movies.txt",
movieList;
try
//File Reader
FileReader content = new FileReader(fileName);
BufferedReader inputFile = new BufferedReader(content);
movieList = inputFile.readLine();
while (movieList !=null)
movieSelectionJComboBox.addItem(movieList);
movieList = inputFile.readLine();
catch(FileNotFoundException exp)
exp.printStackTrace();
catch(IOException exp)
exp.printStackTrace();
Click to see GUI
http://i153.photobucket.com/albums/s224/andresmdiaz/AMDGUI.png

You can set images in tooltips using HTML
String imageName = "file:image.jpg";
component.setToolTipText("<html>Here is an image <img src="+imageName+"></html>");
or for more flexibly but much more complexity, you can make your own tooltip class, here is an example of that:
http://www.java2s.com/Code/Java/Swing-JFC/ShowinganImageinaToolTip.htm
btw "image in tooltip java" came up with these results in the top 3. I suggest in the future you have a go, and post your failed attempt, if you fail that is.

Similar Messages

  • Not Updating the Values in the JComboBox and JTable

    Hi Friends
    In my program i hava Two JComboBox and One JTable. I Update the ComboBox with different field on A Table. and then Display a list of record in the JTable.
    It is Displaying the Values in the Begining But when i try to Select the Next Item in the ComboBox it is not Updating the Records Eeither to JComboBox or JTable.
    MY CODE is this
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.DefaultComboBoxModel.*;
    import javax.swing.table.*;
    import java.sql.*;
    import java.util.*;
    public class SearchBook extends JDialog implements ActionListener
         private JComboBox comboCategory,comboAuthor;
         private JSplitPane splitpane;
         private JTable table;
         private JToolBar toolBar;
         private JButton btnclose, btncancel;
         private JPanel panel1,panel2,panel3,panel4;
         private JLabel lblCategory,lblAuthor;
         private Container c;
         //DefaultTableModel model;
         Statement st;
         ResultSet rs;
         Vector v = new Vector();
         public SearchBook (Connection con)
              // Property for JDialog
              setTitle("Search Books");
              setLocation(40,110);
              setModal(true);
              setSize(750,450);
              // Creating ToolBar Button
              btnclose = new JButton(new ImageIcon("Images/export.gif"));
              btnclose.addActionListener(this);
              // Creating Tool Bar
              toolBar = new JToolBar();
              toolBar.add(btnclose);
              try
                   st=con.createStatement();
                   rs =st.executeQuery("SELECT BCat from Books Group By Books.BCat");
                   while(rs.next())
                        v.add(rs.getString(1));
              catch(SQLException ex)
                   System.out.println("Error");
              panel1= new JPanel();
              panel1.setLayout(new GridBagLayout());
              GridBagConstraints c = new GridBagConstraints();
              c.fill = GridBagConstraints.HORIZONTAL;
              lblCategory = new JLabel("Category:");
              lblCategory.setHorizontalAlignment (JTextField.CENTER);
              c.gridx=2;
              c.gridy=2;
              panel1.add(lblCategory,c);
              comboCategory = new JComboBox(v);
              comboCategory.addActionListener(this);
              c.ipadx=20;
              c.gridx=3;
              c.gridwidth=1;
              c.gridy=2;
              panel1.add(comboCategory,c);
              lblAuthor = new JLabel("Author/Publisher:");
              c.gridwidth=2;
              c.gridx=1;
              c.gridy=4;
              panel1.add(lblAuthor,c);
              lblAuthor.setHorizontalAlignment (JTextField.LEFT);
              comboAuthor = new JComboBox();
              comboAuthor.addActionListener(this);
              c.insets= new Insets(20,0,0,0);
              c.ipadx=20;
              c.gridx=3;
              c.gridy=4;
              panel1.add(comboAuthor,c);
              comboAuthor.setBounds (125, 165, 175, 25);
              table = new JTable();
              JScrollPane scrollpane = new JScrollPane(table);
              //panel2 = new JPanel();
              //panel2.add(scrollpane);
              splitpane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,panel1,scrollpane);
              splitpane.setDividerSize(15);
              splitpane.setDividerLocation(190);
              getContentPane().add(toolBar,BorderLayout.NORTH);
              getContentPane().add(splitpane);
         public void actionPerformed(ActionEvent ae)
              Object obj= ae.getSource();
              if(obj==comboCategory)
                   String selecteditem = (String)comboCategory.getSelectedItem();
                   displayAuthor(selecteditem);
                   System.out.println("Selected Item"+selecteditem);
              else if(obj==btnclose)
                   setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
              else if(obj==comboAuthor)
                   String selecteditem1 = (String)comboAuthor.getSelectedItem();
                   displayavailablity(selecteditem1);
                   //System.out.println("Selected Item"+selecteditem1);
                   System.out.println("Selected Author"+selecteditem1);
         private void displayAuthor(String selecteditem)
              try
              {     Vector data = new Vector();
                   rs= st.executeQuery("SELECT BAuthorandPublisher FROM Books where BCat='" + selecteditem + "' Group By Books.BAuthorandPublisher");
                   System.out.println("Executing");
                   while(rs.next())
                        data.add(rs.getString(1));
                   //((DefaultComboBoxModel)comboAuthor.getModel()).setVectorData(data);
                   comboAuthor.setModel(new DefaultComboBoxModel(data));
              catch(SQLException ex)
                   System.out.println("ERROR");
         private void displayavailablity(String selecteditem1)
                   try
                        Vector columnNames = new Vector();
                        Vector data1 = new Vector();
                        rs= st.executeQuery("SELECT * FROM Books where BAuthorandPublisher='" + selecteditem1 +"'");     
                        ResultSetMetaData md= rs.getMetaData();
                        int columns =md.getColumnCount();
                        String booktblheading[]={"Book ID","Book NAME","BOOK AUTHOR/PUBLISHER","REFRENCE","CATEGORY"};
                        for(int i=1; i<= booktblheading.length;i++)
                             columnNames.addElement(booktblheading[i-1]);
                        while(rs.next())
                             Vector row = new Vector(columns);
                             for(int i=1;i<=columns;i++)
                                  row.addElement(rs.getObject(i));
                             data1.addElement(row);
                             //System.out.println("data is:"+data);
                        ((DefaultTableModel)table.getModel()).setDataVector(data1,columnNames);
                        //DefaultTableModel model = new DefaultTableModel(data1,columnNames);
                        //table.setModel(model);
                        rs.close();
                        st.close();
                   catch(SQLException ex)
    }Please check my code and give me some Better Solution
    Thank you

    You already have a posting on this topic:
    http://forum.java.sun.com/thread.jspa?threadID=5143235

  • Unable to Add alternative text and tooltips to your images

    Hello,
    I am using Muse CC in Apple iMAC machine.  The build version of Muse CC is 232. 
    Having watched the video, http://tv.adobe.com/watch/learn-adobe-muse-cc/using-titles-and-alt-text-to-images/, I am unable to bring up the image property window when I press the right hand click button of my Apple Mouse. 
    As such, I am unable to add alternative text and IMG Text to my images including the logo, facebook and Twitter Logos. 
    Can someone please tell me how to resolve my issue?  How come I unable to bring up the image property when I press the right hand click on the mouse.  The image property is also not shown in the menu of Muse CC.
    Thank you.
    Maxplus.

    Hello Maxplus,
    Try doing CTRL+Click once to see if it works. Also, if an image is added as a fill, it doesn't bring up the Add alternative text and tooltips option, because then it is added as a background and not placed as an image.
    Cheers
    Parikshit

  • Using KeyMap in Editable JComboBoxes and JTable

    I am using Keymapping for JTextFields. It works fine ! I am interested in extending the keymap feature to JComboBoxes and JTable.

    if you want to do the keymapping inside the editable component of the combobox or the table, make sure you apply it on the editor component.e.g. comboBox.getEditor().getEditorComponent() and table.getCellEditor().getTableCellEditorComponent().

  • Help with JComboBox and Model creation

    hi,
    I'm trying to figure out the best way to set up the data behind the JComboBox and copy part of that data to be shown by the JComboBox. Here is what I would like it to do.
    My data:
    itemID, dbaseID, name
    1, 2, test1
    2, 2, test2
    3, 2, test3
    The JCombo will only display the name in this case "test1", "test2", or "test3". However when the user selects the name, I want to easily retrieve the hidden itemID or dbaseID. I've got the combobox working with just the "test1" but it doesn't tell me which dbase it is from. I have to search all of them and worry about identical names.
    What is the best way to set this up? I was thinking about an multiDimensional model but not sure how that would look. It is just not clicking how set up the data and then add parts of to the combo box.
    Any guidance or examples would be appreciated.

    From what I can tell both getSelectedItem() and getSelectedValue() return the string value of the GUI component. Read the API, that is not what they return. They return the "selected" Object.
    The renderer, by default, displays the toString() value of the Object.
    I'm casting the string into Item No you aren't, because that is not possible.
    My understanding was casting was just converting one thing to another.Casting does not "convert" anything. Time to get out your Java textbook and read up on casting.
    However this looks like it is actually grabbing the memory point to an item.Exactly. The getSelected... methods simply return a reference to the Object that was selected. Thats all any get... method does.

  • [Acrobat Plugin] How to hide annots and uncheck text indicators and tooltips programmatically?

    I am using C++ developing a plugin for Windows Acrobat Professional 11.
    I want to do following things:
    1) hide and show annots on pages
    2) check and uncheck Edit|Preferences|Commenting Enable text indicators and tooltips
    I know both these are already done by Acrobat, but I just want to make a dialog and help my customers to these in same place.
    Thanks in advance.

    1.
    There is not methods to change visibility of annot on PD layer and PDAnnot object.
    2.
    I have checked AVAppSetPreference, there are only three keys about annots(AVPrefsD.h), they are
    - AVP(avpShowHiddenAnnots, ASBool)
    - AVP(avpShowAnnotSequence, ASBool)
    - AVP(avpPrintAnnots, ASBool)
    none of these change that setting. and I looked for tooltip, even no keys contain "tooltip"

  • Problems with Hints and Tooltips

    Hi all!!
    I have a problem with a form made with Form Builder 6 that contains hints and tooltips that I have to remove.
    The problem is that even if I delete the text of hints and tooltips it still remains a bullet (in some items yellow in other white) that does not contains text but that appears when the mouse click on the item.
    Has nobody faced this problem before?
    Does anybody know how to eliminate all hints and tooltips in a form??
    Thx
    Jacopo

    You don't need any APIs in C or any other APIs, and this has nothing to do with the "Display Hint Automatically" property.
    When you want to remove a tooltip, put the focus on the property and click the "Inherit" button on the property palette. This will reset the tooltip.
    If you only erase it, you are telling Oracle Forms that tooltip is Null, and hence you are seeing the little bullet.
    Try it it does work.
    Tony
    Message was edited by:
    Tony Garabedian

  • PUSH BUTTON text and tooltip dynamic in module pool

    I want to change  at runtime the text and tooltip of a push button which belongs to a screen of module pool (not a pf_status).
    Is there anyone who can help me?

    HEllo,
    Check this report done by Rich,
    Ok..here is my example. Most of the code was generated by screen painter via the tabstrip control wizard. Create screen 100, use the tabstrip control wizard to create your tabstrip, name it TABSTRIP. Double click on the tab text elements, rename them TABSTRIP_TEXT1 and TABSTRIP_TEXT2 for the tab text elements, make sure that the output only check box is checked.
    REPORT ZRICH_0003 .
    data: TABSTRIP_TEXT1(30) type c,
          TABSTRIP_TEXT2(30) type c.
    start-of-selection.
    call screen 100.
    *&      Module  STATUS_0100  OUTPUT
          text
    module STATUS_0100 output.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    Fill the tabstrip text elements here!
    TABSTRIP_TEXT1 = 'Text 1'.
    TABSTRIP_TEXT2 = 'Text 2'.
    endmodule.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    module USER_COMMAND_0100 input.
    endmodule.                 " USER_COMMAND_0100  INPUT
    FUNCTION CODES FOR TABSTRIP 'TABSTRIP'
    CONSTANTS: BEGIN OF C_TABSTRIP,
                 TAB1 LIKE SY-UCOMM VALUE 'TABSTRIP_FC1',
                 TAB2 LIKE SY-UCOMM VALUE 'TABSTRIP_FC2',
               END OF C_TABSTRIP.
    DATA FOR TABSTRIP 'TABSTRIP'
    CONTROLS:  TABSTRIP TYPE TABSTRIP.
    DATA:      BEGIN OF G_TABSTRIP,
                 SUBSCREEN   LIKE SY-DYNNR,
                 PROG        LIKE SY-REPID VALUE 'ZRICH_0003',
                 PRESSED_TAB LIKE SY-UCOMM VALUE C_TABSTRIP-TAB1,
               END OF G_TABSTRIP.
    DATA:      OK_CODE LIKE SY-UCOMM.
    OUTPUT MODULE FOR TABSTRIP 'TABSTRIP': SETS ACTIVE TAB
    MODULE TABSTRIP_ACTIVE_TAB_SET OUTPUT.
      TABSTRIP-ACTIVETAB = G_TABSTRIP-PRESSED_TAB.
      CASE G_TABSTRIP-PRESSED_TAB.
        WHEN C_TABSTRIP-TAB1.
          G_TABSTRIP-SUBSCREEN = '0101'.
        WHEN C_TABSTRIP-TAB2.
          G_TABSTRIP-SUBSCREEN = '0102'.
        WHEN OTHERS.
         DO NOTHING
      ENDCASE.
    ENDMODULE.
    INPUT MODULE FOR TABSTRIP 'TABSTRIP': GETS ACTIVE TAB
    MODULE TABSTRIP_ACTIVE_TAB_GET INPUT.
      OK_CODE = SY-UCOMM.
      CASE OK_CODE.
        WHEN C_TABSTRIP-TAB1.
          G_TABSTRIP-PRESSED_TAB = C_TABSTRIP-TAB1.
        WHEN C_TABSTRIP-TAB2.
          G_TABSTRIP-PRESSED_TAB = C_TABSTRIP-TAB2.
        WHEN OTHERS.
         DO NOTHING
      ENDCASE.
    ENDMODULE.
    Screen Flow is ....
    PROCESS BEFORE OUTPUT.
    PBO FLOW LOGIC FOR TABSTRIP 'TABSTRIP'
      MODULE TABSTRIP_ACTIVE_TAB_SET.
      CALL SUBSCREEN TABSTRIP_SCA
        INCLUDING G_TABSTRIP-PROG G_TABSTRIP-SUBSCREEN.
    MODULE STATUS_0100.
    PROCESS AFTER INPUT.
    PAI FLOW LOGIC FOR TABSTRIP 'TABSTRIP'
      CALL SUBSCREEN TABSTRIP_SCA.
      MODULE TABSTRIP_ACTIVE_TAB_GET.
    MODULE USER_COMMAND_0100.
    Vasanth

  • Disappearing context menus and tooltips

    Hi.
    After updating to firefox 10 i got very annoying behavior where all context menu, selection lists and tooltips are appearing for very short moment and then disappear right away. When moving mouse over the invisible menu the menu is flickering, sometimes stays visible for a while.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    Try to disable hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.
    *https://support.mozilla.org/kb/how-do-i-upgrade-my-graphics-drivers

  • Is there a way to combine the best of slideshow and tooltip widgets?

    I am trying to produce a sliding menu similar to the "Now Playing" movies listed on this website : http://themoviehouse.com/   
    where you can mouse over and a box pops up and stays up so that you can click links within the box. The catch is that I need this box to disappear when the mouse is not on it so that content behind the box is again visable.
    I have seen this on so many websites so I assume can build this in Muse.
    Obviously with tooltip the box does not stay open. With a slideshow, the box does not disappear when you are done.
    Is there a way to combine the two or is there another widget that allows me to create what I am looking for?

    Install the Apple Configurator (osx only) and it will cache the iOS update on there after it's been installed once.  From then on each device you plug-in will take the update from Apple Config without having to download it.  I have this setup on a macbook air and it saves me a lot of time.
    The updates are device specific so make sure you update one iPhone 4, one 4S, one 5, one iPad etc before heading out to sea.  I thought installing the update on an iPhone 4S will work on an iPhone 5 but the first iPhone 5 I connected needed to download.

  • 'Blank' and 'Tooltip' Composition Widget disappearing

    I have created a slideshow of sorts using the 'blank' composition widget (also tried 'tooltip comp'). I chose to use this so that I can add interactivity eventually and link text. Everything is working fine, until I start scrolling down the page. Once the composition is about half-way underneath my top menu, it completely disappears and no slides are visible. I've checked my scrolling/opacity settings and cannot for the life of me figure out what is triggering this. Any and all help would be greatly appreciated! The composition I'm referring to is the first one that appears on the page, just as the top menu drops down and contains a slide that says 'connect'.
    http://www.matthewwilledesign.com
    Thanks in advance!
    -Matt

    Place the trigger where it should be and rearrange the sequence of the triggers by changing their stacking order: Rightclick the trigger and choose "Arrange/…". The most backward trigger is the first one to open.

  • SwingX JXTreeTable and Tooltips

    Hello
    I have what I think is a small bug in JXTreeTable.
    Using the attached self contained runnable example and the SwingX 1.6.4 library do the following
    1. Hold mouse over any cell and the tooltip is displayed
    2. Click the tree icon so the tree collapses and then click again so the tree expands again.
    3. Now without leaving the bounds of the table (not moving the mouse out of the rows) move the mouse to any cell, the tooltip no longer gets displayed
    4. Move the mouse out of the table anywhere on the screen
    5. Move mouse back over the table, tooltips are now displayed again
    I stress that this only happens when after the tree expandsion/collapse click the mouse must not move off any row otherwise the tooltips work again correctly
    I was hoping someone out there might have a temporary solution and also whether they indeed experience the same problem, if so I can raise a bug as I can't find a currently active one for this
    import org.jdesktop.swingx.JXFrame;
    import org.jdesktop.swingx.JXTreeTable;
    import org.jdesktop.swingx.treetable.DefaultMutableTreeTableNode;
    import org.jdesktop.swingx.treetable.DefaultTreeTableModel;
    import org.jdesktop.swingx.treetable.TreeTableModel;
    import org.jdesktop.swingx.treetable.TreeTableNode;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.MouseEvent;
    public class TreeTableToolTipTest extends JXFrame
        public TreeTableToolTipTest()
            DefaultMutableTreeTableNode root = new DefaultMutableTreeTableNode();
            root.add(new DefaultMutableTreeTableNode());
            root.add(new DefaultMutableTreeTableNode());
            root.add(new DefaultMutableTreeTableNode());
            root.add(new DefaultMutableTreeTableNode());
            root.add(new DefaultMutableTreeTableNode());
            root.add(new DefaultMutableTreeTableNode());
            root.add(new DefaultMutableTreeTableNode());
            root.add(new DefaultMutableTreeTableNode());
            root.add(new DefaultMutableTreeTableNode());
            final JXTreeTable table = new MyTreeTable(new MyTreeTableModel(root));
            table.setFillsViewportHeight(false);
            Container contentPane = getContentPane();
            contentPane.setLayout(new BorderLayout());
            contentPane.add(new JScrollPane(table), BorderLayout.CENTER);
            table.setRootVisible(true);
            table.expandAll();
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            setSize(800, 500);
            setVisible(true);
        public static void main(String[] args)
            new TreeTableToolTipTest();
        private class MyTreeTable extends JXTreeTable
            private MyTreeTable(TreeTableModel treeModel)
                super(treeModel);
            public String getToolTipText(MouseEvent event)
                return "Tooltip";
        private class MyTreeTableModel extends DefaultTreeTableModel
            private MyTreeTableModel(TreeTableNode root)
                super(root);
            public Object getValueAt(Object node, int column)
                return "Hello " + column;
            public int getColumnCount()
                return 4;
    }Thanks
    Edited by: luppy on Oct 1, 2012 3:41 AM

    Thanks for filing the issue:
    http://java.net/jira/browse/SWINGX-1527
    fixed (cough ...) by yet-another-hack in TreeTableHackerExt4 (yeah, our hacks are versioned :-)
    Please let me know (all who use the treeTable!) how that works - and what it breaks ..
    Cheers
    Jeanette

  • Multiline Tooltips and tooltips on non-hyperlinked report columns

    These are both questions I had and searched this forum for without finding anything. Since I found a way of doing both, I figured I'd put the info here so someone else might find it at need.
    I have a report in my app that shows invoices that are in an approval process that involves people in three separate functions (Ops, Finance, and Contracts). The report shows some data about the invoice and the username of the person who needs to approve it. If they have not done anything, their name is shown in Yellow, if they've approved it, it's shown in Green, and if they rejected it, in Red. This worked great until one of the accounting clerks waiting for the approvals asked me to make the approvers rejection notes available from the report. I really didn't want to crud up my report with a bunch of notes. Using tooltips seemed to be a reasonable way to show the notes on demand. However, the only place APEX gives you a pre-built handle to hang tooltips on text is using a hyperlink. If I hyperlinked the approver's name, then (by default) it'd kill my status colors. The solution was to display the tooltips from within the <DIV> tags I was already using for the color. I added the capability to my function that determined the color to display the approver name. It worked well enough that I decided to post a snippet of the code here:
    IF v_notes IS NULL THEN
    v_text := NULL;
    ELSE
    v_notes := REPLACE(v_notes, '''', NULL);
    v_text := 'onmouseover="toolTip_enable(event,this,''' || v_notes || ''')"';
    END IF;
    RETURN '<div ' || v_text || ' style="color:#993333; font-weight:bold">' || p_approver || '</div>';
    I have another report where I want to display some drill-down-type data using tooltips. The data would be most readable broken up in multiple lines, but I couldn't for the life of me find anything referring to carriage-returns for toolTip_enable. I tried CHR(10), CHR(13) (and both), \n \r (and both) before finding out that it simply uses <BR>, i.e.:
    onmouseover="toolTip_enable(event,this,'Line1<BR>Line2<BR>Line3')";

    Raj,
    see if this helps you:
    http://apex.oracle.com/pls/otn/f?p=31517:22
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Error in JComboBox and JMenu with JDK 1.6

    We have a Desktop application that uses JMenuBar, JMenu, and JMenuItem and JComboBox. As we use the application, is the disappearance of the menu items, ie, they are not painted and does not drop down.
    We tested with jdk1.6.0 update 17.
    We tested with jdk1.6.0 update 22.
    We tried to force the paint component among other ways to make it work, but without success!
    We would like to know if it's a bug in Swing because we know other applications that use implementations Desktop also the same problem occurs.
    We look back!
    Edited by: Rubens on May 13, 2012 10:16 PM

    Works for me. The updates you tried are rather old too. But I would first suspect your code. Adding menu items fom the wrong thread for example.

  • How can I fire a change event from a JComboBox and JTextField?

    Is it possible to fire a ChangeEvent from JComboBox?
    Is it possible to fire a ChangeEvent from JTextField?
    If so how can I do that? Thanks.

    You can use an ItemStateListener with the combobox
    As for the textfield, it depends when you want to catch events (every keystroke, or when the user hits enter) but either way, you can do this too. Check keylistener and actionlistener

Maybe you are looking for

  • Macbook New Topcase Not Working

    So after i figure out the problem i was having before in my previous discussion, i threw away the new topcase that was working completely fine for a few months and used an external mouse and keyboard til i could find another one. Low and behold i bou

  • About safari web browser

    While I am here at the US, I am using chikka to text my loved ones in the Phlippines, but I have a problem logging into chikka when I use the itouch,even if I have the correct user name and password, when I click the sign in button nothing happen. Is

  • MIRO-Import Procurement

    Hi, When i do MIRO for Customs dept. selecting the option as 'planned delivery costs' a dialog box used to be displayed asking for which vendor to be selelected for IV (main vendor / Customs dept). Now suddenly it is behaving differently. ie it is no

  • Materials from Vendor A and Excise invoice from Vendor B???

    Hi experts Can amybody tel me  HOW TO DO??? i have created PO for exciseable material to vendor A I have to do GR for the same from Vendor B (Vendor A 'll inform to Vendor B send materials and excise invoice to customer) How i can capture excise duty

  • Need to alter the tdline for E1EDKT2

    Hello Team, I have a requirement such as this. I need to loop the internal table idoc_data , search for segment E1EDKT2, and alter the tdline for the segment, is there an efficient way of doing this? LOOP at IDOC_DATA assigning <FS_IDOC_DATA> where