Setting color in a specific JTable

I was wondering if anyone could help me with this problem. I wish to set some cells in the first column only to Yellow. I have done the following;public class customTableCellRenderer extends
DefaultTableCellRenderer
    JTable table;
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)
Component cell = super.getTableCellRendererComponent(table,value,isSelected,hasFocus,row,column);//getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
        if(value instanceof String)
             String s= (String) value;
             if(value.equals("Monday"))
                cell.setBackground(Color.YELLOW);
            else
                cell.setBackground(Color.BLUE);
             return cell;
}and my class with the JTable calls the above class:
    public JPanel centre()
        JPanel tablePanel=new JPanel(new BorderLayout());
        Object[] titles = new String[]{"","9.00","10.00","11.00","12.00","13.00","14.00","15.00","16.00","17.00","18.00","19.00"};
        String[] rows = new String[]{"Monday","Tuesday","Wednesday","Thursday","Friday"};
        Object[][] data ={
                    {"Monday","","","","","","","","","","",""},
                     {"Tuesday","","","","","","","","","","",""}};
          DefaultTableModel model=new DefaultTableModel(data,titles); 
          table=new JTable(model);
         String[][] data = new String[rows.length][titles.length];
        JTable timeTable = new JTable(data, titles);         customTableCellRenderer cr=new customTableCellRenderer();
           try
            table.setDefaultRenderer( Class.forName
               ( "java.lang.Integer" ), cr );
        catch( ClassNotFoundException ex )
            System.exit( 0 );
        table.setDefaultRenderer(Color.class, cr);
        JScrollPane pane = new JScrollPane(table);  
        pane.setSize(new Dimension(500,300));
        pane.setViewportView(table);
        tablePanel.add("Center", pane);
        return tablePanel;
}it still doesnt set the color in the cells for; Monday, Tuesday, Wednesday, Thursday, Friday.

Your renderer isn't being used.
JTable chooses the appropriate renderer based on the value of the getColumnClass(...) method. Since you haven't overridden that method it thinks all data is an Object and uses the Object renderer.
The following lines accomplish nothing, since you don't store any Integers or Color objects in your table. Every Object is a String.
table.setDefaultRenderer( Class.forName( "java.lang.Integer" ), cr );
table.setDefaultRenderer(Color.class, cr);
If you want you can specifiy a renderer for a specific column. You get the TableColumn from the TableColumnModel and add the renderer directly to the column.
If all you want to do is color a cell, then another option is to override the prepareRenderer() method. Something like this:
http://forum.java.sun.com/thread.jspa?forumID=57&threadID=610474

