How to use JSP as user interface

Hello

I use 10gR 3 OBPM.
How to use JSP as a BPM project user interface

Thanks in advance.

Edited by: 804625 on October 22, 2010 22:58

Hi Sid,

First import the JSP page in your BPM workspace.
In the flow of the screen where you have the interactive activity (you want to attach the JSP) declare a variable of type BPM (say jspObj) instance active then in activity interactive properties select the interactive BPM call, select the BPM object you defined (say jspObj) and select the Jsp custom radio button and select the jsp page in the customJSP folder.

To make communication between the JSP and the BPM object, you must use the object of the BPM (say jspObj) in your JSP page.

for example the text field using as follows:

value ="" / > ".

I hope this help you

Sidonie

Tags: Fusion Middleware

Similar Questions

  • How to use the same user interface project for different HumanTask in GR 11, 1 material BPM

    When I set a user interaction activity in my process of material Oracle BPM 11 GR 1 and associate a human task with it. It generates a new project to contain all my forms. Anyone know if it is possible to use the same project for the different human task?

    After generating the UI for your first human task project, you can click with the right button on the project in JDeveloper and select 'New', click on the tab "Technologies all", then "JSF'-> ' ADF task based on human task workflow of." Then find the file your BPMN/composite project .task.

  • FF22 parameters adjusted to resize the large icons - but the text user interface - (bookmarks, etc.)-is too small to read... How to enlarge text in user interface only?

    I adjusted the FF22 settings to resize the icons large - but the text of the UI - (bookmarks, history, etc.)-is too small to read... How to enlarge text in user interface without enlarging the text of the page Web - or re - expand FF22 icons?

    Have you tried the extension?

  • How to use the Weblogic user in my WebCenter application?

    Hello

    I'm doing my first Webcenter application. I have configured my wiki and weblogic server to connect, forum (discussions) with my users OID. So now any user OID can connect to this application.

    In my custom application Webcenter I configured JAAS security, now I would like to know how to use the same users OID in my application. Is this possible? Can someone help me? I tried Oracle Developers Guide, but it doesn't help me.

    Sorry for my bad English...

    Thank you

    Nelson

    You need to register a new provider of authentication on WLS. Please see this link http://www.oracle.com/technology/products/jdev/tips/fnimphius/oidconfig/index.html.

  • How to recover the active user interface objects on a screen?

    Hello

    Is it possible to recover all of the active user interface objects on a screen?

    I found ago api like net.rim.device.api.ui.Screen.getFieldWithFocus, but how to get sound type of subclass as ButtonField or BitmapField?

    another take:

    If you retrieve the field with focus, you can check what type of field you have recovered (using instanceof, for example)

  • How to create the default user interface is newly added to the columns in the table

    I added the new columns to the database table existed who got the default values for the user interface to the columns existed.

    How to create the default UI for the new columns.

    I couldn't see the newly added columns change the default UI (object browser-> database-> default UI - Edit-> Table).

    Using APEX 5.0.3

    Can you please help.

    Thank you.

    Find the option "Synchronize with database" under tasks on the interface's default user - Edit

  • How can I get the user interface in af:SelectManyShuttle

    Hi all

    I downloaded the screenshot of the user interface I have to build using af: selectManyShuttle in the URL below.


    http://www.freeimagehosting.NET/a5f7c


    Can you get it someone please let me know how I can achieve this or is this still possible using ADF.

    The more important thing to realize in the user interface is icon next to each list of items under certain conditions.

    Thank you
    Rajesh

    Published by: Rajesh on August 8, 2011 12:05

    As far as I know, there is NO direct support for hierarchical select several shuttles.
    But you can create a custom hierarchical select many shuttle tree/tree-tables on both sides and having some features/custom buttons to add/remove items.

    If you use tables of the tree, you should be able to place the icon.

    Thank you
    Nini

  • Use the Flex user interface in a PS plugin

    Hello!

    I am a user relatively to the Flex user interface design! A couple of days, I thought to give my PS plugins a look of the Flex user interface! I searched the internet on some tutorials or guides, but there is very little information relating to this. The guide Builder Extension CS says that we can interact with the Flex user interface & a native application by using the branchezBranchez C++ library. There is an example of code in Illustrator SDK for the same under the name FreeGrid (C++) & FreeGridUI(Flex UI). But I couldn't find an equivalent in PS.

    On further research in this regard, I found that we can use the PlugPlug.h (& .cpp) with a few changes in our C++ PS of the plugin code. I'm stuck at this stage now. How can I do to get out of here?

    Guide me people.. !!

    Thank you!

    This would be the part "all the settings you will need to do to get them working in the context of Photoshop" of my post! :-)

  • How to run the Manager user interface programmatically

    I am looking for a method to run programmatically (from Labview), the Manager user interface, and then to connect it.

    Is there an API from .net to who?

    Thank you

    Note: I developed for earlier versions of VeriStand, a high-level application that manages projects of test benches and their versions. I want to update with the new manager of the user VeriStand interface.

    It is not a .NET API to control UI Manager, but there are some command line utilities, you can use to launch the user interface Manager, open a specific project, specify the IP address of the gateway to use and connect automatically.

    Try the following command line arguments:

    /nivsprj 'c:\project.nivsprj' Gateway localhost / connect

    They are documented in the online profile of Stimulus help editor.

  • How can I update the user interface controls in the UI thread

    Hi all

    I want to do a custom image to display this URL source support.

    I start a thread to ask the image of the network data, and then update the display of the image with the data, but I get the error:

    ApplicationPrivate::resourceManager: ERROR called from the thread of user QThread (0x81eeb8c) interface
    ApplicationPrivate::resourceManager: A user interface thread named method

    It's my code segment:

    class URLImageView: public CustomControl, public QThread
    {
    public:
        URLImageView();
    private:
        void run();
    
        ImageView* mImageView;
        Container* mRootContainer;
    };
    
    URLImageView::URLImageView()
    {
        mRootContainer = Container::create().background(Color::Gray).preferredSize(100,100);
        mImageView = ImageView::create().image(QUrl("asset:///button.png"));
    
        mRootContainer->add(mImageView);
        setRoot(mRootContainer);
        start();
    }
    
    void URLImageView::run()
    {
        //get data from network
        //...
        //...
                //create image from binary data        Image* image = new Image(pixelBuffer);
        mImageView->setImage(image);
    }
    

    I know that in the old BB OS (Java Platform), I can get the lock of event request like this UI:

    synchronized (Application.getEventLock())
    {
            // I can update UI control here
    }
    

    Is it same way to Cascades BB10 or what is the right way, if I want to update the user interface in the UI thread?

    Thank you

    This looks like what signals are useful for, when it is connected with the option QueuedConnection. I don't have a link for you, but I'm sure that you can get with this description.

  • How to upgrade to the user interface of a screen that is extracted from the stack?

    Hello

    I am currently having a problem in the UI update.

    I have two screens called 'OverviewScreen' & 'DetailScreen' and in the upper part of the two screens, I have three buttons

    (i) back

    (II) next

    (III) charging

    In the entry of the app normally I posted the 'OverviewScreen' and in this screen, back, next buttons are inactive positions (just to have two sets of images, one active and one for idle) and if the user clicks on an item that is displayed in the cell, then I'll navigate the user to the "DetailScreen".

    Now the stack should have two screens,

    at the bottom - "OverviewScreen".

    at the top - "DetailScreen".

    and in the "DetailScreen" - I showed the image is active for the "back" button (because the screen is lower in the stack) and for the next inactive button image.

    Now if the user clicks the back button I navigates to the "OverviewScreen" which is called the UiApplication.getUiApplication (.getActiveScreen) (m:System.NET.Sockets.Socket.close ()); in the case of touch

    Now the "OverviewScreen" located in the bottom of the stack to the front UI (basically when I built it for the first time, it contains inactive images next and back) - what I want here is I need to show the following active image therefore needs to update the user interface of the screen that displays battery

    Because,

    OverviewScreen (back, next inactive images)--> DetailScreen (back - active, next - inactive)--> new OverviewScreen (should show the back - off, next - active)

    For this, I tried with what follows, but none works,

    If (event.getEvent () == TouchEvent.CLICK) {}
    UiApplication.getUiApplication () .getActiveScreen () .getScreenBelow () .updateDisplay ();
    UiApplication.getUiApplication () .getActiveScreen () m:System.NET.Sockets.Socket.close ();
    Returns true;
    }

    I even tried with invalidate() and dopaint() but none works

    However, I realized the functionality if I press the off button in the "OverviewScreen" he navigated me to the "DetailScreen", juice wants to show the icon active next button?

    What should I do to repaint or update the user interface of the screen here?

    Thanks in advance,

    Kitty.

    Found a solution

    Override the method which is found in the net.rim.device.api.ui.container.MainScreen and in this method, I have changed the image for the button and this method is called in the current active screen using getActiveScreen () .getScreenBelow)

  • Easy way to use the native user interface in the AIR for mobile?

    Hi, I use Flash CC for the mobile game, but when I want to create a regular application I need to create my own user interface and which takes a lot of time, I found several components on the internet but they require coding, is it parts components that you can simply drag and drop into the CC Flash?

    Thanks in advance

    Maybe it's what you need

    IgG.me/at/airui

  • Adding default and hidden metadata using the SDK user interface values

    Hello

    Is it possible to add a default value to a xmp_property, but using the SDK UI?

    Also is it possible using the SDK of the interface user of adding option to a document without him appearing on the opinion of the Committee?

    For example, I want to add a file, XMP "animal" with the value "cat" label by using the SDK of the user interface, but without the information displayed on the Panel.

    Thank you

    Trevor

    All the metadata in a file will be shown in the Raw, but this area will be added to the other point of view and change signs for anyone to be able to see or modify.

  • WIP 310 of configuration using the Web User Interface

    I just got my new WIP 310 - G2 phone and try to connect via my wireless router using the web interface of the phone.

    I don't see how I have the card information provided by my VoIP provider for different fields in the Web interface.

    I got information is of approximately

    • Name of user and password (phone number)?
    • Proxy IP and Port requested
    • Outgoing Port and Proxy number
    • Expire time
    • Time to package
    • DTMF relay
    • UDP Port number
    • RTP Port number

    Hope that somepone could help me with some links to documentation and advice on how to do it.

    See this link to configure WIP 310.

  • How to use the parameter "User Menu"

    How one in preferences in the user Menu?

    And if the Sony manual is not answering your questions, there is Chapter 3, pages 51-56 of my book.

    http://www.vortexmedia.com/Guide-to-Sony-F55.html

    .

