Simple JTable question

Hi!
I'm working on yami . Yesterday I've got a problem, and I can't figure out. The program is very simple: a query view. You are connecting -> select database from JTree, from sub need to select the table, and finally need to show results in JTable.
Connection Dialog -> if OK -> window with 2 panels JTree (browseInterface).
I made selection on this way:
When the value from JTree is table, I'm passing the database and the tablename again to the browseInterface. I made a command line check, and when the values are passed to the program it prints the query to the console, but there are no changes in the JTable. I creating the JTable on this way:
     public dbTable(String[][] array, String[] colNames) {
          dbTable = new JTable(array, colNames);
          setLayout(new BorderLayout());
          add(dbTable);
          setSize(200, 200);
          JScrollPane jsp = new JScrollPane(dbTable);
          add(jsp, BorderLayout.CENTER);
     }Where are the array and the colNames are from the query. So, I think that JTable gets all arguments, but it isn't draws table from the results. Can somebody help me?
Thanks!

Here is my SSCCE example:
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.table.AbstractTableModel;
import javax.swing.*;
public class sscce {
          public static void main(String[] args) {
               JFrame mainW = new JFrame("table tests");
               mainW.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
               Integer i = 0;
               panel bi = new panel(i);
               mainW.add(bi);
               mainW.pack();
               mainW.setVisible(true);
               mainW.setSize(500, 300);
     public static class MyTableModel extends AbstractTableModel {
          static String[] clns;
          static Object[][] dt;
          public MyTableModel() {
               fireTableStructureChanged();
          public static void passColumnNames(String[] strArray) {
               clns = strArray;
          public static void passData(Object[][] objArray) {
               dt = objArray;
          public int getColumnCount() {
               return clns.length;
          public int getRowCount() {
               return dt.length;
          public String getColumnName(int col) {
               return clns[col];
          public Object getValueAt(int row, int col) {
               return dt[row][col];
          public Class getColumnClass(int c) {
               return getValueAt(0, c).getClass();
          public void setValueAt(Object value, int row, int col) {
               dt[row][col] = value;
               fireTableCellUpdated(row, col);
     public static class TableDemo extends JComponent {
          public TableDemo(Integer numb) {
               String[] columnNames = new String[numb];
               final Object[][] data = new Object[10][numb];
               Integer b = 0;
               Integer c = 0;
               Integer d = 0;
               for(int i = 0; i < numb; i++) {
                    b = i;
                    c = b + numb;
                    d = b - numb;
                    columnNames[i] = c.toString();
                    for(int j = 0; j < 10; j++) {
                         data[j] = d.toString();     
               MyTableModel.passColumnNames(columnNames);
               MyTableModel.passData(data);
               JTable table = new JTable(new MyTableModel());
               table.setAutoCreateColumnsFromModel(true);
               setLayout(new BorderLayout());
               add(table);
               JScrollPane scrollPane = new JScrollPane(table);
               add(scrollPane, BorderLayout.NORTH);
     public static class button extends JButton implements ActionListener {
          JButton btn;
          Integer numb = 1;
          public button() {
               btn = new JButton("Change");
               btn.addActionListener(this);
               add(btn);
          public void actionPerformed(ActionEvent e) {
               if (e.getSource() == btn) {
                    panel.createBrowseInterface(numb);
                    numb++;
     public static class panel extends JPanel {
          public panel(Integer a) {
               setLayout(new BoxLayout(this, BoxLayout.LINE_AXIS));
               JPanel leftPanel = new JPanel();
               leftPanel.add(new button());
               JPanel rightPanel = new JPanel();
               rightPanel.add(new TableDemo(a));
               add(leftPanel);
               add(rightPanel);
          public static void createBrowseInterface(Integer numb) {
               panel bi = new panel(numb);
               bi.setVisible(true);

Similar Messages

  • Simple JTable questions

    when a resultset returns 20 columns
    say column1, column2, ...column20.
    and if we need to diaplay
    column1, column7, column8, column19, column20
    how to do this.

    in otherwords, i am trying to find out if its possible to do like this.
    "6th column returned from a resultset should go in column2 in jtable",
    "6th column returned from a resultset should go in column1 in jtable"

  • Simple/silly question: how do I set/change default font/color for outgoing mail messages?

    Simple/silly question: how do I set/change default font/color for outgoing mail messages?

    Just a suggestion..........
    Download Thunderbird.  Easier to use when it comes to what you want to do w/your emails. 

  • 4 Simple Flash Questions that Are Stumping Me!

    What is the Frame Rate for Web Animations
    Q1. I am making an animation which will be played on the web. What is the default frame rate (fps) of Flash CS5? And what is the frame rate of for web?
    Q2. My animation needs to be 30 seconds long. So at 15 fps that would mean I need to use 600 frames in Flash?
    How Do I Mask everything so all I see is the Content on the Stage?
    I have a wide image that extends past my movies stage size so when I preview my movie the image is visible. How do I mask out anything that extends past my movies window size? I believe I can create a layer named "mask" and place it above all other layers, but I forget how to make the mask. Any help is appreciated.
    How to Fade a Graphic
    I have a graphic element (some type) and I want it to fade from 0% to 100%. In older versions of Flash I could just select the symbol and then set it's alpha value to 0%, move a few keyframes and then set the alpha to 100%. Voila! but now it doesn't seem to work that way. How can I do this in CS5?

    Ned, it says 24 fps which means there is 24 frames per second so each 24 frames is 1 second.
    Date: Fri, 4 Nov 2011 05:35:16 -0600
    From: [email protected]
    To: [email protected]
    Subject: 4 Simple Flash Questions that Are Stumping Me!
        Re: 4 Simple Flash Questions that Are Stumping Me!
        created by Ned Murphy in Flash Pro - General - View the full discussion
    1 You can create your character as a movieclip and copy/paste that movieclip from one file to another. 2. One way to create a movieclip is to copy all the frame of the animation's timeline (select them all, right click the selection, choose Copy Frames), then create a new movieclip symbol (Insert -> New Symbol...etc) right click on its only keyframe and chhose Paste Frames.  THat will put all the layers and frames you copied into the movieclip The only way to come close to being certain about the timing of you animation is to use code to keep track of the time, something like getTimer()..  The frame rate that a file plays at is not a reliable means of dictating the time it takes due to a variety of factors which include the amount of content you are trying to process and performance limits of the user's machine.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4007420#4007420
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4007420#4007420. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Flash Pro - General by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Simple performance question

    Simple performance question. the simplest way possible, assume
    I have a int[][][][][] matrix, and a boolean add. The array is several dimensions long.
    When add is true, I must add a constant value to each element in the array.
    When add is false, I must subtract a constant value to each element in the array.
    Assume this is very hot code, i.e. it is called very often. How expensive is the condition checking? I present the two scenarios.
    private void process(){
    for (int i=0;i<dimension1;i++)
    for (int ii=0;ii<dimension1;ii++)
      for (int iii=0;iii<dimension1;iii++)
        for (int iiii=0;iiii<dimension1;iiii++)
             if (add)
             matrix[i][ii][iii][...]  += constant;
             else
             matrix[i][ii][iii][...]  -= constant;
    private void process(){
      if (add)
    for (int i=0;i<dimension1;i++)
    for (int ii=0;ii<dimension1;ii++)
      for (int iii=0;iii<dimension1;iii++)
        for (int iiii=0;iiii<dimension1;iiii++)
             matrix[i][ii][iii][...]  += constant;
    else
    for (int i=0;i<dimension1;i++)
    for (int ii=0;ii<dimension1;ii++)
      for (int iii=0;iii<dimension1;iii++)
        for (int iiii=0;iiii<dimension1;iiii++)
           matrix[i][ii][iii][...]  -= constant;
    }Is the second scenario worth a significant performance boost? Without understanding how the compilers generates executable code, it seems that in the first case, n^d conditions are checked, whereas in the second, only 1. It is however, less elegant, but I am willing to do it for a significant improvement.

    erjoalgo wrote:
    I guess my real question is, will the compiler optimize the condition check out when it realizes the boolean value will not change through these iterations, and if it does not, is it worth doing that micro optimization?Almost certainly not; the main reason being that
    matrix[i][ii][iii][...]  +/-= constantis liable to take many times longer than the condition check, and you can't avoid it. That said, Mel's suggestion is probably the best.
    but I will follow amickr advice and not worry about it.Good idea. Saves you getting flamed with all the quotes about premature optimization.
    Winston

  • A few simple Logic questions...please help.

    I have a few probably simple Logic questions, that are nonetheless frustrating me, wondering if someone could help me out.
    1. I run Logic 8, all of the sounds that came with logic seem to work except organ sounds. I can't trigger any organ sounds (MIDI) on Logic, they won't play. I have a Yamaha Motif as my midi controller.
    Any idea why?
    2. I've starting running into a situation where I will record a MIDI track, the notes are recorded but they won't playback. The only track effected is the one that was just recorded. All other midi tracks playback.
    I have to cut the track, usually go out of Logic and back in, re record for it to playback properly. Any idea why this may be happening?
    3. How important is it to update to Logic 9. Are there any disadvantages down the road if I don't upgrade. If I purchase the $200 upgrade, do I get a package of discs and material, or it just a web download.
    Any help is appreciated!
    Colin

    seeren wrote:
    Data Stream Studio wrote:
    3) You get a full set of disks and manuals.
    They're including manuals now?
    I think his referring to the booklets ...on how to install etc
    It would be great to see printed manuals though ...I love books especially Logic/Audio related !!
    A

  • Simple Quick Question

    wrong section, post was moved.
    Message was edited by:
    Rob17

    you titled "simple quick question"...
    .. complicated to answer..
    a) the TermsOfUse of the iTS don't allow any processing of purchased files, these are "copy protected"..
    b) iM has a voice-over function..
    c) iM is a video-edit app.. easy to use... just learn to handle it...
    d) iM allows to "extract" audio (=muting the original audio, adding your own..)
    e) to learn iM, spend some time here: http://www.apple.com/ilife/tutorials/imovie/index.html
    f) use pencil and paper first! WRITE and scribble, what shall happen when in your movie/parody... make a script, draw a storyboard .. THEN launch iM.. in other words: think first, then edit.. iM is just a tool, it does not "create"... Picasso needed a papertowel and half a stencil to create art....
    g) to get comfortable with iM, start with your own, small, short (3min!) project... import some stills, edit them, add a funny voice-over, add sounds, add music... good? make a bigger one...
    h) .. in our Lecture II, we teach you how to import shows from TV, youtube, wherever..
    standard disclaimer:
    be nice to ©opyrights ...

  • Simple query question

    hi all,
    I have a XMLType table with one column - I have presently one row, in my column xmlsitedata I have stored one large xml file.The schema definition is given below:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <xs:schema elementFormDefault="qualified" attributeFormDefault="unqualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    - <xs:element name="siteList">
    - <xs:complexType>
    - <xs:sequence>
    <xs:element name="site" type="siteType" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    - <xs:complexType name="siteType">
    - <xs:sequence>
    <xs:element name="nameEn" type="xs:string" />
    <xs:element name="nameFr" type="xs:string" />
    </xs:sequence>
    <xs:attribute name="code" type="xs:string" />
    </xs:complexType>
    </xs:schema>
    I have executed the query below:
    select x.XMLSITEDATA.extract('/siteList/site/nameEn/text()').getCLOBVal() "stName" from wsitelist x;
    and I get all english names of some 200 locations, however, there is 1 row selected and all names show up on one row. How do I split them into 200 or whatever rows?
    Thanks,
    Kowalsky

    Have a look at the answer provided in the following thread.
    very simple XML question
    This may solve your problem.
    use xmlsequence.
    Alvinder

  • Rephrasing of JTable question

    Ok, I'm going to rephrase a question I put up pretty poorly about JTables. This is what how I see it. I wanted to create a JTable with a button as the last column, a delete button that will allow you to delete that row. Sounds simple enough - I figured out how to add that last column, and how to create my own TableCellRenderers such that it rendered the last column as a button representation.
    Now my design question relates to the fact that the actual data, doesn't reside on the table...the actual data sits in another data object (a data array), and the table merely renders that information in a specific way. So when I hit the delete button, I really don't have a handle to the data, I need to somehow have an actionListener listening to that button which then sends a message to something else that is holding that data, and informs it to delete that item. The only way I see that is to pass a handle in the constructor of the TableCellRenderer of the actionListener which has a handle to the actual data. Is that how things are done? All this just so that an action performed on the Jtable looks like it's affecting the data itself?
    Correct me if I'm wrong, but it seems like the implementation of this JTable has it such that even though when I addRows to the JTable I am passing an actual object to the JTable. The JTable will just convert the object into textual information, and the handle of that actual object will be lost. In some ways it seems like it would have been better if that JTable kept a handle to the object passed into it from addRow(), so that if I ever said delete this row, I don't have to jump through hoops to find which data object is represented by that particular row and then have something else delete. Instead it would say "Ok, delete this row, which is really this object." Or maybe there is a reason that isn't done.
    Message was edited by:
    deadseasquirrels

    I read the post where you used the removeColumn method of the columnModel to remove the columns that you do not want to display. The way I understand it is that it is implementation of the MVC model, where the data is still there, but the Viewer aspect of the table just isn't displaying the data - and as you showed in your example, that gives more flexibility when you want to share a certain data table, but have it displayed differently.
    But it seems to me that the lines of code:
    columnModel1.removeColumn( columnModel1.getColumn( 4 ) );should really be sitting in either the tableModel class, or the renderer class. At this point that line of code, which defines which columns table1 or table2 should display just sits in the main object class. It seems to me that to be more robust in your tableModel definition, somewhere it should say "any table that uses this table model will have columns x, y, z removed from the columnModel." Instead by having that line of code just sitting outside of either a renderer class or a tableModel class that line could be anywhere, and it doesn't seem too robust. I guess I'm mentioning it, because I would like to put it in either the renderer class or my tableModel class (shown below), but I don't see how I can do that. If I can't do that perhaps you can shed some light as to why my understanding is flawed, and why they designed it in such a way that you can't - right now it seems like the tableModel class would be a great place to put a line of code like that.
    private DefaultTableModel filledTableModel = new DefaultTableModel(data, transactionCols){
    // Only allow button column to be editable, if there is an actual
    // button in that row          
        public boolean isCellEditable(int row, int col){
            return (col == CANCEL_COL && getValueAt(row, col) != "") ? true : false;
        // Overriden getColumnClass method that will return the object
        // class type of the first instance of the data type otherwise
        // returns the Object.class
        public Class getColumnClass(int column){
            for (int row = 0; row < getRowCount(); row++){
                Object o = getValueAt(row, column);
                if (o != null){ return o.getClass();
            return Object.class;
    };

  • Frustrated with simple JTable issue....very simple..aggghhhh

    I'm trying to create a JTable with currency fileds, and other types as well. It would display currency format but wipe off the dollar signs when the user edits the field and allow the user to enter numbers without dollar signs.
    I was able to do this for a textfield using the online tutorial but having problem creating it for a JTable.
    This is because the example that I'm using creates the table with its data hardcoded...I need to pass data to the table at runtime.
    If I mod the code's constructor to receive data and columnNames, I'd get a Null pointer error because the the first thing the constructor would try to getRowCount which it references ddata...data is not yet assigned a value.
    Here's the tutorial sample codes...
    public TableDemo() {
    JTable table = new JTable(new MyTableModel());
    class MyTableModel extends AbstractTableModel {
    private String[] columnNames = ...//same as before...
    private Object[][] data = ...//same as before...
    public int getColumnCount() {
    return columnNames.length;
    public int getRowCount() {
    return data.length;
    public String getColumnName(int col) {
    return columnNames[col];
    public Object getValueAt(int row, int col) {
    return data[row][col];
    public Class getColumnClass(int c) {
    return getValueAt(0, c).getClass();
    * Don't need to implement this method unless your table's
    * editable.
    public boolean isCellEditable(int row, int col) {
    //Note that the data/cell address is constant,
    //no matter where the cell appears onscreen.
    if (col < 2) {
    return false;
    } else {
    return true;
    * Don't need to implement this method unless your table's
    * data can change.
    public void setValueAt(Object value, int row, int col) {
    data[row][col] = value;
    fireTableCellUpdated(row, col);
    I just need to make this table NOT having the data and columnNames hardcoded...or if someone has some niffty currency edits...
    Thanks so much

    Your question still doesn't make any sense to me. From your last posting I suggested you should be using the DefaultTableModel, since you apparently don't understand how to write your own custom TableModel. The DefaultTableModel allows you to create a TableModel loaded with data or you can create an empty DefaultTableModel and add rows of data to it as required.
    I need to pass data to the table at runtime.Again you seem confused. What is the difference between hardcoding data and reading data from a file at runtime? None.
    The basic coding structure would be:
    a) create TableModel
    b) JTable table = new JTable( model );
    Create a method called createTableModel. In that method you either hardcode a table or add logic to read data from a file, read data froma database. It doesn't matter where the data comes from as long as you createTableModel method returns a TableModel.
    In your last posting I gave you a link to a simple working demo. Start with that as your base code and try to customize it. The code you posted here is useless. We can't solve problems based on a few lines of code.
    Here is another example showing how to add rows of data dynamicallly:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=577919
    Use the "code" tags any time you post code.

  • Simple Report Question

    Post Author: scott123
    CA Forum: General
    I want to take the information in a simple excel table and recreate it 3 times, each time sorting/grouping on a different columnHere is the tableAnd here is the report that I'm trying to generate (first sorted by name, alphabetically, then grouped by rank, then grouped by size) I'm comfortable working with excel tables in Crystal, but I'm running into a problem repeating the information and then sorting each group separately. I also have no problem doing each group in a single report (without repeating any records), but I'd like to include all 3 groups in a single report.  My apologies for how remedial this question is- I thought for sure that Crystal could do this easily but I've spent a couple of days on this and am running into a brick wall.

    Post Author: pandabear
    CA Forum: General
    That's right Scott, and maybe make them "on demand"
    sub reports so the user only has to see the data they
    really want at the moment.  Gives the report a nice clean look too.
    PB

  • A simple security question

    I'm trying to write a simple self-signed applet that use a jca provider but thi exception "java.security.SecurityPermission putProviderProperty.BC" is thrown. if I use a policy file, it works fine but for a beginner user is not very useful intall a new policy file.
    After this I tried to write a new self-signed applet that read a file and open a ServerSocket on port 21, and it work fine without a new policy file!
    My question is this: why is needed a policy file to add a provider and not to open a ServerSoket or read/write a file???????
    PS
    if u have an idea to resolve my problem without a policy file, tell me pls!!! IT'S URGENT!!

    An applet works out of a so-called sandbox. The security restrictions can be overcome in one of two ways that you have tried:
    1) by the use of a policy file, or
    2) by signing the applet
    So, to answer your question:
    My question is this: why is needed a policy file to add a provider and not to open a ServerSoket or read/write a file???????Since the applet is signed, there is no need for a policy file......if you tried to access the socket without signing the applet, you'll get the security exception!
    ;o)
    V.V.

  • A somewhat simple security question......

    If a mac running macosx has two separate user accounts, lets say one admin and the other a standard user, or both admins or both standard users.....
    Is it possible for a hacked/penetrated account on one of the users to affect or read any info from the other user on the same machine ?
    What application is in question; Safari lets say.....

    FLUIDNYC wrote:
    So, disable all scripts and uninstall all plugins from the browser.
    No java, No javascript, No plugins like flash, java, shockwave, quicktime, or adobe crap.
    So, no functionality. What about that java applet I need to run 10 hours a day. Do you think I should go out of business over it? Or all my QT movies? Or, deprive myself of Flash, so I can't view the content of websites?
    So, lets say you browse www.thissiteisinfected.com and have everything uninstalled (see above), and your smart enough to browse the web using a "STANDARD" user account and not the "ADMIN" user account.
    Running from a standard user buys you nothing and adds additional steps. If you want to download an app, before you install, you will get a dialog warn you "XXXX is an application you downloaded from the internet..." So, you still have to authenticate. And what about *all the apps that need no authentication to install?*
    You tell me how this website will inject crap into your MAC with the settings above???
    There is no way to FORCE CODE into your browser if everything is disabled.
    Tell me how it can "inject crap" into my "Mac" admin without my complicity.
    I have bumped into a rouge antivirus website while on my macbook using safari.
    All of a sudden a popup stated i had spyware, i could'nt close the box/window, I had to do a FORCE QUIT on SAFARI to get out of that page. It pretty much hijacked SAFARI.
    This is nothing that can harm you. It is annoying having to force quit over it, but that is all.
    My safari download settings place things on my desktop, sure enuff, there was a .EXE file sitting on my macbooks desktop.
    Sure enough, your Mac can't do a thing with it.
    NOTHING IS BULLETPROOF.
    I agree but there are simpler ways to plant a rootkit you overlook, that have nothing to do admin accounts or ports. *The question is, who would want to?* Even if a black hat is randomly hunting for bank account numbers, social security numbers, credit card numbers, etc. he would pass up a UNIX based system with good protections in place for an easier target.
    In short, in a home environment, I could never recommend running from a standard user. Especially if they are on a router and/or using OS X firewall. (The exception being if you have kids and want to use parental controls.) I have no idea how this mantra about using a non-admin account started, there is no place where Apple recommends this.
    -mj

  • Simple Query Question - How do I return the Last 3 records of a Table?

    Question.
    For example, I have a table that has 50 records.
    How do I, specify in SQL to only return the last 3 records of the table.
    Select a.* from table a where ????

    I was just trying to show an example to a friend on
    how something like this would work and if it was even possible. But it won't work. Here's a simple example:
    SQL> create table emp
      2  (id)
      3  as
      4  select object_id
      5  from   all_objects
      6  order  by object_id;
    Table created.
    SQL> select *
      2  from  (select rownum rn
      3               ,b.*
      4         from   emp b)
      5  where  rn > ( select (max(rownum) - 3)
      6                from    emp)
      7  ;
            RN         ID
         40830      55891
         40831      55892
         40832      55893So far, so good. These are the "last 3" rows inserted. Now delete a bunch of rows and insert 3 new ones:
    SQL> delete emp where id < 40000;
    33423 rows deleted.
    SQL> commit;
    Commit complete.
    SQL> insert into emp values (60000);
    1 row created.
    SQL> insert into emp values (60001);
    1 row created.
    SQL> insert into emp values (60002);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select *
      2  from  (select rownum rn
      3               ,b.*
      4         from   emp b)
      5  where  rn > ( select (max(rownum) - 3)
      6                from    emp)
      7  ;
            RN         ID
          7410      55891
          7411      55892
          7412      55893Here's the problem. Even though the "last 3 rows" are 60000 - 60002, I still get the same ones as the first query.

  • Simple Mail question (couldn't find Mail forum)

    Sorry to ask this on iCal forum, but I saw no forums dedicated specifically for regular Mail.
    This is a simple question as I am a new Mac owner: I am used to using gmail for my email, and like this primarily because, given that it is a web based email application, I can access my email from any computer, anywhere, anytime.
    Given my new Mac, I am interested in switching to the Mail application and was wondering if there is any way to check my email when I am away from my home computer? I think this would work with a mobileme account, but I have not obtained one as of yet.
    Any information would be greatly appreciated! Thanks...

    Thanks Kosmoe...
    One other question...if I do indeed create a new email account and use the Mail application for it, will I be able to check messages via the internet from any computer or only from my own?
    And, if I want to be able to check from any computer, then it seems like getting a mobile me account would solve the problem, right? I am assuming mobile me email can be accessed from anywhere?
    Sorry to be such a Mac newbie! But so far loving the whole Mac experience!

Maybe you are looking for

  • How can I set an alarm clock set to a time zone?

    Hi, I am about to go traveling quite a bit in multiple time zones. However, I have to take medication every 24 hours. I use the iPhone alarm to set a time. Is there a way I can adjust it so it goes off whenever it is, say 10pm in US eastern time zone

  • Outbound Delivery Porblem

    Hello Experts, I have created outbound delivery in ERP using transaction vl01no. I am not able to get that outbound delivery in corresponding EWM system. Please let me know whether it is configaration problem or integration problem. Thanks in advance

  • My iphone 5 doesnt sink to my itunes

    I cant get my new iphone5 to sink up with my itunes. it said that i need to upload the new itunes and I did . now its saying that my softwear is to old on my comupter

  • Can Jtable column preferences be preserved?

    Hi, I re-ordered my JTable columns and removed/added a few. However, this gets overwritten as soon as I perform another search. Can column preferences be preserved for for a particular user? Thanks, Samba.

  • L505D-S5965 BIOS not fully ACPI compliant

    Okay, I tried to reply to "BIOS Update Failure Satellite L505D-S5965" since my issue is similar and I have the same model, but that issue is closed so it wouldn't let me. A couple weeks ago I was picking up my laptop and it slipped out of my fingers