Similar Messages

  • How to set color of our specified JTable's row

    i need to set color of our specified JTable's row.so send the coddings of that part.

    i need to set color of our specified JTable's row.so
    send the coddings of that part.I think you misunderstand how this forum works...
    If you have a problem, you post your problem here with example code which demonstrates said problem...
    The people here then attempt to help you if they want to.
    You do not post demands for code examples

  • How can i set color some rows in jtable

    hi all,
    i have table with two cols one is id and other name
    i have array of id, i want set color for only those rows in an array
    i tried with the following code but only one row is seting why it is not setting
    the other rows? or this is the worg way what i did?
         model       = new DefaultTableModel(data, header);
            table          = new JTable(model){
                 int mostUsedCols[] = 151,80,185,90,88,95,137,152,153,181,178,179,180,107};
                 public Class getColumnClass(int column)
                        return getValueAt(0, column).getClass();
                   public Component prepareRenderer(TableCellRenderer renderer, int row, int column)
                        Component c = super.prepareRenderer(renderer, row, column);
                               int id = Integer.parseInt(tblLedgerAccounts.getModel().getValueAt(row, 0).toString());
                               for(int j=0; j<mostUsedCols.length;j++){
                                    c.setBackground( id == mostUsedCols[j] ? Color.LIGHT_GRAY : Color.WHITE );
                        return c;
                   }help me to solve this problem
    thanks
    daya

    hello,
    thanks,
    i have table 2 cols(say for ex) 1st column is name and other one is
    id, and i have some array of id's, i need to set the color for these rows
    and remainings rows are defalut color (white).
    I doubt that you need the
    else
    c.setBackground( Color.WHITE );if i did't set like this the entire table get gray.
    >
    since the color should be set to the default by the
    super.prepareRenderer(...) method. In fact this code
    would override the default row selection coloring.
    But maybe I don't understand your requirement. You
    notice my original example always to check to make
    sure the row is not selected before changing the
    background color.here is the demo, i comment this line what will happen c.setBackground( Color.WHITE );
    if not doing right than suggest me.
    import java.awt.Color;
    import java.awt.Component;
    import java.util.Vector;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.ListSelectionModel;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableCellRenderer;
    public class TableColor extends JFrame {
         public TableColor()
              Vector header = new Vector();
              Vector data   = new Vector();
              header.addElement("ID");//0
              header.addElement("Name"); //1
              header.addElement("village"); //2
              Vector v = new Vector();
              v.addElement(new Integer(1));
              v.addElement("daya");
              v.addElement("DVB");
              data.addElement(v);
              Vector v1 = new Vector();
              v1.addElement(new Integer(2));
              v1.addElement("raju");
              v1.addElement("DVBs");
              data.addElement(v1);
              Vector v2 = new Vector();
              v2.addElement(new Integer(3));
              v2.addElement("James");
              v2.addElement("sdf");
              data.addElement(v2);
              Vector v3 = new Vector();
              v3.addElement(new Integer(4));
              v3.addElement("Naga");
              v3.addElement("DVBsadf");
              data.addElement(v3);
              Vector v4 = new Vector();
              v4.addElement(new Integer(5));
              v4.addElement("xyz");
              v4.addElement("asdf");
              data.addElement(v4);
            DefaultTableModel tblModLedgerAccounts      = new DefaultTableModel(data, header);
            JTable tblLedgerAccounts          = new JTable(tblModLedgerAccounts){
                 int mostUsedCols[] = {2,4,5};
                 public Class getColumnClass(int column)
                        return getValueAt(0, column).getClass();
                   public Component prepareRenderer(TableCellRenderer renderer, int row, int column)
                        Component c = super.prepareRenderer(renderer, row, column);
                               int id = Integer.parseInt(getModel().getValueAt(row, 0).toString());
                               for(int j=0; j<mostUsedCols.length;j++){
                                    if(id == mostUsedCols[j]){
                                         c.setBackground(Color.lightGray);
                                         break;
    //                                else
    //                                     c.setBackground(Color.WHITE);
                   return c;
              JScrollPane scrollPaneLedgerAccounts =     new JScrollPane(tblLedgerAccounts);
              tblLedgerAccounts.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
              this.getContentPane().add(scrollPaneLedgerAccounts);
              setVisible(true);
              pack();
              setTitle("Table Color");
              setDefaultCloseOperation(EXIT_ON_CLOSE);
         public static void main(String args[]){
              new TableColor();
    }thanks
    daya

  • Set color to a specific word in text

    I hava text in JEditorPane I want to set Color to spacific word in text
    thank you

    Engy i've been searching.U'll find EXACTLY what u want in the java tutorial ,the folder (uiswing),open the folder (Components) inside it u'll find the file(generaltext.html).there, u'll find a perfect demo with it's 2 classes TextComponentDemo.java & LimitedStyledDocument.java
    u can use them.u'll find all u want there..good luck

  • How to set color of a specific pixel on an artLayer in JS

    I am brand new to PS scripting. I know I can select a 1x1 pixel rectangle and fill it with a specific color, but that seem inefficient.
    Is there a way to quickly and directly set the color of a specified pixel?
    Thanks.

    JTextArea doesn't support this, but if you read the JTextArea API you will find a link to the Swing tutorial on "Using Text Components" that will show you a text component that you can use.

  • Setting color of a specific line?

    okay so in swing is it possible to set a portion of the text in a text field to a different color? Like in my chat program(below) can I make it so all incoming chat(instring) is blue and all outgoing text(string) is red?
    Am I using the wrong text component for changing the color of a line? Should I even be using J text components for this?
    The tutorial often puts tons of different text components in to its examples, and uses odd methods to change the color.
    It seems that I have to use something like setCaretColor, but i am not clear on how to use this in the way I want to use it.
    here is the code:
    import java.io.*;
    import java.net.*;
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.text.*;
    import javax.swing.JOptionPane;
    import javax.swing.JDialog;
    import javax.swing.JTextField;
    import java.beans.*; //property change stuff
    import java.awt.*;
    import java.awt.event.*;
    public class server extends JFrame implements ActionListener
         JButton recieve;
         String string;
            String instring;
         String aft = " ";
         String bef = " ";
         String allchat=" ";
         JTextField towrite;
         boolean stop = false;
         String name;
         JTextArea chatbox;
         public server(){
                             setSize(490,550);
                             getContentPane().setLayout(null);
                             recieve = new JButton("send message");
                             recieve.setBounds(30,150,150,35);
                             getContentPane().add(recieve);
                                       recieve.addActionListener(this);
                             chatbox = new JTextArea("chat goes here");
                             chatbox.setEditable(false);
                             chatbox.setBounds(10,200,460,270);
                             getContentPane().add(chatbox);
                                            towrite = new JTextField("Write message here");
                             towrite.setBounds(10,475,460,35);
                             getContentPane().add(towrite);
                                            towrite.addActionListener(this);
                             setVisible(true);
                   name = (String)JOptionPane.showInputDialog(null,"Enter your name");
              while(stop==false){
                   try
                   ServerSocket socket = new ServerSocket(4019);
                   Socket insocket =socket.accept();
                   BufferedReader in = new BufferedReader (new InputStreamReader(insocket.getInputStream()));
                   instring = in.readLine();
                   socket.close();
                   bef = instring;
                   if(bef.equals(aft)){}else{
                        allchat=instring+"\n"+allchat;
                        chatbox.setText(allchat);
    catch(Exception e){}
             public void actionPerformed(ActionEvent evt)
            if(evt.getActionCommand().equals("send message"))
    try
    Socket socket = new Socket("67.166.126.246",4020);
    OutputStream out = socket.getOutputStream();
    string=name+": "+towrite.getText();
    byte buffer[] = string.getBytes();
    out.write(buffer);
    socket.close();
    catch(Exception e){}
                   bef = string;
                   if(bef.equals(aft)){}else{
                        allchat=string+"\n"+allchat;
                        chatbox.setText(allchat);
                   aft=bef;
    public static void main(String[] args)
    server s = new server();}}

    Hmmmm im sorry but Im not quite sure I understand how to do this.
    Do you have to know the exact digits at which the text starts and ends?
    or can you, as mentioned just use html tags to set the text color?
    If i were to highlight a line of the text, would that text be highlighted even if its location in the string changed?
    It would seem that tags would be easier but from what I have tried they don't seem to work in editor panes, but the ydo work in buttons
    Im sorry, Im being a bit of a pest, but I have not been doing java for that long, and I do not have a teacher, so all of my questions have to go here.

  • How do you set the font color for a specific entire row inside a JTable?

    How do you set the font color for a specific entire row inside a JTable?
    I want to change the font color for only a couple of rows inside a JTable.
    I've seen some ways to possibly do this with an individual cell.
    Clarification on changing the font color in an individual cell would be helpful too if
    there is no easy way to do this for a row.

    hai,
    Try out with this piece of code.Create your table and assign the renderer to each column in the table.
    CellColorRenderer m_CellColorRenderer = new CellColorRenderer();
    for(int i=0;i<your_JTable.getColumnCount();i++)
    your_JTable.getColumnModel().getColumn(i).setCellRenderer(m_CellColorRenderer);
    class CellColorRenderer extends JLabel implements TableCellRenderer
    CellColorRenderer()     
    setOpaque(true);     
    setHorizontalAlignment(LEFT);
    setVerticalAlignment(CENTER);
    setBackground(Color.white);
    setForeground(Color.black);
    protected void setValue(Object value)
         setText((value == null) ? "" : value.toString());
    public Component getTableCellRendererComponent(JTable table,Object value,boolean isSelected, boolean hasFocus, int row,int column)
         if(isSelected == true)
              setForeground(Color.red);
         else
              setForeground(Color.black);
         setValue(value);
         return this;
    regards,
    bala

  • Color a row in JTable according to specific column value

    I'm having problem setting row color according to specific values set in listData. Color values are also stored inside the listData. Each row has a specific color value assigned to it(either black or blue).
    ColorRenderer is called from table.setDefaultRenderer(Object.class, new ColorRenderer(listData))
    The color values are passed through to ColorRender constructor but not to the getTableCellRendererComponent() method.
    Here is my code. Any help is much appreciated.
    class ColorRenderer extends DefaultTableCellRenderer {
    Color[] colors;
    public ColorRenderer(ListData[] listData) {
    if (listData != null) {
    for (int i=0; i<listData.length; i++) {
         if (listData[i] != null) {
         colors = new Color[listData.length];
         colors[i] = listData.getForegroundColor();
         System.out.println(colors[i].toString());
    else System.out.println("null listData");
    public Component getTableCellRendererComponent (JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
    JLabel c =(JLabel)super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
    c.setOpaque(true);
    System.out.println("colors.length: " + colors.length);
    for (int i=0; i<colors.length; i++) {
    if (colors[i] != null) {        
    System.out.println("colors["+i+"]: " + colors[i]);
    c.setForeground(colors[i]);
    } else c.setForeground(Color.black);
    return c;

    Well, first of all, you didn't use the code tokens for your posting. Second, this source won't even compile how you have it. But anyway...
    If you want to change the color of the cell based on the row, assuming you have a matching color in your color list for each row, in your getTableCellRendererComponent() method, just do something like this.
    c.setForeground( colors[row] );

  • How to set background color of row in JTable

    Hi,I want to set different background color to rows in JTable according to some value in the this row.
    eg.
    no name isGood
    1 aaa yes (this row's background color is red)
    2 bbb no (this row's background color is blue)
    3 ccc yes (this row's background color is red)
    4 ddd yes (this row's background color is red)
    5 eee no (this row's background color is blue)
    thanks

    thanks!*_*                                                                                                                                                                                                                                                       

  • How to set background color in row of JTable ?

    i am new in java please tell me about How to set background color in row of JTable ? please example code. Thnak you.

    Here is an example: http://www.javaworld.com/javaworld/javaqa/2001-09/03-qa-0928-jtable.html
    For more info on how to use tables read the swing tutorial: http://java.sun.com/docs/books/tutorial/uiswing/components/table.html
    ICE

  • Coloring of a (specific) row in ALV report-How?

    Hi Experts,
    Am looking to assign a color for a (specific)row in ALV report.......so, pls. let me know How to get it done?
    thanq

    TABLES:LFA1.
    SELECT-OPTIONS:LIFNR FOR LFA1-LIFNR.
    DATA:BEGIN OF ITAB OCCURS 0,
    LIFNR LIKE LFA1-LIFNR,
    NAME1 LIKE LFA1-NAME1,
    LAND1 LIKE LFA1-LAND1,
    ORT01 LIKE LFA1-ORT01,
    REGIO LIKE LFA1-REGIO,
    SORTL LIKE LFA1-SORTL,
    CFIELD(4) TYPE C,
    END OF ITAB.
    data:col(4).
    data:num value '1'.
    SELECT * FROM LFA1 INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE LIFNR
    IN LIFNR.
    LOOP AT ITAB.
    concatenate 'C' num '10' into col .
    ITAB-CFIELD = col.
    num = num + 1.
    if num = '8'.
    num = '1'.
    endif.
    MODIFY ITAB.
    ENDLOOP.
    TYPE-POOLS:SLIS.
    DATA:FCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA:LAYOUT TYPE SLIS_LAYOUT_ALV.
    DATA:SORT TYPE slis_t_sortinfo_alv WITH HEADER LINE.
    DATA:EVE TYPE SLIS_T_EVENT WITH HEADER LINE.
    LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    LAYOUT-WINDOW_TITLEBAR = 'VENDORS DETAILS SCREEN'.
    LAYOUT-EDIT = 'X'.
    LAYOUT-info_fieldname = 'CFIELD'.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
    I_PROGRAM_NAME = SY-REPID
    I_INTERNAL_TABNAME = 'ITAB'
    I_INCLNAME = SY-REPID
    CHANGING
    CT_FIELDCAT = FCAT.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = SY-REPID
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = FCAT
    TABLES
    T_OUTTAB = ITAB.
    this is for coloring cols
    REPORT ZBHCOLOR_COLS.
    TABLES:LFA1.
    SELECT-OPTIONS:C_LIFNR FOR LFA1-LIFNR. " FOR GRID ONLY
    PARAMETERS:LIST RADIOBUTTON GROUP ALV DEFAULT 'X',
    GRID RADIOBUTTON GROUP ALV.
    DATA:BEGIN OF ITAB OCCURS 0,
    LIFNR LIKE LFA1-LIFNR,
    NAME1 LIKE LFA1-NAME1,
    LAND1 LIKE LFA1-LAND1,
    ORT01 LIKE LFA1-ORT01,
    SORTL LIKE LFA1-SORTL,
    REGIO LIKE LFA1-REGIO,
    COL TYPE LVC_T_SCOL,
    END OF ITAB.
    DATA:COLR TYPE LVC_S_SCOL.
    SELECT * FROM LFA1 INTO CORRESPONDING FIELDS OF TABLE ITAB.
    LOOP AT ITAB.
    IF ITAB-LIFNR IN C_LIFNR.
    COLR-FNAME = 'NAME1'.
    COLR-COLOR-COL = '5'.
    COLR-COLOR-INT = '1'.
    COLR-COLOR-INV = '0'.
    COLR-NOKEYCOL = 'X'.
    APPEND COLR TO ITAB-COL.
    COLR-FNAME = 'LIFNR'.
    APPEND COLR TO ITAB-COL.
    MODIFY ITAB.
    ENDIF.
    ENDLOOP.
    TYPE-POOLS:SLIS.
    DATA:FCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA:LAYOUT TYPE SLIS_LAYOUT_ALV.
    LAYOUT-ZEBRA = 'X'.
    layout-coltab_fieldname = 'COL'.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
    I_PROGRAM_NAME = SY-REPID
    I_INTERNAL_TABNAME = 'ITAB'
    I_INCLNAME = SY-REPID
    CHANGING
    CT_FIELDCAT = FCAT.
    IF LIST = 'X'.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = SY-REPID
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = FCAT
    TABLES
    T_OUTTAB = ITAB.
    ELSEIF GRID = 'X'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = SY-REPID
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = FCAT
    TABLES
    T_OUTTAB = ITAB.
    ENDIF.
    Reward points if useful.

  • Setting color codes for more than one photo at a time

    Is there any way to set color codes for more than one photo at a time?

    Hi John,
    I will look at keywords. My issue is speed. Right now I am culling and editing an event shoot that spanned a week with 35 separate events and more than 5000 images. So I use the fastest most convenient method I can and it still takes a long time to have a completed and final shoot. On this shoot I will end up with a final set of around 1500 images. Right now I am finishing processing a show that will hang in the Deutsches Amerikanish Zentrum in Stuttgart.
    As I am sure you are aware by now, having seen enough of my inane questions that over the last two years or since Lightroom version 1.xx if I could not figure out how to do something I skipped it. So many things in Lightroom are buried and unless you have a mind like a steel trap (and think that some of you guys in the forum do) locating how to do something is not obvious.
    For example, I only learned (in the last hour) that I could assign colors as a group of selections by using Shift + number. I found this in a side head in Martin Evenings Lightroom book. I still do not know how to find a way to display the color filter "selection" set in Library mode. Is there a way?
    To top it off, Stuttgart Media University asked me if I would add a Lightroom module to my schedule this year. Now I have a compelling reason to learn all those missing pieces that I have created workarounds for. Hence the number of posts you have been seeing from me over the past few of weeks.
    I tell my class that there are no such things as stupid questions, only questions. Now I am practicing what I have been preaching for the last gazillion years. Guys like you have been great.
    My workflow is
    1. I first separate all images by event. I do that at the time of import.
    2. I do a fast pass rejecting all the obviously bad images
    3. I do a second pass grouping the images by sub-group (speeches, people talking, performances, etc.) This is where I run out of selection methods and your key-wording could work but it would probably take too much time to establish a keyword set for a single event. Where I have more than five subgroups I set up different collection sets with one collection for each sub group. However I would like to keep a single event in one collection.
    4. I then select the images to be used by color code.
    5. Next I process the final images (crop develop etc) by collection.
    6. Last I output the set according to client requirement.
    If you have a better workflow, I am all ears.
    By the way, what is your photo specialty and where are you located?
    Jim

  • To set color for barchart having datetime column

    Hi,
       I have a datetime column in the XSD,
    I was trying to set colors for the barchart through,  chart expert --> colorhighlight  ,here in  colorhighlight when i click on new I am getting a dialogue box asking to enter datetime in M:D:YYYY H:MM:SS TT format. why is this dialogue displayed ? How to overcome this.
    Regards,
    Deepa V

    Hi Deepa
    Please inform us with the following information:
    1: What is the version of Crysatl Reports that you are using?
    2: What is the Chart Type that you are uisng?
    3: Where are you placing this chart in the report?
    Regards
    Ashwini Yadav

  • [AS][INDCC] How to set Color Conversion field to No Color Conversion when creating PDF Export preset

    How can i set Color Conversion field in Export to PDF dialog to No Color Conversion when creating PDF Export preset? i have done a bit of searching and have found where it has been recommended to set effective pdf destination profile to use no profile but it doesn't seem to be producting the expected results.

    Yes, it seems that i had to make the change after creation, not while creating the preset. thank you.
    tell application "Adobe InDesign CC"
         set newPreset to make new PDF export preset with properties ¬
              {name:"preset name", standards compliance:none, acrobat compatibility:acrobat 7}
         tell newPreset to set PDF color space to unchanged color space
    end tell

  • Set color for TableCellDesign for a table in readmode.

    My Requirement is dynamic assiging the Tabcelldesgin color for table column, but Table in readonly = false.
    is there any possiblity of assigining the values dunamically.
    Thanks in  advance

    Yes, i have assigned to Table column to set color dynamically for  different conditions.
    But color is visible, when table in read mode.
    My requirement is need to set color, when table in readonly = false.
    Please can any one have the solution for this>

Maybe you are looking for

  • Hiding table fields in custom infotype

    HI guyz, i have created a custom infotype which has 2 subtypes . certain fields should not be displayed when we select the subtypes. i have used the code below. the screen contains a table. MODULE hide_FIELDS OUTPUT. IF p9555-subty = '1'. LOOP AT SCR

  • How to use .properties files in Webdynpro Java code?

    Hi all,   I want to use a logon.properties file when I initial a JCO connection pool in my webdynpro DC (JCO.addClientPool()),but  I found when I deployed this DC to the server, it always giv e me an FileNotFoundException. So I donot know how to depl

  • An age old bug - GarageBand not updating

    It is actually both iPhoto & GarageBand that are not being updated. The exact message is this: This update is not available. You must have previously purchased the item being updated. Tap Buy to purchase it now. which doesn't make much sense to me. D

  • BAPI for Purchase info record creation

    Hi Please let me know how to create purchase info record through BAPI, with tax codes along with material price. please guide me. Simha

  • Kernal_Task taking up too much memory

    Okay, let me just start by saying that I do usually game on my mac, anyway, I was able to play fine and do everything without any frustration but everything changed when the Yosemite nation attacked, after I installed Yosemite I was not able to play