Code generation from use cases

I have to build a system that inputs use cases and outputs code. I am as yet unsure how to do this. I assume the easiest way would be to go via class diagrams because code generation seems not a huge leap from there, but how would you suggest I get from the text use cases to a class diagram? Any help and pointers would be very very welcome.
Cheers,
Nicholas

If you invent this, they will have to create a new Nobel prize for computing. And we as developers will all be out of business. Best of luck.
- Saish

Similar Messages

  • Automatic Code generation from UML for C++ in Visual Studio 2013 Ultimate

    Hi all, 
    I am using Visual Studio 2013 Ultimate to design UML diagrams and want to use the class diagram to generate C++ code,
    however I found that there seems only support C# generation.
    Is there any way to do the code generation (even round-trip engineering with C++/UML model) from Visual Studio 2013 Ultimate?
    There is a way to do C++ code generation by customize the text template file right? but it is time consuming and we don't have much time to do it.:( 
    Thanks a lot!

    Hello Grib,
    >>is there anyway to integrate an STE code generator to Visual Studio 2013. I know there is EF5.x STE Generator but only for VS 2012.
    Yes, you can.
    Since the STEs are T4 template and you can just take template and code any changes or improvements you require yourselves! As you mentions, there is a EF5.x STE generator, you could download it and edit it. You could check this article:
    Upgrading to EF6, we could see that from EF5 to EF6, the team moves classes to a new namespace, so we need to modify the T4 template to generate the new namespace.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • JavaBeans code generation from XSD

    Hi everyone,
    I know that this is not a new question, but I still did not find a satisfying answer.
    Does anyone know a good code generator for creating JavaBeans out of XSD schemas?
    The output of this tool has to comply with the JavaBeans specification, because we want to map these POJOs to a database with the Java Persistence API. Especially lists and sets need to be created correctly, because we will make heavy use of associations.
    I've evaluated a large number of tools, most of them are not useable together with JPA. Here is a short list of tools I already tried:
    - Castor: Really nice tool, but getter-methods for "java.util.List" objects return a copy of this list as array! Output is not a JavaBean!
    - XMLBeans: As far as I've seen, Java objects have to be retrieved via a factory method, I see no possibility to use this library together with JPA. I furthermore doubt that these objects are JavaBeans.
    - HyperJaxb2+3: This tool promises to create Java POJOs and Hibernate mappings at the same time. The description looks very good, but the page seems to be down. I was not able to initiate a download for days.
    - Altova XMLSpy: This tool allows the generation of Java code out of XSD schemas. But the result is rather ugly. A simple XML "string" is translated into an internal Java class definition instead of a simple "String" instance. I see no usage of these objects together with JPA.
    I spent quite a lot of time for searching a good code generation framework that works together with JPA. Has anyone made good experience with any kind of code generators in this area?
    Thanks for any help!
    Martin

    Hi dvohra09,
    thanks for your reply. I think JAXB has the same limitations than XMLBeans. As I read at http://java.sun.com/javaee/5/docs/tutorial/doc/JAXB6.html, object instances shall be only accessed via a factory:
    "You should never directly use the generated implementation classes--that is, *Impl.java in the <packagename>/impl directory. These classes are not directly referenceable because the class names in this directory are not standardized by the JAXB specification. The ObjectFactory method is the only portable means to create an instance of a schema-derived interface. There is also an ObjectFactory.newInstance(Class JAXBinterface) method that enables you to create instances of interfaces. "
    Did you use JAXB2 together with the Java Persistence API? If yes, can you give me please an example how to map generated classes to the database?
    Thanks for your help!
    Martin

  • Code generation: from resultset to Java Object

    Hello all:
    Is there any utilities that can convert the ResultSet to a list of Java objects? I think that's doable, since we can get the metadata from ResultSetMetaData anyway, which provide a means to construct the internal properties of a java object.
    I just wonder if there is already something doing that out there... rather not to reinvent the wheel...
    Thanks,
    John

    thanks to both.
    You don't create data objects from data rather your data exists within the data objects. Thus the code that is going to use the data objects must already know the form so they can do something intelligent in the first place.So much better to start with a data model and then create code from that then populate from the database.
    >
    Here I just explore the idea and assess its viability. The project is using a cache solution, coherence as matter of fact. it seems the idea is to return a data strcture like a generic resultset from the cache. my understanding is that, when a user sends out a SQL, the database designer wouldn't know the POJOs the user uses from their side, still database is able to return a resultset from which the user will have enough info to populate their POJOs.
    I will take another look at the design, but meanwhile I found BasicDynaBean from apache's bean utilities useful, and came out with the following code:
    public List<BasicDynaBean> execute(final RequestObject ro) throws SQLException {
              List<BasicDynaBean> list = jdbcTemplate.execute(
                        new CallableStatementCreator(){
                             @Override
                             public CallableStatement createCallableStatement(Connection con)
                                       throws SQLException {
                                  CallableStatement cs = con.prepareCall(spName);
                                             // code skipped
                                                                                                    return cs;
                        new CallableStatementCallback<List<BasicDynaBean>>(){
                             @Override
                             public List<BasicDynaBean> doInCallableStatement(CallableStatement cs)
                                       throws SQLException, DataAccessException {
                                  cs.execute();
                                  ResultSet rs = (ResultSet) cs.getObject(outputPos);
                                                                                                    //apache api to convert the rs to list of BasicDynaBean     
                                  RowSetDynaClass rsdc = new RowSetDynaClass(rs);
                                  List<BasicDynaBean> rows = rsdc.getRows();
                                  return rows;
              however, I noticed that each mean contains the column headers, seems to me it's quite a overhead!
    thanks, John
    Edited by: Johnny_hunter on Aug 1, 2011 10:49 AM
    Edited by: Johnny_hunter on Aug 1, 2011 11:57 AM

  • BAR CODE generation from Oracle Database

    In our project which is J2EE based, we are making report component.
    We have oracle Database from which we have to pick certain fields and Bar code equivalent of one field. Than we have to print all these information on a paper.
    Could u please help us to find does Oracle provides any help in this regard??
    My email id : [email protected]

    Hi,
    1 do you need somehow to persist the report data in CRX?
    2 do you want to use CQ Reporting tool? (http://dev.day.com/docs/en/cq/current/administering/reporting.html)
    If no & no, you just have to do a servlet that access your database through a datasource.
    If 1, you have to do a background job, that will regularily retrieve data from a datasource.
    If 1&2, please refer to http://dev.day.com/docs/en/cq/current/developing/developing-reports.html
    If 2 without 1, you would have to override the tool to use your homemade servlet that access the datasource

  • Import statement code generation from Java-Platform Model in Java Studio

    Problem : When you create a Java-Platform Model type project in Java Studio 8.1 and as an example You would like to create an Attribute with java.util.Date type for a Class than how can You set this Attribute type in order to create the Code Generator the standard java package reference in Your code like : "import java.util.Date;" ? What is the right syntax in the "Type'" field of the Attribute Properties dialog ?

    You should also consider using NetBeans as an alternative to JSE8.1.
    Java Studio Enterprise 8.1 is itself built on top of NetBeans version 5.0. NetBeans is an ide developed as opensource at www.netbeans.org; it is extensible ide and so add-on modules can be developed to run on top of netbeans. And that is what JSE8.1 does; JSE 8.1 is NetBeans 5.0 plus several add-on modules (like UML etc).
    The latest stable version of NetBeans is 6.0 and provides improved versions of all relevant addons found in JSE.
    Home page: www.netbeans.org
    Download: http://www.netbeans.info/downloads/index.php
    Docs: http://www.netbeans.org/kb/index.html
    Further community resources (mailing lists, issue tracking etc) : http://www.netbeans.org/community/index.html
    wiki.netbeans.org
    NetBeans download is free. And since it is developed as an opensource project, the source is freely available under CDDL license.

  • [svn:fx-trunk] 7743: Moving away from using namespace qualifiers in most cases in the SDK.

    Revision: 7743
    Author:   [email protected]
    Date:     2009-06-11 06:53:10 -0700 (Thu, 11 Jun 2009)
    Log Message:
    Moving away from using namespace qualifiers in most cases in the SDK.  We've run into a few cases now where the use of qualifiers in code that is called excessively can slow things down.
    Bugs: SDK-21337
    Reviewer: Ryan, Paul
    QE Notes: None
    Tests: Ran several random Mustella test groups, checkintests.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21337
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FlexNativeMenu.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/HTML.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/fileSystemClasses/FileSys temDataGridNameColumnRenderer.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemChildrenLis t.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemRawChildren List.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/Window.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/WindowedApplication. as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/Application.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/ButtonBarButton.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/DataGroup.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/DropDownList.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/RadioButton.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/RadioButtonGroup.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/SkinnableContainer.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/DropDownCont roller.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/ItemRenderer .as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/ListBase.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/SkinnableCom ponent.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/Slider.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/core/SpriteVisualElement.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/AddAction.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/AnimateTransform.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/MotionPath.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/SetActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/supportClasses/GraphicEleme nt.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/skins/default/ErrorSkin.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/skins/default/FocusSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/collections/ModifiedCollectionView.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Form.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/FormItem.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/GridRow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HDividedBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TitleWindow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/CanvasLayou t.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintC olumn.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintR ow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/PopUpButton.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Tree.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridColu mn.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridItem Renderer.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/textClasses/TextRange.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/treeClasses/DefaultDataDescr iptor.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/treeClasses/HierarchicalColl ectionView.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Application.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponentGlobals.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/AddChildAction.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/CompositeEffect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Dissolve.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Effect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/EffectInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/EffectManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/MaskEffect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/ActionEffectIns tance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/AddChildActionI nstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/AnimateProperty Instance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/CompositeEffect Instance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/DissolveInstanc e.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/FadeInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/MaskEffectInsta nce.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/MoveInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/RemoveChildActi onInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SetPropertyActi onInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SetStyleActionI nstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SoundEffectInst ance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/TweenEffectInst ance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/ZoomInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/formatters/DateFormatter.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/GradientBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/GradientStroke.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/LinearGradient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RadialGradient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RadialGradientStroke.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/InitLocalConnection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/MainLocalConnection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemChildrenList.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemRawChildrenList.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/dragClasses/DragProxy.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/marshalClasses/MarshalPopUpD ata.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/MarshallPlan.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/preloaders/Preloader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceBundle.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DateChooserIndicator.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PanelSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpButtonSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpIcon.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpMenuIcon.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/SwatchSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/states/RemoveChild.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/CSSStyleDeclaration.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/LoaderUtil.as
        flex/sdk/trunk/frameworks/projects/framework_textLayout/src/mx/controls/dataGridClasses/T LFDataGridItemRenderer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/Operation.as
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleModule.vm

    Revision: 7743
    Author:   [email protected]
    Date:     2009-06-11 06:53:10 -0700 (Thu, 11 Jun 2009)
    Log Message:
    Moving away from using namespace qualifiers in most cases in the SDK.  We've run into a few cases now where the use of qualifiers in code that is called excessively can slow things down.
    Bugs: SDK-21337
    Reviewer: Ryan, Paul
    QE Notes: None
    Tests: Ran several random Mustella test groups, checkintests.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21337
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FlexNativeMenu.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/HTML.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/fileSystemClasses/FileSys temDataGridNameColumnRenderer.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemChildrenLis t.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemRawChildren List.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/Window.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/WindowedApplication. as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/Application.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/ButtonBarButton.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/DataGroup.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/DropDownList.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/RadioButton.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/RadioButtonGroup.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/SkinnableContainer.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/DropDownCont roller.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/ItemRenderer .as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/ListBase.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/SkinnableCom ponent.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/Slider.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/core/SpriteVisualElement.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/AddAction.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/AnimateTransform.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/MotionPath.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/SetActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/supportClasses/GraphicEleme nt.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/skins/default/ErrorSkin.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/skins/default/FocusSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/collections/ModifiedCollectionView.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Form.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/FormItem.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/GridRow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HDividedBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TitleWindow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/CanvasLayou t.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintC olumn.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintR ow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/PopUpButton.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Tree.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridColu mn.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridItem Renderer.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/textClasses/TextRange.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/treeClasses/DefaultDataDescr iptor.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/treeClasses/HierarchicalColl ectionView.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Application.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponentGlobals.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/AddChildAction.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/CompositeEffect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Dissolve.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Effect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/EffectInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/EffectManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/MaskEffect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/ActionEffectIns tance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/AddChildActionI nstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/AnimateProperty Instance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/CompositeEffect Instance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/DissolveInstanc e.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/FadeInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/MaskEffectInsta nce.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/MoveInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/RemoveChildActi onInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SetPropertyActi onInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SetStyleActionI nstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SoundEffectInst ance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/TweenEffectInst ance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/ZoomInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/formatters/DateFormatter.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/GradientBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/GradientStroke.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/LinearGradient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RadialGradient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RadialGradientStroke.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/InitLocalConnection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/MainLocalConnection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemChildrenList.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemRawChildrenList.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/dragClasses/DragProxy.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/marshalClasses/MarshalPopUpD ata.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/MarshallPlan.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/preloaders/Preloader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceBundle.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DateChooserIndicator.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PanelSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpButtonSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpIcon.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpMenuIcon.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/SwatchSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/states/RemoveChild.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/CSSStyleDeclaration.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/LoaderUtil.as
        flex/sdk/trunk/frameworks/projects/framework_textLayout/src/mx/controls/dataGridClasses/T LFDataGridItemRenderer.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/Operation.as
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleModule.vm

  • Export Adaptive Filter Toolkit Algorithm To C Using LabVIEW C Code Generation Toolkit

    I want to evaluate the performance of some of the standard adaptive filters & have planned to use "Adaptive Filter Toolkit" from NI. Once the desired adaptive filter is selected I want to implement the same filter algorithm in FreeScale controller.
    I understand that LabVIEW C code generation toolkit exports the LabVIEW code to ANSI C code. However, I'm interested in knowing if this toolkit would be able to export Adaptive filter toolkit algorithm as well (since the underlying IP would be in the form of DLL's).
    Any help on this matter would highly be appreciated !!

    I want to evaluate the performance of some of the standard adaptive filters & have planned to use "Adaptive Filter Toolkit" from NI. Once the desired adaptive filter is selected I want to implement the same filter algorithm in FreeScale controller.
    I understand that LabVIEW C code generation toolkit exports the LabVIEW code to ANSI C code. However, I'm interested in knowing if this toolkit would be able to export Adaptive filter toolkit algorithm as well (since the underlying IP would be in the form of DLL's).
    Any help on this matter would highly be appreciated !!

  • Download Data From Excel - VBA Code to SAP Using BDC

    Hi ,
    I am Sudhir Dure, working with Satyam Computers.
    I need help on the below query:
    I have an excel file which download data from Excel to SAP using RFC function & with the help of VBA interface.
    In this VBA code I have used BDC recording of SAP Transaction KE21N to post data into SAP.
    Now I am facing problem to find sub screen (tab page screen ) in SAP from VBA code .
    How to pass BDC Subscreen details from VBA code to SAP using below code?
    BDCTABLE.Rows.Add
    BDCTABLE.Cell(J, "PROGRAM") = PROGRAMNAME
    BDCTABLE.Cell(J, "DYNPRO") = "0200"
    BDCTABLE.Cell(J, "DYNBEGIN") = "X"
    BDCTABLE.Cell(J, "FNAM") = "BDC_OKCODE"
    BDCTABLE.Cell(J, "FVAL") = "=NEXT"
    Thanks,
    Sudhir Dure
    9972097464

    can anyone tell me how to get the PurchaseOrder number and item quantity from the Salesorder...? what are the fields here as given below..??
    For Each oItem In oSalesOrder.items
    wsTemplate.Range(cols(3) & Indexv).Value = oItem.material.material
    'wsTemplate.Range(cols(4) & Indexv).Value = ' I need item quantity here ????
    wsTemplate.Range(cols(1) & Indexv).Value = sapSoNumber
    wsTemplate.Range(cols(2) & Indexv).Value = ' I need purchase order number here>???
    Indexv = (Indexv + 1)
    Next
    reply fast. please .. thanks

  • How to convert a string from lower case to upper case withour using transla

    Hi all,
    how to convert a string from lower case to upper case withour using translate,
    Thanks in Advance,
    Reddy

    Refer to this related thread
    Re: hi guys this very urgent please help

  • How to stop user from using 961 mvt type in MB1C transaction code?

    Hi Friends,
    We have two companies. Already we have restricted end user for using 961 & 962 mvt type in MB1C transaction code in one company code 1000. Now, we want to restrict end user for using 961 & 962 mvt type in MB1C transaction code in other company code 1200.
    I have checked configuration using OMJJ transaction. But, it is there so there may be some different way of control.
    Can any body help me?
    Regards
    Siva

    Hi,
    To restrict/block the movement type,  the steps are:
    1. use transaction code OMJJ.
    2. Enter the movement type you want to block.[From 961 To 961](do for both961& 962)
    3. Select the Second option in the List which appears in the left. (Allowed Transaction).
    4. Remove the transaction codes (MB1C)from where you do not want to use that particular movement type& save.
    For user specific to block the movement type, pl consult Basis Consultant.
    Regards,
    Biju K

  • Anyone know how to stop the "activate" box from blocking usage of a perfectly legal copy of Ilisten? I want to help my dyslexic grandson and this box, including the activation code, keeps popping up, keeping me from using the software. I activated the pro

    Anyone know how to stop the "activate" box from blocking usage of a perfectly legal copy of Ilisten? I want to help my dyslexic grandson and this box, including the activation code, keeps popping up, keeping me from using the software. I activated the program and did a few profile building sessions, now it pops up each time I start the program, blocking me from using it. Help sure would be appreciated.
    Jay

    I looked at your post this morning and did not know enough to respond, other than to find out that links to iListen now go to newer, renamed software. Considering it's been nine hours with no response, I'm suspecting few people here have experience with that software. You could contact the current copmany that used to sell that package and see if they have any archived support info.
    BTW: please check you entry for "Mac OS" in your profile. It says iOS, which cannot run on an iMac. iOS is the system for phone and iPads but can't run on Mac computers. Do "About this Mac" from the Apple menu and see what it says about the OS version. Should look like this:
    If the "Processor" line says "Intel," you have a newer Mac than the old modles this forum covers; Intel iMac have their very own forum here:
    iMac (Intel)

  • SAP RF/ Bar code generation using IM

    Hi folks
    Can any one experiencing in using SAP Console / Bar code generation using Inventory Management .

    Please read this article
    http://tdworld.com/info_systems/highlights/peak-pepco-inventory-management/
    Is it possible to generate the barcoding using Handling unit or any other module without WMS ?
    Thanks for your input
    Jeevan

  • I create an id. on review option when i enter visa card and security code, it always gives an error msg "Invalid Secruity code". but i use this code for money withdraw from ATM and for shopping also. plz tell the solution ????

    i create an id. on review option when i enter visa card and security code, it always gives an error msg "Invalid Secruity code". but i use this code for money withdraw from ATM and for shopping also. plz tell the solution ????

    The code they are asking for is the last three digits of the number on the back of the card (you don't use this when using an ATM or presenting the card in shops).

  • Page Type "Use Case" missing from Configure Component Palette

    Hello,
    According to "22.13.1.3 How to Work with Use Case Component Palette Templates" I should be able to create a new "Use Case" template as follows: From the drop-down list, choose Use Case, then click OK.
    This is not the case, I only have either "Java" or "CSS", there is no "Use Case" that I can see to select. For reference please see: http://docs.oracle.com/cd/E24382_01/user.1112/e17455/creating_diagrams.htm#OJDUG4615
    Does anyone have any idea how I can get "Use Case" to be an option?
    Build JDEVADF_11.1.2.1.0_GENERIC_110907.2314.6081
    Kind regards,
    Allan.

    Hi John,
    Thanks for the confirmation. Unfortunately at this point in time I don't have a Support login, would it be possible for you to post that on my behalf?
    I guess I'll try again in a later release, it's not critical functionality, but would have been nice to have.
    Kind regards,
    Allan.

Maybe you are looking for

  • After Mountain Lion update, i can't access Facebook and Hotmail websites

    When I was with the OSX Lion, everything was fine. After Mountain Lion update, i can't open Facebook and Hotmail websites. I already reinstalled the Mountain Lion, but the error still happens. The only way to open these websites is with the private n

  • Is DAQmx and LV 8.0 compatible with vista

    I think I know the unfortunate answer but I made some minor (mostly cosmetic changes) to an application previously developed with LV 8.0 daq mx 8.4? (HS-DIO calls) and windows XP.  I recompiled under 8.0 and Vista (New daq drivers as well 8.5?) and s

  • "This password is different" Issue with MobileMe Syncing

    Hi all, I am getting an issue on two of my Mac's at the moment, which are both MobileMe sync'd (Contacts, Calendar and recently, Bookmarks) which is that saved passwords are no longer being pre-filled and when i enter the password it states "This pas

  • Newbie to iPhoto - Can anyone help with a few questions?

    Hi everyone, I have had iPhoto since December and I love it. I have been able to naviagate around it pretty well and love the fact I can put names to faces. I own a childcare business so this helps me individualise each child's photo's which I put on

  • Adobe photoshop elements wont open

    I had to re install adobe elements 12 , after re installing i cant seem to open the program up now ?