JTable - row selection not working + change the text format

Hi All,
I have written a code to display Jtable with 2 columns, 1 column to display image+text and other is multiline.
I have used 2 different cell renderer for achiveing the same.
Please advice on the following:
@ When I click on row, only one column gets selected. How to fix this?
@ Data to be displayed in rows is fetched from database. And on some STATUS value row should be in bold text or plain text. I have achieved this but withou logic to iterate over it.
@ When user right clicks on the row allow them to set text in the row as bold or plain.(Just like we do with mails in outlook box)
Below is the code:
Hi All,
I have written a code to display Jtable with 2 columns, 1 column to display image+text and other is multiline.
I have used 2 different cell renderer for achiveing the same.
Please advice on the following:
@ When I click on row, only one column gets selected. How to fix this?
@ Data to be displayed in rows is fetched from database. And on some STATUS value row should be in bold text or plain text. I have achieved this but withou logic to iterate over it.
@ When user right clicks on the row allow them to set text in the row as bold or plain.(Just like we do with mails in outlook box)
Below is the code:package jtab;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.Vector;
import javax.swing.ImageIcon;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.JPopupMenu;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableCellRenderer;
import jtab.TestIcon.iconRenderer;
public class SampleJtable {
     JFrame frame;
     JTable table;
     JScrollPane panel;
     JPopupMenu popupMenu ;
     public static void main(String[] args) {
          SampleJtable sample = new SampleJtable();
          sample.loadGUI();
     public void loadGUI(){
          frame = new JFrame("Sample Program for Font and ImageIcons");
          frame.setContentPane(panel);
          frame.setSize(550,250);
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.setVisible(true);
     public SampleJtable(){
          BufferedImage images[] = new BufferedImage[1];
          try{
               images[0] = javax.imageio.ImageIO.read(new File("C:/go.gif"));
          }catch(Exception e){
               e.printStackTrace();
          final Object data [][] = {{"Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe \n P",new ImageStore(images[0],"Bourquin Rene")},
                    {"Auftrag \n test \n \n 1957,Grenchen Kaufe \n N",new ImageStore(images[0],"Bourquin Rene")}};
          String colIds [] ={"Beschrebung","Von"};
          DefaultTableModel model = new DefaultTableModel(data, colIds) {  
public Class getColumnClass(int column) {  
return data[0][column].getClass();
          /*Vector<Object> rowData1 = new Vector(2);
          rowData1.add("Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe");
          rowData1.add(new ImageStore(images[0],"Bourquin Rene"));
          Vector<Object> rowData2 = new Vector(2);
          rowData2.add("Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe");
          rowData2.add(new ImageStore(images[0],"Bourquin Rene"));
          Vector<Vector> rowData = new Vector<Vector>();
     rowData.addElement(rowData1);
     rowData.addElement(rowData2);
          Vector<String> columnNames = new Vector<String>();
     columnNames.addElement("Beschrebung");
     columnNames.addElement("Von");     
          DefaultTableModel model = new DefaultTableModel(rowData, columnNames) {  
          table = new JTable(model);
          table.setDefaultRenderer(ImageStore.class, new ImageRenderer());          
          table.getTableHeader().getColumnModel().getColumn(0).setCellRenderer(new LineCellRenderer());
          table.setRowHeight(84);
          panel = new JScrollPane(table);
          panel.setOpaque(true);
     class ImageRenderer extends DefaultTableCellRenderer {  
     public Component getTableCellRendererComponent(JTable table,
     Object value,
     boolean isSelected,
     boolean hasFocus,
     int row, int column) {  
     super.getTableCellRendererComponent(table, value, isSelected,
     hasFocus, row, column);
     ImageStore store = (ImageStore)value;
     setIcon(store.getIcon());
     setText(store.text);
     return this;
     class ImageStore {  
     ImageIcon icons;
     String text;
     int showingIndex;
     public ImageStore(BufferedImage image1,String s) {
     icons = new ImageIcon(image1);
     showingIndex = 0;
     text = s;
     public ImageIcon getIcon() {  
     return icons;
     public void toggleIndex() {  
     showingIndex = (showingIndex == 0) ? 1 : 0;
     class LineCellRenderer extends JEditorPane implements TableCellRenderer {
          public LineCellRenderer() {           
          setOpaque(true);
          setContentType("text/html");          
          public Component getTableCellRendererComponent(JTable table, Object value,
          boolean isSelected, boolean hasFocus, int row, int column) {
          //System.out.println("Whats in value = "+ value.toString());
          String [] strArray = value.toString().split("\n");
          String rtStr = null ;
          System.out.println("TYPE+ "+ strArray[strArray.length-1].toString());
          String val = strArray[strArray.length-1].toString().trim();
          if (val.equalsIgnoreCase("N")){
               System.out.println("TYPE+ IS NEW");
               rtStr = "<html><head></head><body><b><div style=\"color:#FF0000;font-weight:bold;\">" + strArray[0] + "</div>" +
                         " <div style=\"color:#0000FF;font-weight:bold;\">" + strArray[1] + "</div>" +
                         "<div style=\"color:#0000FF;font-weight:bold;\">" + strArray[2] + "</div>" +
                         "<div style=\"color:#0000FF;font-weight:bold;\">" + strArray[3] + "</div>" +
                         "</b></body></html>";
          else {
               System.out.println("TYPE+ IS PENDING");
               rtStr = "<html><head></head><body><div style=\"color:#FF0000;\">" + strArray[0] + "</div>" +
               " <div style=\"color:#0000FF;\">" + strArray[1] + "</div>" +
               "<div style=\"color:#0000FF;\">" + strArray[2] + "</div>" +
               "<div style=\"color:#0000FF;\">" + strArray[3] + "</div>" +
               "</body></html>";
          setText(rtStr);
          return this;

Posting code again........
package jtab;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.Vector;
import javax.swing.ImageIcon;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.JPopupMenu;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableCellRenderer;
import jtab.TestIcon.iconRenderer;
public class SampleJtable {
JFrame frame;
JTable table;
JScrollPane panel;
JPopupMenu popupMenu ;
public static void main(String[] args) {
SampleJtable sample = new SampleJtable();
sample.loadGUI();
public void loadGUI(){
frame = new JFrame("Sample Program for Font and ImageIcons");
frame.setContentPane(panel);
frame.setSize(550,250);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
public SampleJtable(){
BufferedImage images[] = new BufferedImage[1];
try{
images[0] = javax.imageio.ImageIO.read(new File("C:/go.gif"));
}catch(Exception e){
e.printStackTrace();
final Object data [][] = {{"Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe \n P",new ImageStore(images[0],"Bourquin Rene")},
{"Auftrag \n test \n \n 1957,Grenchen Kaufe \n N",new ImageStore(images[0],"Bourquin Rene")}};
String colIds [] ={"Beschrebung","Von"};
DefaultTableModel model = new DefaultTableModel(data, colIds) {
public Class getColumnClass(int column) {
return data[0][column].getClass();
/Vector<Object> rowData1 = new Vector(2);
rowData1.add("Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe");
rowData1.add(new ImageStore(images[0],"Bourquin Rene"));
Vector<Object> rowData2 = new Vector(2);
rowData2.add("Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe");
rowData2.add(new ImageStore(images[0],"Bourquin Rene"));
Vector<Vector> rowData = new Vector<Vector>();
rowData.addElement(rowData1);
rowData.addElement(rowData2);
Vector<String> columnNames = new Vector<String>();
columnNames.addElement("Beschrebung");
columnNames.addElement("Von");
DefaultTableModel model = new DefaultTableModel(rowData, columnNames) {
table = new JTable(model);
table.setDefaultRenderer(ImageStore.class, new ImageRenderer());
table.getTableHeader().getColumnModel().getColumn(0).setCellRenderer(new LineCellRenderer());
table.setRowHeight(84);
panel = new JScrollPane(table);
panel.setOpaque(true);
class ImageRenderer extends DefaultTableCellRenderer {
public Component getTableCellRendererComponent(JTable table,
Object value,
boolean isSelected,
boolean hasFocus,
int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected,
hasFocus, row, column);
ImageStore store = (ImageStore)value;
setIcon(store.getIcon());
setText(store.text);
return this;
class ImageStore {
ImageIcon icons;
String text;
int showingIndex;
public ImageStore(BufferedImage image1,String s) {
icons = new ImageIcon(image1);
showingIndex = 0;
text = s;
public ImageIcon getIcon() {
return icons;
public void toggleIndex() {
showingIndex = (showingIndex == 0) ? 1 : 0;
class LineCellRenderer extends JEditorPane implements TableCellRenderer {
public LineCellRenderer() {
setOpaque(true);
setContentType("text/html");
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int row, int column) {
//System.out.println("Whats in value = " value.toString());
String [] strArray = value.toString().split("\n");
String rtStr = null ;
System.out.println("TYPE " strArray[strArray.length-1].toString());
String val = strArray[strArray.length-1].toString().trim();
if (val.equalsIgnoreCase("N")){
System.out.println("TYPE IS NEW");
rtStr = "<html><head></head><body><b><div style=\"color:#FF0000;font-weight:bold;\">" strArray[0] "</div>"
" <div style=\"color:#0000FF;font-weight:bold;\">" strArray[1] "</div>"
"<div style=\"color:#0000FF;font-weight:bold;\">" strArray[2] "</div>"
"<div style=\"color:#0000FF;font-weight:bold;\">" strArray[3] "</div>"
"</b></body></html>";
else {
System.out.println("TYPE+ IS PENDING");
rtStr = "<html><head></head><body><div style=\"color:#FF0000;\">" strArray[0] "</div>"
" <div style=\"color:#0000FF;\">" strArray[1] "</div>"
"<div style=\"color:#0000FF;\">" strArray[2] "</div>"
"<div style=\"color:#0000FF;\">" strArray[3] "</div>"
"</body></html>";
setText(rtStr);
return this;
}

Similar Messages

  • Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exact

    Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exactly same word file on exporting it from its pdf counterpart?

    I was testing the preciseness & efficiency of Adobe acrobat x professional's doc conversion capabilities. As i have to take a document editing project in future which is going to need lot of pdf to word and vice versa conversions . What I did was I created a test word document converted into a pdf using a pdf maker in my word 2007 , Acrobat did convert the document from word to pdf keeping everything in the source file intact , However when i tried the other way round and attempted to convert the same pdf to word 2007 file format I lost my formatting ?So the font that I used to create the pdf are the ones taken from word 2007 which i believe is using the fonts that are installed in my computer. Any suggestions on how to preserve the formatting of the document after converting it from pdf to word file format?
    Regards
    Mike

  • Restriction in Rows Selection not working

    Hello,
    I  have a requrement where i need to restrict the material based on the date
    output is
    Sno Material                                       date           quantity
    1      Material > 90 days                  5/7/2012        20
            material within 90 days          12/31/2011      5
                                                            1/2/2012        10
    like this
    Material > 90 days is material exist 90 days from current system date Ex. for Feb 7,2012 ./ the range is may 7 ,2012
    material within 90 days is material  +  or - 90 days.. ex, for Feb 7,2012 .. the range is Dec 7,2011 to May 7,2012
    I created a new selection in Rows for material and restricted based on 0DAT variable with offset.
    its not working.
    Request you to help on this
    Thanks
    Bala

    Hi, Malkit.
       I am not quite clear with this "Earlier it was working fine but some how it stopped although custom OVS is working fine when i remove the restricted filed, all the values come properly".
    Can you please explain what happened more clearly?
    Have you tried executing your QueryByElements with projectID in PDI?
    Regards,
    Fred

  • Row selection not working in SQL view?

    Hope this something silly --
    I have an ADF view defined something like this -- breaks selected orders into pricing buckets.
    select floor((billingAmount / mileAge) / .05) as bucket,
    floor((billingAmount / mileAge) / .05)* .05 as bucketMin,
    ceiling((billingAmount / mileAge) / .05)* .05 as bucketMax,
    count(*) as orders
    from ordersMaster
    where originZoneNumber = ? and destinationZoneNumber = ? and DSRDate >= ?
    group by floor((billingAmount / mileAge) / .05),
    floor((billingAmount / mileAge) / .05)* .05,
    ceiling((billingAmount / mileAge) / .05)* .05
    After setting the bind variables, this gives me a fine read-only table with selection columns.
    The first couple rows of the table looks something like
    Select Bucket bucketMin bucketMax orders
    60 3.00 3.05 1
    61 3.05 3.10 4
    62 3.10 3.15 7
    On the Select button, I have this code snippet:
    DCIteratorBinding ib = ADFUtils.findIterator("RevenueRangeViewIterator");
    Row row = ib.getCurrentRow();
    System.out.println("Selected range starts at " + row.getAttribute("bucketMin"));
    System.out.println("Selected range has " + row.getAttribute("orders"));
    Regardless of what row I have selected, I get data for the first row.
    When I do the same code against a table created from entities, it works fine.
    What am I missing?
    Thanks in advance
    Ed Schechter

    Hope this something silly --
    I have an ADF view defined something like this -- breaks selected orders into pricing buckets.
    select floor((billingAmount / mileAge) / .05) as bucket,
    floor((billingAmount / mileAge) / .05)* .05 as bucketMin,
    ceiling((billingAmount / mileAge) / .05)* .05 as bucketMax,
    count(*) as orders
    from ordersMaster
    where originZoneNumber = ? and destinationZoneNumber = ? and DSRDate >= ?
    group by floor((billingAmount / mileAge) / .05),
    floor((billingAmount / mileAge) / .05)* .05,
    ceiling((billingAmount / mileAge) / .05)* .05
    After setting the bind variables, this gives me a fine read-only table with selection columns.
    The first couple rows of the table looks something like
    Select Bucket bucketMin bucketMax orders
    60 3.00 3.05 1
    61 3.05 3.10 4
    62 3.10 3.15 7
    On the Select button, I have this code snippet:
    DCIteratorBinding ib = ADFUtils.findIterator("RevenueRangeViewIterator");
    Row row = ib.getCurrentRow();
    System.out.println("Selected range starts at " + row.getAttribute("bucketMin"));
    System.out.println("Selected range has " + row.getAttribute("orders"));
    Regardless of what row I have selected, I get data for the first row.
    When I do the same code against a table created from entities, it works fine.
    What am I missing?
    Thanks in advance
    Ed Schechter

  • Table row selection not working

    Hi,
    I have a context node for a table of value nodes - APTDATES2 (  superclass CL_BSP_WD_CONTEXT_NODE_TV ),  bound to a custom controller context node,
    which I am displaying via the following on the .htm  page :
      <chtmlb:configTable
                           xml                   = "<%= lv_xml %>"
                           id="appt2"
                           headerText = "Available Appointments"
                           navigationMode="BYPAGE"
                           table="//APTDATES2/Table"
                           visibleRowCount = "12"
                           allRowsEditable = "TRUE"
                           downloadToExcel = "FALSE"
                           personalizable = "FALSE"
                           onRowSelection        = "select"
                           selectionMode   = "<%= APTDATES2->selection_mode %>"
                           selectedRowIndex      = "<%= APTDATES2->selected_index %>"
                           selectedRowIndexTable = "<%= APTDATES2->selection_tab %>"
                           showNoMatchText = "TRUE"
                           width="100%"
                           visibleFirstRow       = "<%= APTDATES2->visible_first_row_index %>"
                           HEIGHT = "10"/>
    My problem is that I cannot click in the left-hand column to select a row on the table - it is not  triggering any events (not even triggering a round-trip  - confirmed this by putting a break-point in the view implementation DO_HANDLE_DATA ).   Have similarly checked that APTDATES2->SELECTION_MODE
    contains SINGLESELECT.
    What am I missing ?

    I am able to fix it using a managed variable for the selectionState. Here is the code:
    <af:table emptyText="No items were found"
    value="#{backing_UpdateResult.resultList}"
    var="row"
    rows="10"
    binding="#{backing_UpdateResult.resultsTable}"
    selectionState="="#{backing_UpdateResult.tableSelectionState}"
    id="resultsTable"
    >
    In the backing bean I have a property variable like:
    private RowKeySet tableSelectionState;
    public RowKeySet getTableSelectionState() {
    if (tableSelectionState == null) {
    tableSelectionState = new RowKeySet();
    tableSelectionState.getKeySet().add("0");
    return tableSelectionState;
    }

  • I can't change the text formatting with slideshow captions.

    They revert back to a color and size other than what I specified. I have tried doing paragraph styles, charecter styles, unchecking the edit together. Nothing helps.

    HIr
    Yes, first I convert long_to_varchar for edit, and convert varchar_to_long.
    I edit before before and later
    Thanks

  • I have a PDF with a diagram, I need to translate the text so I open it in Illustrator.  The document opnes up vertically oriented  I try to put it horizontal to be able to read and change the text  However everything I have done is not working  The artboa

    I have a PDF with a diagram, I need to translate the text so I open it in Illustrator.  The document opens up vertically oriented  I try to put it horizontal to be able to read and change the text  However everything I have done is not working  The artboard does change, but the diagram stays vertical.....Please help  I need to finish that for today..Please help

    A PDF usually consists of one to an indefinite number of clipping masks inside each other.
    You need to be very carefull with selecting stuff.
    So you need to read the manual on how to select stuff and on the basics of Illustrator.
    On top of that: because of the complex hierarchy of PDF files, it is kind of difficult to help you without seeing anything.

  • How do I change the text color of footers on select pages? (InDesign CS6)

    Good afternoon,
    Months ago, I worked with a graphic designer to put together a 100-page workbook for my training company. He turned all of the files over to me and I'd like to make a small change before we print another run for a new client. Specifically, I'm having trouble changing the text color on select pages. Since a picture says 1,000 words, let me give you an example:
    As you can see, the copyright information on the right side of the page is difficult to read here when placed over the photo (you may have to look closely, but it's along the guy's sleeve). What I'd love to do is change that part of the footer (not the left, page number side) to white text. This would make it quite a bit easier to read. There's a number of other pages in the book that I want to make this change to. I'm not sure why I never noticed it or mentioned it to the designer. I suppose I've become more discerning since then.
    Let me tell you what I've tried to do:
    I learned how to override master pages by CTRL+SHIFT clicking on the footer. However, this has not worked for me. It allows me to change the page number part, but not the copyright side. Additionally, sometimes when I override the master the formatting of the footer goes goofy. For instance, the left side and right side come together and end up in the middle of the page I'm working on.
    I'm looking for a quick way to go through and make the footers easier to read on pages where they are backed by a photo. Hoping you can help me. Please let me know if you need any other information.
    Best,
    Taylor

    I think you should have left it as it was. It seems like what you had was single pages flowing as spreads within InDesign. Like below. That is the correct way, and when you changed it to all single, it did create your footer problems.
    Will you be sending the file as a PDF to your online printer? If so, then leaving the InDesign file set as below is fine. The PDF output will separate the pages.
    All you have to do is make sure that Pages, not Spreads, is chosen when you output the PDF

  • Is there a way of just changing the text to the main menu..but not the submenus?

    Is there a way of just changing the text to the main
    menu..but not the submenus?
    Also i have looked at in the browser and when i glide over
    the menu catergories or click on them they dont show the
    submenu...what can i do to solve this?

    Does the example described at
    http://labs.adobe.com/technologies/spry/articles/menu_bar/index.html
    work for you?
    What are you doing that's different from the example?
    When you say you just want to change the text of the main
    menu without changing the submenus, do you mean you want to do so
    dynamically, at some later stage after the page has loaded?
    If so, you could try retrieving the main menu elements you
    want to update from the DOM and updating them from your script's
    event handler for whatever event it is that you want to update them
    in response to. This presumes the widget will detect this and
    update appropriately, which I can't say for sure since I haven't
    actually tried it.
    Hope that helps!
    Rob

  • How to change the text of a user defined field in dynamic selections?

    Logical Database PSJ is used by t code CJI3 - we added a couple of user fields into the dynamic selections of CJI3.
    Now - how to change the text of this user filed (USR01 of structure PRSP_R in logical database PSJ)?
    Found an OSS note - 86980 - that tells that this is not possible.
    But when we read the documentation on the user field (CJI3 - dynamic selections  - double click on user field - F1), it shows the following text:
    User-defined field in which you can enter general information with a length of up to 20 characters.
    Dependencies
    The names (key words) for  user-defined fields depend on the field key.
    Now the question is where to change the field key..
    Thanks,
    Ven

    Madhu - you did not get the question I think.
    Anyways - I found an OSS note 1266643 - this code change should take care of the issue - it will then reflect the details maintained in custoizng at transaction code OPS1..
    Thanks,

  • At work with the text at allocation by the cursor of the big fragment of page it is necessary to shift all time it downwards, "against the stop", but the page automatically does not start to rise upwards as occurs in other browsers. I ask the help!

    After transition on Windows 7 there was a problem with Firefox. At work with the text at allocation by the cursor of the big fragment of page it is necessary to shift all time it downwards, "against the stop", but the page automatically does not start to rise upwards as it was earlier and as occurs in other browsers. It is necessary to press other hand a key "downwards" that is the extremely inconvenient. Reinstallation on earlier version (8.0) earlier irreproachably working, has given nothing. I ask the help

    You need to enable the Add-ons bar (Firefox > Options or View > Toolbars; Ctrl+/) or the Find bar (Ctrl+F) to make Firefox scroll the page while selecting text.

  • Safari is not working on the Mac. Internet is fine, mail, App Store etc all working and connecting to Internet fine. Done the latest software update, still not working. When selecting a web address from bookmarks or typing in search bar, partial blue bar.

    Safari is not working on the Mac. Internet is fine. mail, App Store etc all working and connecting to Internet fine. Done the latest software update, still not working. When selecting a web address from bookmarks or typing in search bar, partial blue bar only and coloured wheel appears.

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    If you wish, you may be able to salvage the malfunctioning extension by uninstalling and reinstalling it. That will revert its settings to the defaults.
    If extensions aren't causing the problem, see below.
    Safari 5.0.1 or later: Slow or partial webpage loading, or webpage cannot be found

  • I have an apple ID which I use to sign into icloud for my iPad and iPhone.But when I use the same ID for setting up iCloud on my Macbook it says INCORRECT ID or password, try again. I tried changing my passwords but it does not work for the macbook.

    I have an apple ID which I use to sign into icloud for my iPad and iPhone.But when I use the same ID for setting up iCloud on my Macbook it says INCORRECT ID or password, try again. I tried changing my passwords several times but it does not work for the macbook.

    You will have to provide the correct password to delete the existing account, if you have tried but are not getting the password reset email, contact Apple for assistance by going to https://expresslane.apple.com, then click More Products and Services>Apple ID>Other Apple ID Topics>Lost or forgotten Apple ID password.

  • How to change the Text  description on screen...(not the Data Element)

    I want to change the just text of one of the label on one of the screen. I don't want to change the Data Element, as the same data element is used in multiple places, but I want to change only at one particular screen, at one particular spot
    Any suggestion....?

    a)If you change the Text in a LABEL manually, then translation of the text can't be done.
    Better create a new structure which will be used in all such cases where u can't change the data element.
    Create fields in the Structure with your newly created data element and refer the field in the Label.
    b)IF the translation is not an issue then manually enter the text.

  • How to change the text under RECORD WORKING TIME IN ESS.

    Hi,
    How to change the text under RECORD WORKING TIME in ESS.
    Is there any setting at page or iview level?
    Please help me.
    Regards,
    Thirun.

    Hi,
    If it is standard business package ,then check home page framework
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b0e3a488-cdc2-2b10-209b-e01a0ed934b4
    Regards
    Koti Reddy

Maybe you are looking for

  • Problems syncing photos from iphoto to ipod via itunes

    I have been having some difficulty getting my itunes to sync iphoto contents to my ipod. This worked fine for ages, but has just stopped working. I can sync photos from a standalone folder. Following a discussion on the ipod forum (for full details s

  • JavaScript Error in Sun Java System Messaging 6 with P1

    I get a error messages when i click on a mailbox and it does not contain any messages. This concerns all mailboxes, INBOX, SENT, TRASH and DRAFTS. The error disappears when i get a messages och a draft in the boxes. Does someone know whats wrong in t

  • Crystal Reports Server XI - server migration

    Post Author: jamessep1973 CA Forum: General Hi, I need to migrate my Crystal Server stuff onto a new server - can anyone point me towards resources/documents/help files to assist with this? Many thanks, James.

  • Frm-92101 there was a failure in the forms server during startup after R12.2

    Hi All, I have install the multinode(2 Node) R12.2 on CentOS 6 with no issues, while launching java forms it is showing "frm-92101 there was a failure in the forms server during startup" I had this same issue before when I install R12.1.1 so I check

  • How do I show iCloud in dock?

    Is there a way to display iCloud icon in the dock, without having to open Settings first?