Maybe you are looking for

  • HP Pavilion 15-p101nm: Hp Pavilion 15-p101nm can not find drivers

    Please help, I have problem with this 3 things. Windows cannot install the drivers and the HP website there are no driwers for this. I use Win 7 64 bit This is the Device Manager: PCI encryption/decryption controller: PCI\VEN_1022 & DEV_1537 & SUBSYS

  • Can I remove the bunch of icons at once?

    original title: somehow I loaded many pictures on my desk.  Each puts as an individual icon.  Can I remove the heap at once?  How?  Do I have to delete them one at a time? I use Windows XP.

  • SC.exe (create) causes the error of access denied

    Whenever I run \\servername Sc.exe create binPath SERVICENAME = C:\...exe I get the following error [SC] OpenSCManager FAILED 5: Access is denied. Any suggestion?

  • I want to burn a CD of all the Windows Mail files

    I followed the instructions but I can not click & drag the mail files.  They are a cute force.  Did I miss a step?  I had no problem burning photo CD.I have a lot of records and I want to redo this part of my mail.  I tried to click on a folder, but

  • FieldChangeListener does not not in OS6

    I have the following listener to perform an action to a button click event.  It works very well in OS5 devices, but nothing happens when you click the button in the OS6 devices.  Any ideas? ButtonField buttonSearch = new ButtonField("Search", ButtonF