Fill JComboBox with Vector from database

Hi there,
I have a problem with filling a JComboBox with data from a database. I can print the data in the console, but it seems to be impossible to do it in a ComboBox ...
I tried this:
* To change this template, choose Tools | Templates
* and open the template in the editor.
*package client;*
*import data.Raum;*
*import data.RaumImpl;*
*import java.net.MalformedURLException;*
*import java.rmi.Naming;*
*import java.rmi.NotBoundException;*
*import java.rmi.RemoteException;*
*import java.sql.SQLException;*
*import javax.swing.JComboBox;*
*import javax.swing.JFrame;*
*import java.util.Vector;*
*import verwaltung.*;
import server.DraServer;
* @author philipp
public class ComboBox extends JFrame
    ComboBox(String title) throws RemoteException, SQLException, NullPointerException, MalformedURLException, NotBoundException {
    super(title);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    DraVerwaltung verwaltung = (DraVerwaltung) Naming.lookup ("rmi://localhost/DRA");
    System.out.println("Remote object created...");
    Vector raeume = verwaltung.RaumAusleser();
    Raum r;
    for (int i = 0; i < raeume.size(); i++)
        r = (Raum)raeume.elementAt(i);
//      System.out.println ("Raum: " + r.getRaumname());
//      System.out.println ("Raumid: " + r.getIdRaum());
     JComboBox jcb = new JComboBox(r.getRaumname());
    getContentPane().add(jcb);
    setSize(200, 50);
    setVisible(true);      
  public static void main(String[] args) throws RemoteException, SQLException, NullPointerException, MalformedURLException, NotBoundException {
    new ComboBox("Test");
}In this case I get the following for JComboBox (line 44):
"cannot find symbol
symbol: constructor JComboBox(java.lang.string)
location: class javax.swing.JComboBox"
I tried:
-> change "JComboBox jcb = new JComboBox(r.getRaumname());" to "JComboBox jcb = new JComboBox(raeume);"
then I got the JComboBox, but with ... I don't know how to describe the content. It seems like a (very long) reference.
All other tries can't be tested, because I got the problem with constructor again.
I'm happy for an early response.
Regards

Now, it works!
It looks like that:
* To change this template, choose Tools | Templates
* and open the template in the editor.
package client;
import data.Raum;
import data.RaumImpl;
import java.net.MalformedURLException;
import java.rmi.Naming;
import java.rmi.NotBoundException;
import java.rmi.RemoteException;
import java.sql.SQLException;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import java.util.Vector;
import verwaltung.*;
import server.DraServer;
* @author philipp
public class ComboBox extends JFrame
    ComboBox(String title) throws RemoteException, SQLException, NullPointerException, MalformedURLException, NotBoundException {
    super(title);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    DraVerwaltung verwaltung = (DraVerwaltung) Naming.lookup ("rmi://localhost/DRA");
    System.out.println("Remote object created...");
    Vector raeume = verwaltung.RaumAusleser();
    Raum r = new RaumImpl();
    Vector vJcb = new Vector();
    for (int i = 0; i < raeume.size();i++){
        r = (Raum)raeume.elementAt(i); 
        vJcb.add(r.getRaumname());
    JComboBox jcb = new JComboBox(vJcb);
    getContentPane().add(jcb);
    setSize(200, 50);
    setVisible(true);     
    public static void main(String[] args) throws RemoteException, SQLException, NullPointerException, MalformedURLException, NotBoundException {
       new ComboBox("Combo box Demo1");
}Thanks in advantage to all!

Similar Messages

  • Filling checkboxes with data from database

    Hello.
    I need help setting a checkbox value to checked if the corresponding field has "Yes" saved in the database.
    I can do this with textboxes, but haven't figured out how to do it with checkboxes or drop down lists.
    If you can help, please do.
    Thanks.

    In all honesty, problems like this is why programmers tend to make more money than web developers. :) You more or less need to figure out what you want to happen, and then write the code to make that happen. Let me give you an example...
    Let's say we're building a web site that requires people to register and then log in. When they register, they get a checkbox where they can opt in for spam. We've decided to store the user's preference in a database, essentially a field called spam which contains either a "yes" or a "no" value. When the time comes to send out those emails, we simply select all records in the database where that spam field is set to "yes".
    So far, so good.
    If the user decides to check that opt-in checkbox, then we want to set the spam field to "yes". If he already exists in the database, we can use an SQL update statement to set the field. If he doesn't exist, we'll have to create a record for him and set all relevant fields with an insert statement. If he unchecks the box (or leaves it unchecked), then we want to do the same thing but make sure the spam field is set to "no".
    When the user clicks on the submit button, the checkbox is submitted (or not) to the server as one of the parameters. We simply parse the parameters, see if the checkbox was checked or not, then write a little bit of JSP (or Java) code that sends the appropriate SQL statement as above, to the database.
    That's the basic concept.
    There are many slight variations. For example, several web sites will fill in that opt-in checkbox by default every time you visit their site, and you have to uncheck it if you don't want spam. The logic remains the same - just write a little bit of code that sees if the form passed you the checkbox filled in, and then either fill in, or erase the corresponding field in the database.
    (I'm not bothering to add code here because there are many ways to do this, and which way is best really depends on what code college_amy has written so far.)

  • How to fill bean area with values from database

    i have a bean area in form which act as acombobox autocomplete , i want to fill it with dynamic values from database , any help will be appreciated.
    http://forms.pjc.bean.over-blog.com/article-16369664.html "this is the example i'm working on"
    Best Regards.

    An example with the EMP table:
    DECLARE
      cursor cur is select empno,ename from emp;
    BEGIN
      -- initialise the ComboBox twin values --
      for c in cur loop
       if c.empno is not null then
        Set_Custom_Property('BL.BEAN',1,'ADD_TWIN',c.empno||','||c.ename);
       else
        Set_Custom_Property('BL.BEAN',1,'ADD_TWIN_NULL',c.empno||','||c.ename);
       end if ;
      end loop;
      Set_Custom_Property('BL.BEAN',1,'ADD_TWIN','[END_DATA]');
      Set_Custom_Property('BL.BEAN',1,'SET_ALIGNMENT','right');
    END;Francois

  • Fill in a vector from one class to another

    I have created two classes for my database to request the Ids and names respectively.
    I have called the first class category where you can retrieve the Id, name
    and I have created a constructor with a Vector argument to retrieve from there the property values.
    package model;
    import java.io.Serializable;
    import java.util.Vector;
    public class Category implements Serializable{
    private int categoryid;
    private String categoryname;
    private Vector properties;
    /** Creates a new instance of Theme */
    public Category() {
    public Category(Vector properties){
         this.properties = properties;
    public Category(int categoryid, String categoryname){
         this.categoryid = categoryid;
         this.categoryname = categoryname;
    public int getCategoryId() {
         return categoryid;
    public void setCategoryId(int id) {
         this.categoryid = categoryid;
    public String getCategoryName() {
         return categoryname;
    public void setCategoryName(String name) {
         this.categoryname = categoryname;
    public void addProperty(Property prop){
         properties.add(prop);
    public Vector getProperties(){
    return properties;
    Here is the property class
    public class Property implements Serializable{
    private Integer id;
    private String name;
    public Property(){
    public Property(Integer id, String name) {       
    this.id = id;
    this.name = name;
    public Integer getId() {
         return id;
    public void setId(Integer id) {
         this.id = id;
    public String getName() {
         return name;
    public void setName(String name) {
         this.name = name;
    The property in my database are certain divisions of categories
    The thing is how I could fill in the Vector of category class with the values of properties. for instance how I could retrieve the name and the Id of the property from the category class
    I have created a function to do this but it certainly does not work as I want
    public static Hashtable getCategoryPropertyValues(){
    Hashtable hashing = new Hashtable();
    Vector result = new Vector();
    String query = "SELECT Id, PropertyName FROM categoryproperties WHERE CategoryId = '1'";
    Vector vect = ServerServlet.db.Execute(query);
    Category cat = new Category();
    for(int i = 0; i < vect.size(); i++){
    HashMap row = (HashMap) vect.get(i);
    String Propertyname = (String)row.get("PropertyName");
    Integer id = (Integer)row.get("Id");
    Property ct = new Property(id.intValue(), Propertyname);
    hashing.put(id.intValue(), ct);
    return hashing;
    then from the servlet I iterate the hashtable to get the values and then I try to fill in the Vector with the property values.(Queries is another class that Iam using to execute the SQL queries)
    Hashtable properties = null;
    properties = Queries.getCategoryPropertyValues();
    Enumeration en = properties.elements();
    Category cat = new Category();
    while(en.hasMoreElements()){
    Property pro = (Property)en.nextElement();
    cat.addProperty(pro);
    out.print(cat.getProperties());
    This certainly does not work. Please if you could help here a littlebit I would be more than grateful.

    Show Layout is only for seeing the objects in your document.
    The two modes of document are now distinguished by having:
    Setup > Document > Document Body checked or unchecked
    Checked is equivalent to the old Word Processing mode
    Unchecked is equivalent to the old Layout mode where there is no default text flow form page to page.
    select the Table > Side Panel > Format > Arrange > Object Placement > Move with Text > Text Wrap > Inline with Text
    The table flows from page to page just like it did in Pages '09 complete with repeating Header row.
    Peter

  • How to populate Adobe LiveCycle Designer generated  PDF Forms with data from Database in Windows app

    Hi
    I have a PDF template designed in Adobe LiveCycle Designer. This template has form fields which needs to be filled with data programmatically. I am using windows application in C#.Net 2005 in which I want to retrieve data from database and merge this data into PDF form in respective fields.
    How this can be achieved?
    I searched a lot & I found that we can process the XDP file generated from PDF to acheive this. I created the XDP file out of the PDF template created in designer. But I don't know how to merge data from database into that XDP file in respective fields and again convert this XDP file back to PDF programmatically. Can anybody help me ? This is urgent.
    Thanks in advance.
    Sambhaji

    Please ignore the above code.<br />The following one is correct one.<br />using System;<br />using System.Data;<br />using System.Configuration;<br />using System.Web;<br />using System.Web.Security;<br />using System.Web.UI;<br />using System.Web.UI.WebControls;<br />using System.Web.UI.WebControls.WebParts;<br />using System.Web.UI.HtmlControls;<br />using System.Text;<br />public partial class _Default : System.Web.UI.Page <br />{<br />    protected void Page_Load(object sender, EventArgs e)<br />    {<br />        Response.ContentType = "application/vnd.adobe.xdp+xml";<br />        StringBuilder responseString = new StringBuilder();<br />        responseString.Append("<?xml version='1.0' encoding='UTF-8'?>");<br />        responseString.Append("<?xfa generator='AdobeLiveCycleDesigner_V8.0' APIVersion='2.5.6290.0'?>");<br />        responseString.Append("<xdp:xdp xmlns:xdp='http://ns.adobe.com/xdp/'>");<br />        responseString.Append("<xfa:datasets xmlns:xfa='http://www.xfa.org/schema/xfa-data/1.0/'>");<br />        responseString.Append("<xfa:data>");<br /><br />        responseString.Append("<form1>");<br />        responseString.Append("<TextField1>Homer</TextField1>");<br />        responseString.Append("<TextField2>Simpson</TextField2>");<br />        responseString.Append("<field name ='DropDownList1'>");<br />        responseString.Append("<items save='1'>");<br />        responseString.Append("<text>1</text>");<br />        responseString.Append("<text>2</text>");<br />        responseString.Append("<text>3</text>");<br />        responseString.Append("</items>");<br />        responseString.Append("</field>");<br /><br />        responseString.Append("</form1>");<br /><br />        responseString.Append("</xfa:data>");<br />        responseString.Append("</xfa:datasets>");<br />        responseString.Append("<pdf  href='C:\\Test.pdf' xmlns='http://ns.adobe.com/xdp/pdf/' />");<br />        responseString.Append("</xdp:xdp>");<br /><br />        Response.Write(responseString);<br />        Response.Flush();<br />        Response.End();<br />    }<br />}

  • Load interactive pdf with data from database

    I am trying to understand our options for loading database data into an interactive pdf..?   Some of the data is not stored in the database and needs to be manually entered by the user in the interactive pdf.
    Here is the interactive pdf I'm working with:
    http://www.dcma.mil/dcman/NPP/files/dd1149.pdf
    As I understand it, there are 2 options:
    1.  Create an xml file from the database data.   Users can manually import this xml file into this existing interactive pdf and then manually add the additional data, and save the interactive pdf.
    Would users need to use Adobe acrobat Standard or Pro edition to import the xml data?
    2.  Create a XFA PDF form that's made with LiveCycle Designer.   Can this method create an interactive pdf so that users can enter additional data later and save the pdf?  
       What adobe products are required to use this method?
    thanks for any assistance..
    -D

    Yes,using LiveCycle you could accomplish this easily.Once you have your invoice form ready based on predefined XSD, you can easily update the form data by fetching the values from database using JDBC operation.Also you could email this updated form using Email service.
    Thanks,
    Wasil

  • Programmatically generate password for pdf with data from database

    Good day everyone,
      I would like to know is it possible to programmatically generate passwords for pdf??
    The main idea is to enable an automated process of pdf acquiring individualised password from a database (Excel, Access, you name it) and finally sending the pdf to individual recipient. Can I use javascript for this? And if yes, how?? If not, pls do advice me on the appropriate steps.
    Background (for clarity's sake): 
      Currently I am working on developing an automated process for the sending customised, password encrypted payslip to about 80 staff. The entire procedure is pretty much summarized as below:
    mail merg (UBS output in) excel to words -> convert words to pdf -> programmatically password encrypt the pdf -> email to individual recipients.
    Well my current status is - I am quite done with the batch mail merge and convertion part. And batch proccessing of password encryption is not a problem, but the idea is to allow acrobat to retrieve password automatically from a database and not key-in each and every password manually. The batch email for now is another problem but for now I have to work stepwise. (Any ideas on how to do it would equally be valued though! =D)
    System and software using:
    Windows  XP and 7 Professional
    Microsoft Office Proffesional 2010
    Adobe Acrobat X Pro
    I would be really grateful for any relevant replies to my question and any additional thoughts or ideas are welcome!!
    I would to thank any potential saviour in advance!
    Thank you for helping!

    Basically I need to automate the password generation from database extract
    e.g. Excel database with StaffID, StaffName, PayMonth, etc. Then when the pdf is created, its password would be <StaffID>_<PayMonth> which is extracted from excel.
    Is it possible for this to happen?? I dont mine using Javascript, I'll just have to learn it.
    Or how about recommending a program which does that??
    Whichever is fine as long there's a solution!
    Thanks!

  • Constructing Jtree with data from Database

    Hi
    I am new to JTree and I need some help. My problem goes like this. I have a table in the data base which has data like Folder_Nr, Folder_Name, Folder_Prev_Nr, Folder_Typ_Nr, Folder_Access.
    If the Folder_Nr is 1 and folder_prev_nr =0, then it is a root folder and if folder no is 3 and folder_prev_no is 1 then it is a sub folder of the Folder_Nr 1. and so on is the data. I need to present all these folders in a JTree and be able to dynamically add and delete folders.
    It will be of great help if anyone can provide me with some lead or some source code.
    Thanking u in advance
    BalaaP

    Yes,using LiveCycle you could accomplish this easily.Once you have your invoice form ready based on predefined XSD, you can easily update the form data by fetching the values from database using JDBC operation.Also you could email this updated form using Email service.
    Thanks,
    Wasil

  • Problem populating html form fields with data from database.

    I'm using a straight forward piece of code to populate a form with data from a database, to create and 'edit record' page. The code is as follows;
    TO RETREVE THE DATA FROM THE DATABASE;
         $query = "SELECT * FROM $table WHERE newsletter_id = '$newsletter_id'" ;
         mysql_select_db($database) ;
         $result = mysql_query($query, $connect);
         $numRows = mysql_num_rows($result);
         $dbnewsletter_title = mysql_result($result,$i,'newsletter_title');
    TO POPULATE THE FORM FEILD;
    <tr>
              <td width="140"><p class="admin">Newsletter title</p></td>
              <td><input name="newsletter_title" type="text" <? print "value=$dbnewsletter_title";}?> /></td>
            </tr>
    However, when I view the page, the string shows in the text feild, but seems to be split at the point of the first space. So basically only the first word of the string shows in the text field. If I try to print '$dbnewsletter_title' outside of the table, the string is shown in full as it should be.
    Does anyone know what is causing this problem?
    Many Thanks

    Put the value in quotes:
    <?php print "value='$dbnewsletter_title'"; ?>

  • Dynamically fill area with words from list

    hello all,
    i would like to fill the entire area of a flash movie with
    words.
    the movie starts out blank, but as time goes on the visible
    area fills with words from a pre-written list.
    ideally, the height and width of the words is randomized
    within a range i determine.
    i wouldn't mind being pointed to a tutorial that shows how to
    fill an area with randomly-sized rectangles, that might help.
    eventually, i want to be able to control the speed of the
    area being filled with an input device (mouse or external sensor)
    but first things first!
    am using flash 8.
    thank you,
    aya.

    You may want to check this out. It fills a space with words
    and keeps filling the empty space. I'ts open source so you can take
    peak inside.
    http://www.levitated.net/daily/levEmotionFractal.html

  • How to popluate a managed bean (not backing) with lookup from database

    Using ADF Faces/BC Jdev 10.1.3
    I'm trying to figure out how to populate a userInfo session bean with data from the database. When the userInfo bean instantiates I just need to look up a default directory by the logonId in a users table. Seems simple enough. How can I get to the view model when I don't have a binding (like in a backing_bean)? I've tried to put the data in the am prepareSession method (using getDBTransaction().getSession().getUserData().put("DownloadDirectory",
    userRow.getDownloadDirectory()), but doesn't seem like I can get to this info.
    Thanks,
    Doug

    Hi,
    a backing bean is not required to create a binding in ADF. For the JSP or JSPX page you display when creating the user session infromation, you can create a pagdedef file and create a rowset iterator for the view object you get the user infromation from. This can be accessed from a managed bean using teh "bindings" object
    Frank

  • Problem with IMPORT FROM DATABASE

    Hello Members,
          I have a program which reads content of INDX table (cluster table) using
    IMPORT tab = lt_ccris1 FROM DATABASE indx(xa) TO wa_indx CLIENT
    sy-mandt ID 'DETAILLIST'.
    sy-subrc return is 0.
    But internal table lt_ccris1 is not populated. I expect entries to be populated here as there is an raw data entry in the INDX - CLUSTD field of database.
    1)   Also I am intereseted to knoe where is the data exported to this INDX table? Usual searches does not show any export statement.
    2)   Is there a FM which can directly read content of INDX table?
            Your help is much appreciated.

    Hi Thomas,
        Thanks for the reply.
    //How do you know your IMPORT syntax must look exactly like this? //
    I did not write this custom report and IMPORT statement is exactly the same as I have given. It is correct as per syntax.
    In SE16 INDX does contain an entry for the given key.
    I searched for EXPORT stmt in varall ways including debugging (Please note there is a SUBMIT <program> before IMPORT and if at all there is an export it should be in there). Could not find from debugging as well.
    RS_ABAP_SOURCE_SCAN does not exist in my 4.7.
    Regards
    Ram

  • Combo filled with data from database

    i want to display the list of schemas dynamically in a combo box and then display the tables in that schema. i tried a servlet; but the schemas are not displayed.
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.net.*;
    import java.sql.*;
    public class try extends HttpServlet
         public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
         PrintWriter out;
         res.setContentType("text/html");
         out = res.getWriter ();
         try
         out.println("<html>");
         out.println("<head>");
         out.println("<script language='javascript'>");
         out.println("function one()");
         out.println("{");
         out.println(" ResultSet rs=st.executeQuery('select distinct owner from all_tab_columns')");
         out.println("while(rs.next())");
         out.println("{");
         out.println("var newElement=document.createElement('option')");
         out.println("newElement.value=rs.getString(1)");
         out.println("document.form1.table1.options.add(newElement))");
         out.println("}");
         out.println("}");
         out.println("</script>");
         out.println("</head>");
         out.println("<body>");
         out.println("<form name=form1 action=http://mysystem:9000/servlet/query method=post>");
         out.println("Schema name");
         out.println("<input type=textbox name='user'><br>");
         out.println("Password");
         out.println("<input type=password name='pwd'><br>");
         System.out.println("Password");
         out.println("Table Name");
         DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
         Connection m_connection;
    m_connection = DriverManager.getConnection("jdbc:oracle:thin:@mysystem:1521:oracle8","scott","tiger");
         Statement st=m_connection.createStatement();
         System.out.println(st);
         out.println("<select name='table1' onFocus=one();>");
         out.println("<option value=' '>");
         out.println("</option>");
         out.println("</select>");
         out.println("<br>");
         out.println("<input type=submit>");
         out.println("</form>");
         out.println("</body>");
         out.println("</html>");
         }catch(SQLException s){
              out.println("Trial");
         catch(java.lang.Exception x){ }
    }

    If you're wanting to get data back from the database you're actually going to have to execute a query. The Statement:out.println(" ResultSet rs=st.executeQuery('select distinct owner from all_tab_columns')"); will print out the query you wish to run, showing it to the user, but it won't execute it.
    Try instead:
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Connection m_connection;
    m_connection = DriverManager.getConnection("jdbc:oracle:thin:@mysystem:1521:oracle8","scott","tiger");
    Statement st=m_connection.createStatement();
    out.println("<select name='table1' onFocus='one();'>");
    ResultSet rs=st.executeQuery("select distinct owner from all_tab_columns");
    while(rs.next()){
    String val = rs.getString(1);
    out.println("<OPTION VALUE='" + val + "'>" + val + "</OPTION>";
    rs.close();
    st.close();
    out.println("</select>");

  • Oracle JAAS with roles from database tables and Oracle SSO integration

    I have the following requirement for user authentication and authorization. The applications are build using ADF Faces and BC4J. User authentication should be done using Oracle SSO. User roles and functions will be stored in custom tables. These roles will be used on ADF application pages to restrict access to the UI components on a page. Example: User will "Employee" role cannot create a new employee; however, user with "HR" role can create a new employee.
    In this case, "Create" button will be visible on the ADF page.
    1. How can we use Oracle JAAS to use custom tables for roles instead of using flat XML files?
    2. How does ADF applications use these roles to restrict components on a page?
    3. For authentication, I guess we should be able to use SSO and integrate with Oracle JAAS?
    Thanks.

    Hi,
    I can give you the answers to 1 and 2 but haven't tried 3.
    1) Oracle OC4J since 10.1.3.1 has a database LoginModule that is explained in the OC4J security guide.
    I have a how-to document in review that will be published probaby next week and that explains how to set this LogiNModule up for JDeveloper and stand alone OC4J, though the OC4J documentation is pretty good as well
    http://download-west.oracle.com/docs/cd/B32110_01/web.1013/b28957/loginmod.htm#BABCDDAI
    2) Create a managed bean with boolan methods like isUserManager, isUserEmployee, isUserTechnician etc. In this methods check for the security role on teh request object's isUserInRole() method. Then access this methods from the disabled or rendered property using ExpressionLanguage
    A custom Login ModuleDoesn't use Oracle JAAS but plugs into it. So I am not sure if SSO would work with this because the custom LoginModule wouldn't get a username password pair but only a username that it has to trust.
    Frank

  • Generate report with data from database package

    Hi
    Is it possible to generate a report where the values come from an oracle database package instead of from an sql query declared in the report itself?
    If yes, how is it done?
    Appreciate any help. Thx.

    Hi,
    You can use REF CURSORs to generate reports from a database package.
    For information about REF CURSORs, please see Chapter 40 'Building a Paper Report with REF CURSORs' of the Oracle Reports Building Reports manual.
    This chapter is at:
    http://download-uk.oracle.com/docs/html/B13895_01/orbr_refcur.htm#i1011693
    Hope this helps.
    Regards,
    Panna

Maybe you are looking for

  • Ipod to tv mirror

    is there a cabel that mirrors the ipod screen to the tv

  • Images darken after editing in both Lightroom and PS

    My apologies if this topic has been recently addressed, I've canvassed both Adobe's online documentation as well as several archival pages of this thread without finding mention of it. I'm shooting JPEGs on a D70, importing them in Lightroom. LR has

  • Queries on Modelling,Extraction

    Hi BW Guys,                     I have one query on modelling that is 1) If we have 50 characteristics in a cube,how many dimensions we will create,suppose we created 10 dimensions,how would you arrange the characteristics ?  Would you give any prefe

  • I've downloaded icloud for windows, what info from my pc merges with my iphone?

    I've downloaded icloud for windows, what info from my pc merges with my iphone when I sync?

  • Problem with t-code CS01 in BDC

    hi expert, i am working on t-code CS01. i need to upload master data. but in this while making BDC i am facing problem in first screen we have to enter 1. material number 2. plant 3. bom usage in second screen i want upload data upto 0150 item number