UML-problem...

Hello,
I have got a big UML-problem: I don't know how to code a simple association in Java. An
aggregation is very simple to realize, I just put a reference on the corresponding class,
like:
public class ClassA {
     ClassB cb = new ClassB();
public class ClassB {
Are association realized the same way ? If not can you give me a short example for a simple association ?
Thank you very much,
Findus

I believe what you've explained is in fact how you'd realize a simple association. Aggregation is typically realized using a collection.
Simple association:
ClassA is associated with ClassB
public class ClassA{
  ClassB cb = new ClassB();
Aggregation:
ClassA has 0 or more instances of ClassB
public class ClassA{
  //need a collection to hold 0 or more instanced of ClassB
  java.util.List cbList = new java.util.ArrayList();
}Hope this helps.

Similar Messages

  • UML Problems using JSE 8 EA

    Hi,
    I'm having "show-stopper" issues using the UML support in JSE 8 EA.
    I create a "Java Project with Existing Ant Script". The setup proceeds perfectly and creates Project_A.
    I then try to create a UML project:
    UML -> Java-Platform model by reverse engineering a Java project
    This is where the problems start.
    I choose Project_A on the options screen and press "Finish". It starts parsing files and then throws up a dialog with:
    "Two classes were found with the same qualified name of . The classes were found in the files:
    null
    null
    If you continue, the existing elements will be replaced with the elements just discovered during the reverse engineering process.
    Do you want to continue?"
    I have no idea what this dialog is trying to say...
    I check the "Don't ask me again" checkbox and press "Yes".
    It asks me the same question again... Actually it asks me the same question 90 some odd times because my project has 90 files...
    The it pops up another dialog with the following message:
    "Reference Problems:
    One or more project resources could not be found. Right-click the project in the Projects window and choose Resolve Reference problems to find the missing resources"
    The missing resources are:
    "Project_A" project could not be found
    "dir" project could not be found.
    The second problem occurs because I've created my Java project in a different directory from my sources. If I create them in the same directory, only the first problem occurs...
    After I resolve the references, I get a list of classes etc. But:
    1) None of the classes have attributes or operations.
    2) I can't see the parents or children of any class.
    3) Generating diagrams gives me diagrams of the package (or class) and no other information...
    Which means I can't use the UML functionality for reverse engineering at all unfortunately...
    Cheers,
    Allen

    - Created ant script for UMLTutorials Sample.zip :
    http://developers.sun.com/prodtech/javatools/jsenterprise/downloads/ea/jse8/learning/tutorials/uml_re/Sample.zip
    - Created new Java Project with existing ant script
    - Created new Java-Platform model by reverse-engineering a Java Project
    - Had the same null/null dialogs and references problem
    - But everything is OK after that. All classes have attributes/operations and diagrams created from it are just fine.
    Can you try it with this sample application?
    I'm gonna investigate those null/null dialogs more detailed...

  • Sun Java Studio Enterprise 8 UML Round Trip Engineering Problem on Linux

    Hi all,
    I know Linux is an unsupported platform but I thought I'd mention that the "Navigate to Source" context menu when trying to generate source from UML is missing.
    If you try to work through the "UML Modeling: Developing Applications" tutorial (http://developers.sun.com/prodtech/javatools/jsenterprise/learning/tutorials/jse8/uml_fe.html) on a linux box, everything goes to plan until step 3 "Choose Navigate To Source from the contextual menu" of the "Continuing Development Using Round Trip Engineering" section.
    I haven't tested it on Solaris but it definately appears on Windows.
    Cheers!
    Mike.

    I just tried on JDS3 Linux and I was able to complete this tutorial from the beginning to the end without any issue. I tried the Navigate to Source option on all classes from the project tree under the "bankpack" package node and source file for all classes were opened in the source editors. In fact, all UML quickstart tutorials have been tested and working as expected on all platforms including JDS3 Linux.
    Which Linux system are you having this problem on?
    Which JSE 8 build are you using (look at product line from Help->About, click on Detail tab)?
    Are you able to see "Navigate to Source" from the contextual menu for any other class from this tutorial?
    As Trey indicated in his response that the source must exist to have this menu option, do you see the corresponding source file generated in the Java project?
    Thanks,
    --Peter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • [ETL]Could you please help with a problem accessing UML stereotype attributes ?

    Hi all,
    Could you please help with a problem accessing UML stereotype attributes and their values ?
    Here is the description :
    -I created a UML model with Papyrus tool and I applied MARTE profile to this UML model.
    -Then, I applied <<PaStep>> stereotype to an AcceptEventAction ( which is one of the element that I created in this model ), and set the extOpDemand property of the stereotype to 2.7 with Papyrus.
    -Now In the ETL file, I can find the stereotype property of extOpDemand as follows :
    s.attribute.selectOne(a|a.name="extOpDemand") , where s is a variable of type Stereotype.
    -However I can't access the value 2.7 of the extOpDemand attribute of the <<PaStep>> Stereotype. How do I do that ?
    Please help
    Thank you

    Hi Dimitris,
    Thank you , a minimal example is provided now.
    Version of the Epsilon that I am using is : ( Epsilon Core 1.2.0.201408251031 org.eclipse.epsilon.core.feature.feature.group Eclipse.org)
    Instructions for reproducing the problem :
    1-Run the uml2etl.etl transformation with the supplied launch configuration.
    2-Open lqn.model.
    There are two folders inside MinimalExample folder, the one which is called MinimalExample has 4 files, model.uml , lqn.model, uml2lqn.etl and MinimalExampleTransformation.launch.
    The other folder which is LQN has four files. (.project),LQN.emf,LQN.ecore and untitled.model which is an example model conforming to the LQN metamodel to see how the model looks like.
    Thank you
    Mana

  • JDev 10g: Problem when generating database objects from UML diagram

    Hi,
    I have noticed following problem.
    I made some business components through UML diagrammer in 9.0.3. From the diagram I generated database objects. It worked fine.
    When I doing the same thing in 10g, the generation fails on several tables with the message that the "identifier is too long".
    Looking at the SQL produced in one of the failing tables. In 9.0.3 following is produced:
    create table sfs_document_def (
    id number constraint document_definition_id_check not null,
    caption varchar2(100) constraint document_definition_caption_ch not null,
    index1 number,
    owner_type number constraint document_definition_owner_type not null
    alter table sfs_document_def add (constraint documentdefinition_primary_key primary key (id));
    And in 10g following is produced:
    create table sfs_document_def (
    id number,
    caption varchar2(100) constraint sfs_document_def_caption_check not null,
    index1 number,
    owner_type number constraint sfs_document_def_owner_type_ch not null
    alter table sfs_document_def add ( constraint documentdefinition_primary_key primary key (id));
    alter table sfs_document_def add ( constraint document_definition_id_check check ("id" is not null));
    alter table sfs_document_def add ( constraint sfs_document_def_caption_check_10 check ("caption" is not null));
    alter table sfs_document_def add ( constraint sfs_document_def_owner_type_ch_10 check ("owner_type" is not null));
    It seems that column that are set not to be null in 10 g first get a constraint creating the table and then when altering the table. Furthermore, notice that the name of the second constraint is longer than 30 chars, which is reason to the error when creating the tables.

    Thanks for reporting the issue. I have managed to reproduce your problem and logged a bug to get the problem fixed.
    Thanks,
    Lisa Sherriff
    JDev QA

  • Display problems of UML diagrams

    Hi,
    I'm using UML class diagrams for a code generation, rev.eng. project etc.
    I experience display problems, the classes sometimes are not displayed correctly, or don't show up at all, after I changed something in the model.
    The classes have the package as background.
    My guess is a partly incorrect drawing order (from back to top).
    When I move the slidebar, or enforce a refresh by clicking the package,
    everything is drawn from scratch on, and therefore correct then.
    Project size: 50+ classes
    My first guess was to blame the system, but I'm having the same problems
    on a different computer.
    Thus, please also state if you have experienced the same problem.
    Gets a bit annoying over the time, when doing serious work.
    Greets

    This is a known issue with redrawing/repainting when the elements are containing the container, eg, package. Sorry for the inconvenience.

  • Has anybody really tried UML with JDeveloper ? many problems ..

    Hi,
    I am trying to do UML Class diagram then try to translate it to ADF Entity Object. I have many problems.. could any body please help me to answer my questions
    1) In Class Diagram I create a Class, when I transform it to ADF BC, I want it to be Custom Domain (Oracle Object Type), is it possible ?
    2) In Class Diagram I define an attribute multiplicity to be [0..5], In ADF Entity Object I have no way to define multiplicity
    3) In Class Diagram attributes order always sorted alphabetically, how can I turn off the automatic sorting ?
    4) When I generate an UniDirectional Association in Class diagram then Transform it to ADF Business Component, it automatically create accessor name like : roleName1, roleName2 etc, it cannot be deleted.
    5) When I create a Composition in Class Diagram, it does not automatically transform to Composition in ADF Business Component
    6) I Create an Abstract SuperType Class in UML Class Diagram, but when I transform it into ADF Entity Object, it becomes a Concrete SuperType
    Please somebody help me..
    Thank you very much,
    Krist

    Krist,
    I will try and answer some of your questions, although some of the problems identified are not due to UML but are due to how ADF BC is implemeneted.
    Q1) In Class Diagram I create a Class, when I transform it to ADF BC, I want it to be Custom Domain (Oracle Object Type), is it possible ?
    A1) No, it isn't possible, UML Classes can only be transformed to ADF EOs
    Q2) In Class Diagram I define an attribute multiplicity to be [0..5], In ADF Entity Object I have no way to define multiplicity
    A2) The equivalent muliplicity property on an EO would be to set the attribute's mandatory property to be true
    Q3) In Class Diagram attributes order always sorted alphabetically, how can I turn off the automatic sorting ?
    A3) You can't turn off automatic sorting, there is an outstanding ER to allow users to sort attributes and operations in different orders
    Q4) When I generate an UniDirectional Association in Class diagram then Transform it to ADF Business Component, it automatically create accessor name like : roleName1, roleName2 etc, it cannot be deleted.
    A4) It is a ADF BC restriction that Accessors are named, you can alter the names used in the 'Association' dialog but they cannot be blank
    Q5) When I create a Composition in Class Diagram, it does not automatically transform to Composition in ADF Business Component
    A5) If you have drawn a Composite Association between UML Classes then this should be successfully transformed to a composite association in BC4J
    Q6) I Create an Abstract SuperType Class in UML Class Diagram, but when I transform it into ADF Entity Object, it becomes a Concrete SuperType
    A7) Again ADF BC does not seem to support Abstract classes as there appears to be no where in the EO dialog to say to make the class abstract
    Hope that helps,
    Lisa Sherriff
    JDev UML QA

  • UML Model - Problem Moving Objects

    Hi:
    A co-worker and I both have JDeveloper 9.0.3.10.76, UML Modelers Version 9.0.3.9.73. When creating a new UML Class diagram, I can move objects around, resize them, etc. My co-worker has to cut and paste them back into the diagram, can't resize things, etc. In other words, once a Java class is placed on the diagram, it can't be dragged around, resized, etc. Is this a setting somewhere?
    Thanks,
    Mike

    Lisa:
    I found the problem. When that person got back, we all "upgraded" a bunch of things, and then we all had it. The problem is that we are using Java 1.4.1_03 and set the SetJavaHome line accordingly in the jdev.conf file. Evidently the events used by the UML diagram for the mouse are now slightly different under 1.4.1_03 or something. Easily solved though, we just commented out that line.
    You all might verify this works with the next release though, as I'm pretty sure it isn't shipping with 1.3.1 as the default, correct?
    Mike

  • Jdeveloper 10.1.2 UML Import Internal Problem

    I restarted Jdeveloper after rebooting my pc. I am running version 10.1.2.0.0. build 1811. Steps involved in encountering this error:
    1) created new uml class diagram
    2) attempted to drag (or right-click and choose add to diagram) a java source file from the same project into the uml diagram.
    Message
    BME-99003: An error occurred, so processing could not continue.
    Cause
    The application has tried to de-reference an invalid pointer. This exception should have been dealt with programmatically. The current activity may fail and the system may have been left in an unstable state. The following is a stack trace.
    java.lang.NullPointerException
         at oracle.bm.diagrammer.registry.RBaseShape.setDefaultCore(RBaseShape.java:379)
         at oracle.bm.diagrammer.shape.BaseDiagramShape.initProperties(BaseDiagramShape.java:505)
         at oracle.bm.diagrammer.shape.BaseDiagramShape.initShape(BaseDiagramShape.java:383)
         at oracle.bm.diagrammer.shape.BaseDiagramNode.initShape(BaseDiagramNode.java:318)
         at oracle.bm.diagrammer.BaseDiagram.addShape(BaseDiagram.java:5120)
         at oracle.bm.diagrammer.BaseDiagram.addShape(BaseDiagram.java:5051)
         at oracle.bm.diagrammer.BaseDiagram.createShapesFromInfo(BaseDiagram.java:4121)
         at oracle.bm.diagrammer.registry.RCompositeDiagram.dropList(RCompositeDiagram.java:1224)
         at oracle.bm.addinUtil.IDEAppContext$14.run(IDEAppContext.java:4304)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:171)
         at oracle.ide.controls.progress.AbstractProgressDialog.dispatchThisEvent(AbstractProgressDialog.java:535)
         at oracle.ide.controls.progress.AbstractProgressDialog.showDialog(AbstractProgressDialog.java:387)
         at oracle.bm.addinUtil.IDEAppContext.dropNavigatorNodeLater(IDEAppContext.java:4401)
         at oracle.bm.addinUtil.IDEAppContext$12.run(IDEAppContext.java:4030)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Action
    If further errors occur, you should restart the application.
    Also, report the problem on the JDeveloper forum on otn.oracle.com, or contact Oracle support, giving the information from this message.

    Thanks Vohra.
    That problem is solved .
    But when i am trying to invoke my face jsp page from my login servlet ,means generating JSF view from non JSF request i am getting this error
    07/08/10 12:08:17 processing jsf fcFactory com.sun.faces.context.FacesContextFactoryImpl@127344
    DEBUG ! Created new view for /Register.jsp
    DEBUG ! get defaultLocale en_US
    DEBUG ! Locale for this view as determined by calculateLocale en_US
    DEBUG ! RenderKitId for this view as determined by calculateRenderKitId HTML_BASIC
    DEBUG ! render(com.sun.faces.context.FacesContextImpl@121b0d8)
    DEBUG ! phase(RENDER_RESPONSE 6,com.sun.faces.context.FacesContextImpl@121b0d8)
    DEBUG ! Entering RenderResponsePhase
    DEBUG ! About to render view /Register.jsp
    DEBUG ! About to render view /Register.jsp
    DEBUG ! servletPath /servlet/Login
    DEBUG ! pathInfo null
    DEBUG ! Using default mapping extension null
    WARN ! Unable to determine FaceServlet mapping for servlet path '/servlet/Login'.
    DEBUG ! URL pattern of the FacesServlet executing the current request null
    DEBUG ! Found no URL patterns mapping to FacesServlet
    In the html it is showing error that
    "Current application deployment descriptor does not allow to include it in the response."
    Any help will be appreciated.
    Thanks in advance....

  • UML export/printing problems

    Just installed latest Studio version and did reverse engineering UML.
    UML look fine but there are problems exporting or printing it:
    1. If I try to export it to image - exported file is empty;
    2. If I try to print it - only small size diagram is printed.
    3. If I create a WebReport - to tree or diagram are created (main.htm has no links).
    4. I did not find a way to export diagram to Rational Rose format (there is import but no export?)
    Is there a way to solve these problems.
    Are there other viewers for *.etd, etc files to display UML and print...
    any help is greatly appreciated.
    Thank you.
    leo

    Thank you for your comments. Unfortunately they did not solve the problem.
    It look like there is some fundamental bugs here...
    BTW. I am using Windows XP, dual Processor (3GHz), 2GB RAM
    Please see comments below.
    I would appreciate any suggestions to solve this problem.
    Ref:
    http://forum.java.sun.com/thread.jspa?forumID=747&thre
    adID=5061305
    ... While printing, in the print setup dialog ( click
    the print preview icon on the uml toolbar, select the
    printsetup button to get the print setup dialog) you
    have options to scale by pages, zoom level or actual
    size. You also can set the position of the graph....
    This does not seems to work properly. I am trying to print on HP DesignJet to have a big diagram (e.g. 40x40 in). When I select the page size and set "Actual size" in Print Preview and use Print - "Error occur during this operation".
    Here is the stacktrace in the log file:
    ERROR: 'unknown protocol: c'
    FATAL ERROR: 'Could not compile stylesheet'
    Exception in thread "Thread-14" java.awt.print.PrinterException: Invalid name of PrintService.
         at sun.awt.windows.WPrinterJob.setNativePrintService(Native Method)
         at sun.awt.windows.WPrinterJob.getPrintService(WPrinterJob.java:573)
         at sun.print.RasterPrinterJob.setPrintable(RasterPrinterJob.java:965)
         at com.tomsawyer.editor.export.TSEPrint.execute(DashoA9*..)
         at com.embarcadero.uml.ui.swing.drawingarea.ADDrawingAreaPrinter$1$1.run(ADDrawingAreaPrinter.java:95)
         at java.lang.Thread.run(Thread.java:619)
    Also:
    http://forum.java.sun.com/thread.jspa?forumID=747&thre
    adID=5060886
    ...There's a toolbar on the diagram panel, one button
    is 'Export as Image', we support JPG, PNG and SVG as
    output format, you can also specify the image
    size....
    Does the above help?*********************************************************
    The image is created but the file is empty (size=0)
    If I create a WebReport - to tree or diagram arecreated (main.htm has no links).
    Which browser are you using? If the diagram is large,
    sometimes the main.html is not displayed correctly on
    firefox. Can u check if the files are actually
    created but only browser display is having problems?The file structure corresponding to packages is created but no actual files: only one file at the top hierarchy is created - all the other directories are empty.
    Thanks,
    Leo

  • Problem with netbeans UML module

    I have downloaded the UML module from the plug-in section. While it was installing it couldn't find several files related to UML module and when I try to activate the UML module it gives an error like:
    Activation failed. Not all requested modules can be enabled. [StandardModule:org.netbeans.modules.uml.kit jarFile: C:\Program Files\NetBeans 6.0.1\uml4\modules\org-netbeans-modules-uml-kit.jar]
    Required modules for plugin UML to complete activation:
    module org.netbeans.modules.uml/1 > 1.1
    module org.netbeans.modules.uml/1 > 1.2
    module org.netbeans.modules.uml/1 > 1.2.2
    How can I solve this problem?

    Hi ,
    Iam using the following code
    WA_MAILDATA-obj_descr = IS_BACKMON-Message_Subject.
    *Collect the mailid and reciver type to send an email
      WA_RECEIVER-receiver = 'Emailid'.
       WA_RECEIVER-rec_type  = 'U'.
       WA_RECEIVER-com_type = 'INT'.
       APPEND WA_RECEIVER to i_RECEIVER.
    *Display the context of the message
      is_contents_txt = IS_BACKMON-Message_Body.
      APPEND is_contents_txt to i_contents_txt.
      clear is_contents_txt.
    *Send an Email to a Particular person
      call function 'SO_NEW_DOCUMENT_SEND_API1'
           exporting
                document_data              =  WA_MAILDATA
               document_type              = 'HTM'
                put_in_outbox              = c_flag
                commit_work                = c_flag
           tables
               object_header              = I_MESSAGE
                OBJECT_CONTENT              = i_contents_txt
                receivers                  = i_RECEIVER
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
      if sy-subrc  eq 0.
    *Submit after the function module is successful
        SUBMIT rsconn01 WITH mode = c_int
                       WITH output = ' '
                       AND RETURN.

  • Istallation Problem - UML Modul is not available

    Hi,
    I've installed the Studio 8 on my PC.
    OS = Win 2000
    SDK 1.5.04
    Now, everything is working fine but I'm not able
    to use the UML features.
    I tried to update Studio 8 and the Update-wizard told me
    - not able to update the uml1..... modul... because the uml module is
    not enabled
    Is there a known workaround for this problem.
    Thanks for your feedback
    Markus

    Markus,
    Can you please give more details on the problem you are experiencing?
    Was the installation successful?
    Does other IDE dunctionality work correctly?
    If you look at the IDE log file (usualy at <user-home>\.jstudio\Ent8\var\log\messages.log) are there any exceptions?
    If you search the installation directory for JSE - are there any *.pack files?
    Thanks,
    Kirill

  • Preventing Netbean's UML code generation problem

    When I generate code from my UML diagram in netbeans, how do I prevent it from making a local version of java api classes and interfaces?
    Example: I have classes that extend JFrame. When I generate the code, it puts and an empty JFrame class in my source package.

    This is a Java forum and not a Netbeans one.

  • I can not drag java class onto uml class diagram - why??

    Hi
    1. I created a new java web project
    2. I created a new uml project.
    3. I created new classes in the java web project.
    4. I created a new "class diagram" in the uml project.
    PROBLEM:
    1. When I drag one of the classes onto the class diagram screen, nothing happens. That is, when I perform the "drop"...nothing happens.
    (NOTE: when I drag a "package" to the class diagram, a box representing the java package appears... I just cant get this to work for a class(s) )
    QUESTION:
    Should I be able to drag a class (or classes) from my web project src folder onto the UML project's class diagram and have UML representations of the classes appear?

    Hi Shay
    Unfortunately, I cannot view the suggested youtube stuff at work. (I'll try to view it when I get home)
    But, in the meantime, I did kind of get things working...
    After creating the java project and uml project (and initial class diagram), I had to
    1. drag the java packages (containing the classes I wanted diagrammed) onto the root node of the UML project (i.e., located on the left side "navigation" bar). Afterward, the package appeared under the UML project....Then,
    2. One by one I had to drag the individual java classes from the java project onto the root node of the UML project (i.e,. the classes then appeared under their respective packages under the UML project) . Then,
    3. Then, finally, I could drag the java classes (listed under their respective packages under the UML project) onto the class diagram panel, where the rendered properly.
    I dont know if this is supposed to be the way to "reverse engineer" java classes to be part of a UML class diagram... But, it was the only way I found that worked... thus far, anyway.
    Thanks again for reading my post and answering so promptly.... That was much appreciated!
    s

  • [ot] A UML tool for a new Java project

    I am working on the new Java project and need a UML tool to get it start. I am wondering whether anyone one can recommend such tool or not. It can be either stand alone or as an Eclipse plug-in. It shall be able to handle at least 50 classes.
    Thanks.

    Is it any good? I haven't tried it but we're
    evaluating UML tools here and it's on my list to play
    with.
    PS.If you mean SDE....
    I have only used the personal edition at home, and the other versions have more functionality available
    My impressions, FWIW, are
    - easier to use than rational rose (I find this one which I have to use at work to be a pain), although, paradoxically enough, they are not that dissimilar in appearance
    - I was able to create some reasonably complex models without any problems
    - easy to install and start using - no great learning curve
    - I tried importing a model I had exported from rose and that did not work very well at all.
    - this applies to version 2.2

Maybe you are looking for

  • Windows Vista not working correctly with Leopard 10.5

    I just updated my MacBook Pro 17" by installing Leopard 10.5xx (erased and installed), then used BootCamp to partition disk and install Windows Vista. In Windows, my volume control is on, but no sound. I just got the error, "This problem was caused b

  • Dynamic Mail Adapter using message split

    Hi, My requirement is like this: one flat file will come Sample Structure: Email_address   Custom_ID        Status             Comments    Many records will be there in that Sample data: som @ xi.   1234       approved        blablabla ram @ por   12

  • DVD playback

    I am having problems playing DVD movies. The playback audio is slow and distorted. The video seems fine but may be a tad bit erratic also. I am using and an A105 S2021 running XP with the DVD device that came in the machine (HL-DT-ST DVDRAM GMA-4082N

  • CUA: SCUG - Transfer Users errors with Output Device does not exist

    Greetings, I'm currently setting up CUA on our ECC 6.0 boxes and ran into an issue when I run SCUG and try to transfer the users. We're in the process of upgrading to ECC. The target systems are upgraded copies of our current 4.7 target systems. Curr

  • I think I was cheated on the 645E Max-C

    I was hoping someone could answer a question. I just purchased a 645E Max-c (well thats what the box and all said).  But when I inspected it further the motherboard had been restickered with the 645E Max-C sticker being placed over the actual board s