[ANN] Invitation to attend Usability Activity for JDeveloper

Here is your chance to contribute to the improvement of the usability of Oracle JDeveloper.
If you are in the San-Francisco bay area this is for you:
The Server Technology group at Usability Group at Oracle is conducting
a Usability activity to gather information which will allow us enhance the functionality
of Jdeveloper. We are looking for experienced programmers to participate in this activity.
The details of the activity are as follows:
* Time and date: 15 November, afternoon or evening (which ever suits you)
* No. of hours the activity might take place : 2
* No preparation or materials are required from your side, only your presence.
* You will be compensated for your participation with cash certificates.
* Food in the form of snacks will be provided.
Participants will need to have:
* Professional development experience with Java and Java IDEs.
* Professional web application development experience.
* Professional development experience with Business Components for
Java (BC4J).
* Familiarity with OO design and modeling.
* Familiarity with web services.
* Building applications is currently your primary job focus.
If you feel that you meet these requirements, and you are interested please send your name, job title and phone number to santosh.astagi @ oracle.com

Hi all,
I am responsible for this activity. Just wanted to update all that the date and time for the activity is:
Date : 17th November
Time 6:00 p.m.
If you are interested, you can get in touch with me at:
[email protected]
or call me at:
650-506-0252
Santosh Astagi

