UIX view for the ADF-Toystore?

Hi,
how are plans about a uix view for the Toystore, which currently uses JSPs?
This would be nice to see some of the concepts, the adf developers thought of.
The simple tutorials aren't going deep enough (one of them doesn't do even a commit to database after editing a row...)
Best Regards,
Torsten.

As I've chronicled on my weblog from time to time:
http://radio.weblogs.com/0118231/2004/07/20.html#a355
one of our PM's is working on a UIX view layer for the Toystore Demo. It's not done yet, but it's being worked on.

Similar Messages

  • Create a defaut view for the MS Project Server 2010 client

    Dear Forum,
    how can I create a defaut view for the MS Project Server 2010 client?
    I saved a template and set a default view under File -> Options ->Project View. I also did the same in the checked-out enterprise global. If I then close the client and re-open it my default view changes back again to the previous one (not the view
    I set as a default view).
    What explains this behaviour and what can I do? Any hints?
    Thank you very much for your help!

    Scheduler007 --
    The view you selected by clicking File > Options > Project View is the default view for every new project you create from a blank project template.  This is a global option, so setting it from the checked out Enterprise Global file serves no purpose. 
    When you select a view as your default view, you will see that view applied to the blank project that is opened when you launch Microsoft Project 2010, and you will see it applied if you create new blank projects.  If you create enterprise templates for
    people to use in your organization, you should simply apply the view to the template that you want as the default so that users will see this view immediately when they create a new project from the template.  In addition, if you apply a view to an open
    project, close and check in the project, and then reopen the project, you will see the last view applied in that project (as Guillaume correctly points out).
    Beyond this, there is no method possible for the Project Server administrator to specify a default view for the Microsoft Project application used by the project managers in your organization.  This is an option each PM must set.  Hope this helps.
    Dale A. Howard [MVP]

  • "I would like to know how to set the default view for the columns. Somewhere I read it could be done in by music icon under Library.  Can't find it.  Thanks

    "I would like to know how to set the default view for the columns that are shown in iTunes. Every time I open it, I have to either go to the options, or right-click to get the pop-up options, and delete "rating" and add "composer." I'd really like to just do it once and be done with it."  Somewhere I read you could do this by clicking on the Music icon under LIBRARY then arramge the columns.  Trouble is, I can't find a Musi Folder or icon in my user library.
    Any help would be appreiated.  OSX 10.9.2  iTunes version 11.1.5  Thanks!!! CW!

    From the iTunes menu bar try View>Show View Options.  Make sure what you want to see is checked and what you don't is unchecked.  You can do this (may need to do this) for any playlists, your main Library, etc.
    Good luck
    srb

  • Tcode  PFAL there is no model view for the distribution of HR Data.

    Hi friends ,
    i am facing new problem,i want to send iDOC to other system.
    previeous its working fine.
    but to day  when i open tcode PFAL.
    it give me Error:"There is no model view for the distribution of HR master data"
    what is the solution for that.
    i want to send HR Data.
    its urgent please give me any solution ithat will help me alot.
    thanks in advance

    There is already Distributed Model Created.
    can u give me annother tcode so i can  send Metarial data, by IDOC.
    please help me.
    Thanks

  • How do you change the view for the timeline in a movie

    not sure in new version how to do it

    Not sure what you mean by the "view" for the timeline.
    You can choose View>Wrapping Timeline to wrap the timeline.
    Double cliccking a clip in the timeline will open the Clip Trimmer for precise work.
    Matt

  • TabletPC Windows Journal viewer for the mac

    I use a tabletpc at work, and have several documents that I have created using the TabletPC Journal application. I have not been able to find a Journal Viewer for the Mac. Does anyone know of a .JNT viewer for the mac?

    I tried that previously and was not able to find a windows journal or jnt viewer,but thanks for the suggestion.

  • Creating classification view for the material

    hi friends,
    i need to create a material with various views (as in MM03) based on the material type.
    i am using BAPI_MATERIAL_SAVEDATA for it.
    i am able to create almost all the views except the the classification view for the material.
    can anyone help me with code (i need to write) to create a classification view for the material?
    thanks in advance.

    Hi Karthik,
    Select klart from AUSP into table t_ausp where OBJEK = wa_final-matnr.
      LOOP AT t_ausp.
        w_classtype = t_ausp-klart.
        CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'
          EXPORTING
            classtext            = 'X'
            classtype            = w_classtype
            language             = sy-langu
            object               = w_object
            objecttable          = 'MARA'
    *         no_value_descript    = w_no_value_descript
            change_service_clf   = 'X'
            inherited_char       = ' '
            change_number        = ' '
          TABLES
            t_class              = t_class
            t_objectdata         = t_objectdata
            i_sel_characteristic = i_sel_characteristic
            t_no_auth_charact    = t_no_auth_charact
          EXCEPTIONS
            no_classification    = 1
            no_classtypes        = 2
            invalid_class_type   = 3
            OTHERS               = 4.
        IF sy-subrc <> 0.
        ENDIF.
        LOOP AT t_class WHERE class IN s_class.
          CLEAR : t_allocvaluesnum,t_allocvalueschar,t_allocvaluescurr,
                  t_lreturn.
          REFRESH : t_allocvaluesnum,t_allocvalueschar,t_allocvaluescurr,
                    t_lreturn.
          w_classnum = t_class-class.
    *       Getting the reference tables and values----------------
          CALL FUNCTION 'BAPI_OBJCL_GETDETAIL'
            EXPORTING
              objectkey        = w_objectkey                      "Old reference Material
              objecttable      = 'MARA'
              classnum         = w_classnum
              classtype        = w_classtype
    *          unvaluated_chars = 'X'
            TABLES
              allocvaluesnum   = t_allocvaluesnum
              allocvalueschar  = t_allocvalueschar
              allocvaluescurr  = t_allocvaluescurr
              return           = t_lreturn.
    *     Create with reference-----------------------
          w_objectkeynew = wa_inputfile-to_matnr.
          CALL FUNCTION 'BAPI_OBJCL_CREATE'
            EXPORTING
              objectkeynew    = w_objectkeynew                "New Material
              objecttablenew  = 'MARA'
              classnumnew     = w_classnum
              classtypenew    = w_classtype
            TABLES
              allocvaluesnum  = t_allocvaluesnum
              allocvalueschar = t_allocvalueschar
              allocvaluescurr = t_allocvaluescurr
              return          = t_lreturn.
        ENDLOOP.
      ENDLOOP.
    Prabhudas

  • [Oracle Exports : Help] Public Views for the Design Environment

    The Warehouse Builder provides a set of pre-built views for both the design and runtime environments.
    http://download.oracle.com/docs/cd/B31080_01/doc/owb.102/b28225/api_3designviews.htm#i696153
    My questions -
    1. How start this views ? Where I can find them ?
    2. How can i seen what table uses this views ?

    My Replies?
    1.) What do you mean by "start" them? You select from a view just as you would a table. If the view is there and you have permissions, it is available to you. As to where to find them, they are owned by either your repository owner or repository manager user - depending on how you have set things up. But any user registered as an OWB user will have synonyms pointing to the views for the repository to which it is registered.
    So, when you have defined a source or target Oracle Schema and registered it as an OWB user, you can simply "select * from all_rt_audit_objects" or whatever else as that user when you want to get information from the views.
    2) None of your user-defined tables use these views. These views are pre-packaged select statements against the tables in the OWB repository to make it simpler for you to extract information about your metadata, deployments, and executions of the objects you have created in a given repository. Using a tool like TOAD, Oracle SQL Developer, SQL*Navigator, or whatever other Oracle development tool you use, you should be able to get the source for these views if you want to understand how they are collecting data for you.
    Cheers,
    Mike

  • Public Views for the Design Environment

    Hi,
    I want to select Information from the Public Views for the Design Environment. I need details from the mappings, but can not found the informations.
    I can't found it in all_iv_xform_maps and all_iv_xform_map_components.
    I build a mapping and user some Functions in the mapping (Transform Operators). Now I want to select the location Information of such an operator.
    In detail I need:
    1) Right Click on a mapping
    2) click configure
    3) collapse Transform Operators
    3) collapse a function
    4)I need the Information under Location.
    Sometimes in my mappings there is "Unkown value" and I want to select from the Public Views for the Design Environment these entries.
    Can some one help me?
    Thanks
    Carsten

    My Replies?
    1.) What do you mean by "start" them? You select from a view just as you would a table. If the view is there and you have permissions, it is available to you. As to where to find them, they are owned by either your repository owner or repository manager user - depending on how you have set things up. But any user registered as an OWB user will have synonyms pointing to the views for the repository to which it is registered.
    So, when you have defined a source or target Oracle Schema and registered it as an OWB user, you can simply "select * from all_rt_audit_objects" or whatever else as that user when you want to get information from the views.
    2) None of your user-defined tables use these views. These views are pre-packaged select statements against the tables in the OWB repository to make it simpler for you to extract information about your metadata, deployments, and executions of the objects you have created in a given repository. Using a tool like TOAD, Oracle SQL Developer, SQL*Navigator, or whatever other Oracle development tool you use, you should be able to get the source for these views if you want to understand how they are collecting data for you.
    Cheers,
    Mike

  • Hide the design view for the report

    Dear All,
    I would like to block or hide the design view for the Crystal report.
    Please let me know.
    Thanks,
    Raja

    Hi Raja,
    It is not possible to hide the design tab in Crystal Reports.  However,  in Crystal Reports 2008,  there is the ability to password protect a file.
    Regards,
    Wallie

  • To create View for the following req

    Hi Gurus
    Table view is to be generated for tables ZFUNCTION, ZPFUNCTION, and ZLOCATION.
    Assignment of T Code to this table so that SSC team can update as and when there is change in business requirement.
    Pls suggest me to create view for the above req and to assigning T code for the same.
    Regards
    Suresh

    I seem to recall (don't have the docs handy) that there is a higher level
    PDDest object and a PDAction object - you might want to look at using those
    higher level objects (created via PDXXXFromCosObj) if you are having trouble
    working with Cos.
    Leonard

  • Is there a razor view for the report control?

    Is there a razor view for the reportviewer control or at least is there planned by SSRS team.
    We are working on MVC application and try to avoid include webform just for the reportview control

    Hi John,
    Based on my research, we cannot directly add ReportViewer Control in a razor view. While we can create an aspx page or web form from where we can show our report using report viewer control in the MVC application. For more details, please refer to the following
    thread:
    http://stackoverflow.com/questions/6144513/how-can-i-use-a-reportviewer-control-in-an-asp-net-mvc-3-razor-view
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Reg :-maintain a table maintenance view for the z table.suggest me the code

    i have question.i have created a z table related to pp module.the requirement is to maintain {table maintenance view} for this z table.how could this be done.can any one suggest me the code for this?

    Hi ,
    We have a lots of queries on table maintainance creation in the forum posted and replied to.Pls have a look at it first.
    In se11 -> change mode of the ztable -> goto -> utilities -> table maintainance generator -> click on it...
    it will give a new screen-> enter the required details like function group , authorisation(use &NC& or leave it blank if you dont know)  and screens
    2 step and 1 step means=> number of screens displayed in maintainace
    if step1 is selected then we have a screen which will be like a table control for data entry.........
    for step2 we have a table control screen and a more detailed individual field display as second screen
    click on the button 'find screen numbers' so that system automatically proposes the screen numbers
    after which click on the "create" button and follow the required instructions/messages
    once done go to SM30 enter the table name to check if maintainance has been created properly
    Hope it helps,Pls check and revert
    Regards
    Byju

  • Unable to open or view: "For the best experience..." problem

    My system is Mac OS X (Browsers: Safari, Chrome, Firefox).
    I have been trying to browse Adobe's Interactive PDF Showcase for examples of professional output. Instead of the PDF opening up for viewing, I get, "For the best experience, open this PDF portfolio in Acrobat 9 or Adobe Reader 9, or later." or the same error with "...Acrobat X or Adobe Reader X, or later."  But my current reader version is Adobe Reader XI (11.0.09), which certainly qualifies as "later". What's going on?
    Thanks for any help.

    Have you tried accessing planning directly via 8300 port:
    http://<serverName>:8300/HyperionPlanning ? and see if the application is listed thr.
    Are you using admin Id to log in? if not then try using that one. If you dont have the access to that application you wont be able to see it via workspace.

  • Excel/Word viewer for the Mac?

    Is there a free viewer for excel & word docs for the mac as I can't open my attachments in mail?

    I have a Macbook Pro Mac OS X (10.5.5) bought in July 2008 will open office work?
    Yes. NeoOffice, suggested by another poster, is pretty well the same, but may run more slowly: OpenOffice in its latest version runs directly on Leopard (rather than requiring X11 like its earlier versions). It will allow you to edit and save the documents in a MS-compatible format should you require this. Both programs are free.

Maybe you are looking for

  • How can I get proper help on a simple problem

    I have a HP DeskJet 1220c Printer - It is considered to be a professional model. It is an older model, but it prints 11x17 so it serves my purpose at times. My color cartridge was running out, so a friend purchased two ink cartridges for me while in

  • I want to wipe Ipad and do a clean ios install, but forgot my restrictions passcode

    I want to wipe my Ipad 3 and do a clean installation but forgot my restrictions passcode, all of the reset functions are not avaliable.how can I do this to set up as a new Ipad?

  • Why not all jars picked up by ojdeloy and how to generate build.xml from command line and not JDEV GUI - quick question

    Hi All We have 11.1.1.7 ojdeploy to compile our app. We notice in the log that not all jars are used in classpath arguments when we explicitly set them up for compilation. eg:   <path id="classpath">     <pathelement location="../../Oracle/Middleware

  • Double click in alv tree

    hi! I wrote an ALV report using some parts of the code from BCALV_TREE_DEMO. I added a new icon to the status of the screen. I want to add a function that when standing on the line with cursor and then  pressing the new button,  I will use the call t

  • Two problems just popped up

    I always wonder that while the iMac which has worked fine in most areas for over a year, will all of a sudden, seemingly overnight, start behaving strangely. Nevertheless, when I try to wake it up in the morning it will not do so if I touch something