Similar Messages

  • I have read the various threads regarding slow boot up times, on my 2009 MBP it takes 1 minute to get a usable interface but without doing anything else the HD is active for a further minute, is this reasonable ?

    My MBP after the Lion upgrade takes 1 minute to put something usable on screen and without doing anything else the HD is active for another minute.
    I have visited the Genius bar where they went through some maintenance routines and permissions repaired etc but the boot up time remains the same.
    I have cleared the cache as suggested in other threads but is this the best I can expect as with SL the computer booted up in about 30 seconds ?
    I recall reading there may be unwanted  programs loading at boot up time but I do not know where to look in the system to check.

    Thanks for the reply, I have followed your suggestion but unfortunately it has not improved the boot time, do you have any further advice you could offer me ?
    I use my MBP for working on and storing my photographic images following my Photoshop adjustments, these individual image files are between 50 to 60Mb, I was reading about OSX self defragmenting files below 20Mb, these files are not intended as start up items but do you think storing approx 200Gb of these files could be having so effect ? I am a fromt end user so my limited knowledge is restricted to repairing permissions etc. I am probably clutching at straws but it be better to store these images on an external HD in addition to my backups on other HD's.
    Thanks.

  • Ann: New MapViewer Extensions for JDeveloper 10g

    We are pleased to annouce the availability of a new MapViewer extension kit for JDeveloper 10g (9.0.5.1 or later versions).
    Please download the kit from the following MapViewer page:
    http://otn.oracle.com/software/products/mapviewer/index.html
    Thanks
    LJ

    Yes currently the extension is strictly a top-level browsing tool with no mapping metadata drill down/editing capabilities.
    Those features are being planned for the next major release of this extension kit, as part of our major effort to rewrite the map definition tool. there is however no ETA yet.

  • A PDF document with information about activation for CS6 software

    Here's a PDF document with information about activation for CS6 software.
    I found it very useful for understanding how the system worked for activation of perpetual licenses, both in cases where the computer is and isn't connected to the Internet.

    Ann, with some browsers, the PDF document will download in the background rather than appear in a browser window.

  • No externally managed transaction is currently active for this thread

    Got the following exception after updating an entity bean and call persist method. Code the given below the exception.
    Exception [TOPLINK-23010] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.TransactionException
    Exception Description: No externally managed transaction is currently active for this thread
    public Object persistEntity(Object entity) {
    em.flush();
    em.persist(entity);
    return entity;
    private void modifyUser (Iuser user, String newHandle, Hashtable userDetails) throws UnknownException, WarningException {
    if (user == null) {
    throw new WarningException (new CatalogHelper("ITOOLS_000015", "to modify a user"));
    boolean handleUpdate = false;
    if ((newHandle != null) && !newHandle.equals("^\\s*$")) {
    handleUpdate = true;
    String oldHandle = user.getUserhandle();
    if (handleUpdate && oldHandle.equalsIgnoreCase(newHandle)) {
    handleUpdate = false;
    if (!handleUpdate && (userDetails == null) || (userDetails.size() == 0)) {
    return;
    if (handleUpdate) {
    userDetails.put("userhandle", newHandle);
    IToolsUtil.validateInputData("iuser", userDetails, false);
    if (handleUpdate) {
    userDetails.remove("userhandle");
    System.out.println("handleUpdate " + handleUpdate);
    // For User admin, handle, isactive, isadmin cannot be changed.
    if (oldHandle.equals("admin")) {
    if (handleUpdate) {
    throw new WarningException (new CatalogHelper("ITOOLS_000045", "Handle"));
    String active = (String)userDetails.get("isactive");
    if ((active != null) && !active.equals("Yes")) {
    throw new WarningException (new CatalogHelper("ITOOLS_000045", "Is Active"));
    String admin = (String)userDetails.get("isadmin");
    if ((admin != null) && !admin.equals("Yes")) {
    throw new WarningException (new CatalogHelper("ITOOLS_000045", "Is Admin"));
    System.out.println("user transaction started");
    if (handleUpdate) {
    FinderMethods fm = new FinderMethods();
    try {
    fm.findByUserHandle(em, newHandle);
    throw new WarningException (new CatalogHelper("ITOOLS_000043", newHandle));
    } catch (ObjectNotFoundException onfe) {
    user.setUserhandle(newHandle);
    System.out.println("User handle modified");
    } catch (SQLException se) {
    se.printStackTrace();
    throw new UnknownException (new CatalogHelper("ITOOLS_100000", new Object[]{"modifyUser", se.getMessage()}));
    String lname = (String)userDetails.get("userlname");
    if (lname != null) {
    user.setUserlname(lname);
    String fname = (String)userDetails.get("userfname");
    if (fname != null) {
    user.setUserfname(fname);
    String email = (String)userDetails.get("useremail");
    if (email != null) {
    user.setUseremail(email);
    String passwd = (String)userDetails.get("userpasswd");
    if (passwd != null) {
    user.setUserpasswd(passwd);
    String active = (String)userDetails.get("isactive");
    if (active != null) {
    user.setIsactive(active);
    String admin = (String)userDetails.get("isadmin");
    if (admin != null) {
    user.setIsactive(admin);
    System.out.println("details are updated");
    persistEntity(user);
    System.out.println("committed");
    How to resolve this issue? I am using Jdeveloper 10.1.3.0.4 (SU4)
    regds
    -raju

    The stack trace is given below. This exception is occured at "em.flush()" method. I even tried removing em.flush() method. Even then I got the same exception.
    I tried a different way of overcome this problem. Used UserTransaction instance say "ut" before create / modify the entity bean and later comitted. In that case I am not getting any exceptions. However, commit is happening only when new instance is created, commit works, but modification of an existing instance, commit is not working. Looks like there is some serious problem with EJB 3.0 in OC4J. Basic functionality is not working.
    Stack trace when flush method is called:
    Local Exception Stack:
    Exception [TOPLINK-23010] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.TransactionException
    Exception Description: No externally managed transaction is currently active for this thread
         at oracle.toplink.exceptions.TransactionException.externalTransactionNotActive(TransactionException.java:98)
         at oracle.toplink.internal.ejb.cmp3.transaction.base.JTATransactionWrapper.checkForTransaction(JTATransactionWrapper.java:39)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.checkForTransaction(EntityManagerImpl.java:322)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.getActiveUnitOfWork(EntityManagerImpl.java:314)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.flush(EntityManagerImpl.java:164)
         at com.itools.vs.model.session.AdminSessionBean.persistEntity(AdminSessionBean.java:57)
         at com.itools.vs.model.session.AdminSessionBean.createUser(AdminSessionBean.java:124)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Stack trace when persist method is called:
    Local Exception Stack:
    Exception [TOPLINK-23010] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.TransactionException
    Exception Description: No externally managed transaction is currently active for this thread
         at oracle.toplink.exceptions.TransactionException.externalTransactionNotActive(TransactionException.java:98)
         at oracle.toplink.internal.ejb.cmp3.transaction.base.JTATransactionWrapper.checkForTransaction(JTATransactionWrapper.java:39)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.checkForTransaction(EntityManagerImpl.java:322)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.getActiveUnitOfWork(EntityManagerImpl.java:314)
         at oracle.toplink.internal.ejb.cmp3.base.EntityManagerImpl.persist(EntityManagerImpl.java:74)
         at com.itools.vs.model.session.AdminSessionBean.persistEntity(AdminSessionBean.java:57)
         at com.itools.vs.model.session.AdminSessionBean.createUser(AdminSessionBean.java:123)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)

  • Uml tools for jdeveloper

    hi
    is there any UML Tools for JDeveloper that works on windows and mac or any one of them that does code engineering and database modeling also ?

    It includes Class diagrams, sequence diagrams, activity diagrams, use case diagrams, etc.
    Basically create a new application + project, then via the New Gallery (File -> New), select General -> UML in the New Gallery Dialog, and on the right hand side are the UML options.
    Regards,
    CM.

  • [SOLVED] "Server is already active for display 0" in Terminals

    So far, my searches haven't yielded any solutions to this.
    When my system starts, it boots to a console login prompt (no gdm, etc...) and I have 'startx' in my .bashrc to start my desktop. The desktop starts and functions fine (or so it seems).
    Problem 1: Anytime I open a Terminal window (or open new tabs inside a Terminal) I am greeted with the following:
    Fatal server error:
    Server is already active for display 0
        If this server is no longer running, remove /tmp/.X0-lock
        and start again.
    Please consult the The X.Org Foundation support
         at http://wiki.x.org
    for help.
    xinit:  Server error.
    Sometimes the last line is:
    xinit:  unexpected signal 2
    Usually I just ^C to get a working prompt and go about my business, but this is getting really annoying.
    Problem 2: I use Guake terminal and have it set to autostart in my .bashrc, but it doesn't work until I manually open a Terminal window. And if I close that (manually opened) window, Guake stops working. If I open another one manually, it works again...etc. I have a hunch this is related to the first problem.
    Any nudges in the right direction would be appreciated.
    My environment:
    DE = Xfce4
    Kernel = 2.6.31-ARCH
    Xorg = xorg-server 1.7.3.901-1
    Video = xf86-video-ati 6.12.99.git20091014-1
    /etc/X11/xorg.conf:
    Section "ServerFlags"
    Option "AutoAddDevices" "True"
    Endsection
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "extmod"
    Load "dri2"
    Load "dbe"
    Load "dri"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    #DisplaySize 340 190 # mm
    Identifier "Monitor0"
    VendorName "AUO"
    ModelName "10ec"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "Dac6Bit" # [<bool>]
    #Option "Dac8Bit" # [<bool>]
    #Option "BusType" # [<str>]
    #Option "CPPIOMode" # [<bool>]
    #Option "CPusecTimeout" # <i>
    #Option "AGPMode" # <i>
    #Option "AGPFastWrite" # [<bool>]
    #Option "AGPSize" # <i>
    #Option "GARTSize" # <i>
    #Option "RingSize" # <i>
    #Option "BufferSize" # <i>
    #Option "EnableDepthMoves" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "NoBackBuffer" # [<bool>]
    #Option "DMAForXv" # [<bool>]
    #Option "FBTexPercent" # <i>
    #Option "DepthBits" # <i>
    #Option "PCIAPERSize" # <i>
    #Option "AccelDFS" # [<bool>]
    #Option "IgnoreEDID" # [<bool>]
    #Option "CustomEDID" # [<str>]
    #Option "DisplayPriority" # [<str>]
    #Option "PanelSize" # [<str>]
    #Option "ForceMinDotClock" # <freq>
    #Option "ColorTiling" # [<bool>]
    #Option "VideoKey" # <i>
    #Option "RageTheatreCrystal" # <i>
    #Option "RageTheatreTunerPort" # <i>
    #Option "RageTheatreCompositePort" # <i>
    #Option "RageTheatreSVideoPort" # <i>
    #Option "TunerType" # <i>
    #Option "RageTheatreMicrocPath" # <str>
    #Option "RageTheatreMicrocType" # <str>
    #Option "ScalerWidth" # <i>
    #Option "RenderAccel" # [<bool>]
    #Option "SubPixelOrder" # [<str>]
    #Option "ShowCache" # [<bool>]
    #Option "ClockGating" # [<bool>]
    #Option "VGAAccess" # [<bool>]
    #Option "ReverseDDC" # [<bool>]
    #Option "LVDSProbePLL" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "DRI" "True" # [<bool>]
    #Option "ConnectorTable" # <str>
    #Option "DefaultConnectorTable" # [<bool>]
    #Option "DefaultTMDSPLL" # [<bool>]
    #Option "TVDACLoadDetect" # [<bool>]
    #Option "ForceTVOut" # [<bool>]
    #Option "TVStandard" # <str>
    #Option "IgnoreLidStatus" # [<bool>]
    #Option "DefaultTVDACAdj" # [<bool>]
    #Option "Int10" # [<bool>]
    #Option "EXAVSync" # [<bool>]
    #Option "ATOMTVOut" # [<bool>]
    #Option "R4xxATOM" # [<bool>]
    #Option "ForceLowPowerMode" # [<bool>]
    #Option "DynamicPM" # [<bool>]
    Identifier "Card0"
    Driver "radeon"
    VendorName "ATI Technologies Inc"
    BoardName "RS780M/RS780MN [Radeon HD 3200 Graphics]"
    BusID "PCI:1:5:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    /var/log/Xorg.0.log (filtered through grep for (WW) and (EE)):
    (EE) RADEON(0): [dri] RADEONDRIGetVersion failed to open the DRM
    (EE) RADEON(0): Acceleration initialization failed
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Mouse0
    (WW) Disabling Keyboard0
    (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    (WW) RADEON(0): LVDS Info:
    (WW) RADEON(0): Direct rendering disabled
    ~/.xsession-errors:
    /etc/gdm/Xsession: Beginning session setup...
    /etc/gdm/Xsession: ssh-agent not found!
    /etc/gdm/Xsession: Setup done, will execute: gnome-session
    gnome-session[28618]: WARNING: Could not parse desktop file /home/jon/.config/autostart/xfce4-tips-autostart.desktop: Key file does not have key 'Name'
    gnome-session[28618]: WARNING: could not read /home/jon/.config/autostart/xfce4-tips-autostart.desktop
    gnome-session[28618]: WARNING: Could not parse desktop file /home/jon/.config/autostart/xfce4-settings-helper-autostart.desktop: Key file does not have key 'Name'
    gnome-session[28618]: WARNING: could not read /home/jon/.config/autostart/xfce4-settings-helper-autostart.desktop
    gnome-session[28618]: EggSMClient-WARNING: Invalid Version string '0.9.4' in /home/jon/.config/autostart/wicd.desktop
    gnome-session[28618]: WARNING: Unable to find provider 'metacity' of required component 'windowmanager'
    gnome-session[28618]: WARNING: Unable to find provider 'nautilus' of required component 'filemanager'
    GNOME_KEYRING_SOCKET=/tmp/keyring-6lpdg3/socket
    SSH_AUTH_SOCK=/tmp/keyring-6lpdg3/socket.ssh
    (gnome-panel:28681): Gtk-CRITICAL **: gtk_accelerator_parse: assertion `accelerator != NULL' failed
    ** (gnome-panel:28681): WARNING **: Unable to parse mouse modifier '(null)'
    tput: No value for $TERM and no -T specified
    tput: No value for $TERM and no -T specified
    tput: No value for $TERM and no -T specified
    Can't locate XML/Parser.pm in @INC (@INC contains: /usr/lib/perl5/site_perl/5.10.1 /usr/share/perl5/site_perl/5.10.1 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/core_perl /usr/share/perl5/core_perl /usr/lib/perl5/current /usr/lib/perl5/site_perl/current .) at /usr/lib/xfce4/xfconf-migration/xfconf-migration-4.6.pl line 20.
    BEGIN failed--compilation aborted at /usr/lib/xfce4/xfconf-migration/xfconf-migration-4.6.pl line 20.
    (polkit-gnome-authentication-agent-1:28707): GLib-GObject-WARNING **: cannot register existing type `_PolkitError'
    (polkit-gnome-authentication-agent-1:28707): GLib-CRITICAL **: g_once_init_leave: assertion `initialization_value != 0' failed
    tput: No value for $TERM and no -T specified
    tput: No value for $TERM and no -T specified
    tput: No value for $TERM and no -T specified
    Unable to open desktop file epiphany.desktop for panel launcher
    Unable to open desktop file evolution.desktop for panel launcher
    /usr/lib/python2.6/site-packages/wicd/gui.py:151: GtkWarning: gtk_toolbar_set_icon_size: assertion `icon_size != GTK_ICON_SIZE_INVALID' failed
    self.wTree = gtk.glade.XML(gladefile)
    ERROR:dbus.proxies:Introspect error on :1.70:/org/wicd/daemon: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Message did not receive a reply (timeout by message bus)
    ERROR:dbus.proxies:Introspect error on :1.70:/org/wicd/daemon: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Message did not receive a reply (timeout by message bus)
    ERROR:dbus.proxies:Introspect error on :1.70:/org/wicd/daemon: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Message did not receive a reply (timeout by message bus)
    Importing pynotify failed, notifications disabled.
    Has notifications support False
    Loading...
    Connecting to daemon...
    Can't connect to the daemon, trying to start it automatically...
    Connected.
    warning: ignoring exception org.freedesktop.DBus.Error.ServiceUnknown: The name :1.70 was not provided by any .service files
    warning: ignoring exception org.freedesktop.DBus.Error.ServiceUnknown: The name :1.70 was not provided by any .service files
    Importing pynotify failed, notifications disabled.
    Has notifications support False
    Loading...
    Connecting to daemon...
    Can't connect to the daemon, trying to start it automatically...
    Connected.
    warning: ignoring exception org.freedesktop.DBus.Error.ServiceUnknown: The name :1.70 was not provided by any .service files
    (firefox:30931): GLib-WARNING **: g_set_prgname() called multiple times
    Registering '@mozilla.org/module-loader/python;1' (libpyloader.so)
    Registering '@mozilla.org/network/protocol/about;1?what=python' (pyabout.py)
    (Terminal:32576): Terminal-WARNING **: Unable to load terminal preferences.
    (firefox:1968): GLib-WARNING **: g_set_prgname() called multiple times
    (Terminal:5816): Terminal-WARNING **: Unable to load terminal preferences.
    (Terminal:9027): Terminal-WARNING **: Unable to load terminal preferences.
    (Terminal:9027): Gtk-CRITICAL **: gtk_widget_realize: assertion `GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)' failed
    (Terminal:9027): Gtk-CRITICAL **: gtk_widget_realize: assertion `GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)' failed
    (Terminal:9027): Gdk-CRITICAL **: gdk_drawable_get_screen: assertion `GDK_IS_DRAWABLE (drawable)' failed
    polkit-gnome-authentication-agent-1: Fatal IO error 11 (Resource temporarily unavailable) on X server :1.0.
    firefox: Fatal IO error 2 (No such file or directory) on X server :1.0.
    Thanks,
    Munky
    Last edited by munkyeetr (2010-01-13 20:26:51)

    In bashrc try something like
    [ -z "$DISPLAY" ] && startx && {sleep 5; DISPLAY=0:0 setsid Guake; }

  • Oracle Fusion Order Demo Application For JDeveloper error

    HI,
    i try to run the (Oracle Fusion Order Demo Application For JDeveloper) Fusion Order Demo (FOD) is an end-to-end application sample :
    when i try to : Right click build.xml and choose Run Ant Target > buildAll . error coming
    Buildfile: C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\build.xml
    init:
    [javac] Compiling 1 source file to C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\classes
    setProperties:
    createDatabase:
    refreshSchema:
    BUILD FAILED
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\build.xml:51: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:100: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:63: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:28: C:\Oracle\Middleware\jdeveloper\wlserver_10.3\server\lib not found.
    Total time: 6 seconds
    how i can run the build.xml

    Hi,
    not quite sure the question is clear. The add cart command is a link defined in the JSPX file
    <af:commandLink partialSubmit="true"
    actionListener="#{shoppingCartBean.addItemToCart}"
    id="cl3">
    that points to
    public void addItemToCart(ActionEvent evt) {
    Map attributes = evt.getComponent().getAttributes();
    invokeUpdateOp(new Integer(attributes.get( PRODUCT_ID_COL )+ ""));
    in StoreFrontModule\StorefrontUI\src\oracle\fodemo\storefront\cart\view\managed\ShoppingCartBean.java . This is where you follow up then.
    +"how i can make Repetition for the items in home.jspx"+
    I can only assume you mean how to create the catalog items. Here I suggest you look at the demo source as this is what the demo is for. If you are new to ADF, I recommend that you first run a tutorial from here
    If you are on 11g R1: http://www.oracle.com/technetwork/developer-tools/jdev/overview/index-100269.html
    If you are on 11g R2: http://docs.oracle.com/cd/E18941_01/tutorials/toc.htm
    No demo can replace proper learning, to be honest
    Frank

  • How to retrieve comments from one OfficeTask activity and use them in another OfficeTask activity for Multi level Approval sequential Workflow

    I'm designing a sequential site workflow using Visual Studio 2010 for Project Server 2010. In my case, I have following 6 stages in the workflow:
    1. InitialProposal Stage
    2. Approval Stage1 -- Needs approval from Approver Project Security Group Members1
    3. Rejection Stage
    4. Approval Stage2 -- Needs approval from Approver Project Security Group Members 2
    5. Execution Stage
    6. Completed Stage
    Requirement is workflow should move to Approval stage2 from Approval stage1  if approved by all members of Approver Project Security Group1and it should move to Rejection Stage even if a single member rejects it.
    Workflow should move from Approval Stage2 to Execution Stage if approved by all members of Approver Project Security Group2 and it should move back to Approval Stage1 on rejection by a single member of the group.
    I'm using inbuilt PSWApproval content type and OfficeTask activity for creating approval task for the group members at both stages.
    On task rejected in Approval stage2, task will be assigned again to Approval Stage1 and I want to show comments given by members of Approver Project Security Group2 to the members of Approver Project Security Group1 with this assigned task
    but I'm not able to retrieve comments from officeTask activity.
    My question is where exactly these comments are saved? how can we retrieve them and use them in another officetask activity? If this is not possible then what is the possible solution for meeting above mentioned business requirement?

    Hi Paul,
    Thanks for your suggestion.
    By comments field I'm assuming OfficeTask.Comments field. Problem is, this field is always null. I tried accessing this field in CheckExitCondition activity as well as in OnTaskCompleted but in both the cases, it was null only(I wrote comments while approving
    the task).
    I used a code activity within OnTaskCompleted activity and following code for accessing Comments and Description fields:
    public string officeComments;
            public string officeDescription;
            private void TaskCOmplete(object sender, EventArgs e)
                CodeActivity Sender = (CodeActivity)sender;
                Microsoft.Office.Workflow.Actions.OfficeTask ofctask1 = ((CompositeActivity)Sender.Parent).Parent as Microsoft.Office.Workflow.Actions.OfficeTask;
                officeComments = ofctask1.Comments;
                officeDescription = ofctask1.Description;          
    Please tell me if I'm doing anything wrong here, I'm very new to Workflows. Also, do I need to set any specific property of officeTask for retriving comments?
    Thank you

  • How to use mapviewer extension for jdevelop?

    I am working on the mapviewer. But my problem is that I can not connect mapviewer, or I can not start mapviewer using the embedded oc4j by jdeveloper. In mapviewer faq I read that:
    "How do I view the mapping metadata through JDeveloper's Connections Navigator?
    We have developed an Oracle JDeveloper extension that lets you browse the available list of styles, themes and basemaps defined in a datasource through JDeveloper's Connections Navigator. To do this, you will first need to download the mvconnection.jar file from OTN's MapViewer site. This jar contains the code that defines a MapViewer connection type for JDeveloper. To install, simply drop this jar file to the JDeveloper extension directory, normally $JDEV_HOME/jdev/lib/ext. Then restart JDeveloper, and you are all set.
    But when I restart jdeveloper, I got the message:
    "H:\Programme\jdev\jdev\lib\ext\mvpalette.jar!\META-INF\jdev-ext.xml
    Error: jar:file:/H:/Programme/jdev/jdev/lib/ext/mvpalette.jar!/META-INF/jdev-ext.xml<Line 105, Column 18>: XSD-2021: (Error) Element not completed: 'jsplibrary'
    H:\Programme\jdev\jdev\lib\ext\mvconnection.jar!\META-INF\jdev-ext.xml
    Error: jar:file:/H:/Programme/jdev/jdev/lib/ext/mvconnection.jar!/META-INF/jdev-ext.xml<Line 25, Column 20>: XSD-2034: (Error) Element 'description' not expected.
    Error: jar:file:/H:/Programme/jdev/jdev/lib/ext/mvconnection.jar!/META-INF/jdev-ext.xml<Line 26, Column 13>: XSD-2034: (Error) Element 'help' not expected.
    I use Jdeveloper 10g. Have you ever met the same problem?
    Thanks in advance

    The Map Viewer extension is still not available for JDeveloper 10g. It works with JDeveloper 9.
    The Mapping group is currently working on an upgrade.

  • IPhone 4s not being recognized and cannot be activated for service--what does this mean? I can't sync with iTunes. Please help

    iPhone not being recognized and cannot be activated for service--what does this mean? I can't sync with iTunes. Please help.
    When I connect iPhone to USB iTunes is giving me the above message. Please advise if you know the fix.
    Thanks,
    Lina1116

    did you find a fix?

  • Error in denesting activity for the luggage trading items.

    Hello experts,
    This has reference to the Denesting activity for the  luggage trading items in SAP. There has been an error in the basic configuration for this activity, as the denested stock is being incorrectly valued & consequently a wrong impact is being posted to the P&L. The actual landed cost for the nested item is not flowing to the denested items.
    We have been correcting this manually till now through an FI JV. However we need to correct the system urgently as this has a serious implication & the impact is considerably high. E
    Procedure for De-nesting:
    The procedure for De-nesting is being carried out at BLL  location & at branches. Transaction code used for the same is MB1A. Two separate documents are prepared for de-nesting.
    In MB1A, first document is being entered for Movement type 201 for depleting Nested item stock (Ref doc no 65489076) & subsequent document entered for movement type 202 for creating de-nested item stock (Ref doc no 6548769659).
    The MAP for Nested Item is correctly being updated with each receipt through Mov Type 101. However the MAP for denested item codes is not being updated since the stock creation is through mov type 202. The Old MAP updated at the time of code creation remains stagnant. Thus the denested items are being valuated with an old MAP rate.
    In normal condition, the value of both 201 & 202 should match.  As a result, the gap between the two kept on increasing & the inventory gets overvalued. The entries are posted to 8765987 (Consum-Intrnl-TMu2013 Dom) GL or 8765988 (Consum-Intrnl-TM-Imp) GL.
    Reference Accounting doc no 3025689745 & 1589645896 for above referred material docs.
    Please advice on this issue
    Thanks,
    Ratnam

    Activating ML is necessary because in my customer's company sell goods at planed price then revaluate value of inventories and COGS at actual price in the end of each of period. So we decide to use standard price control for trading goods and active Material ledger.
    end of period, we run period procedure of ML for trading goods, we expect allocation different amount, revaluate inventories and consumption. Run revaluation step of costing run in ML, we revaluate all   ending inventories and consumption transaction except billing transaction. So, we think that we need to run Ke27 to revaluate all line item document in COPA from billing.
    so anybody to help me revaluate consumption amount from billing at actual price in end of period?
    thanks in advance!

  • When i try to activate iMessage i could see the comment "waiting for activation" for more than 24hrs.Is this because of mobile device problem or someother issue ? My mobile is just 20 days old

    When i try to activate iMessage i could see the comment "waiting for activation" for more than 24hrs.
    Is this because of mobile device problem or someother issue ?
    My mobile is just 20 days old

    The following discusses that error message and may help: iOS: Troubleshooting FaceTime and iMessage activation

  • Open Item Management activation for GL accounts in ECC 6.00

    Hi Experts,
    There is an issue about Open item Management activation for GL line items of FBLL03 for VAT GL code. Unexpectdly do not check the open item management in VAT GL account Master record while created the GL master record in 2007. Now we activated Open item Management in GL master record for same GL to nulify the balances with setoff account and same reversed after activation. Now issue is how it is possible to activate Open item Management for previously posted documents ? Is there any standard SAP Program for ECC 6.00 Release SAP _APPL 600.
    Please revert.
    Best Rgds
    SumaMani

    Hi PVC,
    I got below mentioned message while execute the suggested program in SAP.Please suggest
    Do not use the report program to set up open item management for the
    account.
    Create a new account with the correct account assignment. Post your
    items to the new account. If you want to use the original account
    number, you must bring the account balance to zero, change the account
    assignment, and repost the items. You can remove the old items by
    archiving the documents.
    Best Rgds
    SumaMani

  • Components to be activated for Budget check in the table TRWCA

    hi,
    I want to know the components to be activated for budget check in the TRWCA table. I want to check the budget at the time of  PO creation , Goods reciept/Invoice receipt creation  using Network account assignment in PO  which is having WBS element and Project in its higher level.
    Thanks
    Rao

    ok well!
    Brother system will only check the budget, when your availability control is active.
    Further, as per your configuration, system will only prompt error  message when your budget exhausted 100%. ok
    please follow the same then  let me know
    check your WBS status is there avaiablity control active, when you entered the amount for budget/release.
    also check the transacion "CJBV - Activate Availability Control "
    Note: when ever you change the setting of your budget profie, must reconstruct the availability control transaction code is :CJBN/CJEN
    Thanks

Maybe you are looking for