Integrating existing UI application with BPM workflow

Hello ,
We want to integrate the oracle BPM workflow with existing UI application (developed in JSP) , Question is how do i map human task from BPM process to existing UI JSP pages/modules .
a sample module from application is like below -
Application has two roles - Operator and Approver and UI pages for both roles are already created .
Now from first UI page (using Operator role ) user will submit a request and then it should go and invoke the BPM workflow .I can do this using web service (BPM process exposed as web service ) .
Now next step is where i have a problem - Assigning this request to another role - in BPM workflow i can create a Human task and assign role there but how do map
this HT to my existing UI pages .
Let me know if i am not clear on question .
Thank You
Rupesh
Rupesh

Hi Rupesh. If you want to integrate the oracle BPM workflow with existing UI application, you should see the Oracle SOA Suite 11g Handbook, in the Chapter 20. I'm sorry for don't gieve you the link. I found that book very helpful. Regards.

Similar Messages

  • Integrating a jsp application with oracle workflow

    Hi,
    I would like to integrate a jsp application with oracle workflow.
    My jsp application use BC4J, and if i want to use the java
    interface of workflow i need to have the java.Sql.Connection of
    my application.
    There are a way of getting this Connection in the BC4J?
    thanks
    rjc

    You can check the source code at:
    http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/text.920/a96517/acase.htm#632511
    You can also use the JDeveloper wizards that can generate JSP code. You can download them from: http://otn.oracle.com/products/text/
    and then click on software (left frame).

  • Integrating existing Web application with Oracle Portal

    Hi,
    I have an existing application which is purely written in servlets and which is in use for quite some time. I have a requirement now of moving this application onto the Oracle Portal.
    I was just wondering if we have any quick meanse of doing this or we have to re develop from scratch in oracle Portal server(ByDefining page, Page templates..etc).
    Advance thanks for your help
    Thanks
    Sreedhar

    What do you mean with "moving this application onto the Oracle Portal"?
    The best expedite way is use in the portal a LINK that direct your users to the actual app.
    Another quick thing you could do is use the IFRAME TAG (only works in IE). This way you can embed your app in Portal (show it in some area in portal)
    Then comes the complex things:
    - You can activate SSO to your applications ( which is not THAT difficult)
    - You can PORTLATIZATE your app, this doesn't means that you have to rewrite all, but still you need to write in a "Oracle Java Way" some thing to get it work..
    You can see this link if you're using portal 10.1.2:
    http://download-east.oracle.com/docs/cd/B14099_19/portal.1012/b14134/pdg_java_intro.htm

  • Facing problem in integrating my custom jsp with the workflow engine

    Hi,
    I am using Jdeveloper 11.1.1.6.0 for BPM 11g implementation on my Application.I have Weblogic Server 10.3 Installed and configured the domain. Also the server is up and running.
    I am trying to create workflow and wants to integrate it with my custom jsp but i am facing problem in integrating my custom jsp with the workflow engine.Can you please answer the following questions:
    1)how to link BPM human task with my custom jsp (Requester jsp).
    2)how my custom jsp data(Requester data) will be stored in workflow engine and how the same data will be visible to the next custom jsp(Reviewer jsp).
    This is urgent .Any early reply will be great help.
    Thanks in advance.
    Edited by: 990133 on Mar 24, 2013 5:31 AM

    you forgot to add the usage dependency in the DC metadata section in your DC, you have to add the XSS~utils and fpm as a used DC's as part of your DC, try to add those, if you already done that, so check where missed the adding of used webdynpro components in any of the VAC's or FC's,
    Cheer,
    Appa

  • Integrating WebDynpro ABAP applications with UWL for workflow in Portal

    Dear
    We want to integrate an abap webdynpro application as task in the workflow with UWL.
    More information was found in /people/ginger.gatling/blog/2005/12/14/create-new-uis-for-existing-workflow-tasks-with-abap-web-dynpro-and-universal-worklist
    But no answer on the following issue:
    We use the transaction SWFVISU to prepare standard setting for our  task. This defines how a task is executed, once you select the task subject line on the worklist.
    Task                           TS91700001
    Visualization Type             ABAP Web Dynpro
    APPLICATION     z_wd_pas
    DYNPARAM     IV_WIID=${item.externalId}&period=${item.PERIOD}
    NAMESPACE     SAP
    SYSTEM_ALIAS     SAP_BSP_EREC
    But we want to start the abap webdynpro application with a dynamic parameter: period 07.2010 or 08.2010 or MM.YYYY. This parameter is a container element of the task, filled when the task is created. Also other parameters are available in the abap webdynpro application.
    Component       Z_WD_PAS
    Interface View  PAS
    Plug Name       DEFAULT
    Help Menu Text
    Help Link
                                                                                    Package         Z_PAS
    Language        EN
    URL             http://saperpd1.imec.be:8000/sap/bc/webdynpro/sap/z_wd_pas                                                                               
    with parameters
    IV_WIID     000000000000     SWW_WIID
    ORG_UNIT     00000000     ORGEH
    PERIOD                              SPMON
    PERNR     00000000     PERSNO                            
    Can we set the dynamic parameter list DYNPARAM from the task
    or should  we read the container in our abap webdynpro application described in http://wiki.sdn.sap.com/wiki/display/WDABAP/IntegratingWebDynproABAPapplicationswithUWLforworkflowin+Portal?
    More information: The task is a webservice
    Standard task        91700001   Z_PAS_CC
    Object Category      BOR Object Type
    Object Type          WEBSERVICE   WebFlow Service
    Method               PROCESSDIALOG                      Dialog Service
    with the following standard program code for this method:
    begin_method processdialog changing container.
    DATA: l_wi_objkey TYPE swotobjid-objkey.
    DATA: l_wiid TYPE swwwihead-wi_id.
                                                                                    CALL FUNCTION 'SWE_WI_GET_FROM_REQUESTER'
      IMPORTING
        requester_workitemid = l_wi_objkey.
    l_wiid = l_wi_objkey.
                                                                                    CALL FUNCTION 'SWF_WSC_START_LH_DIALOG'
      EXPORTING
        i_wiid                 = l_wiid
      EXCEPTIONS
        url_creation_failed    = 1
        browser_launch_failure = 2
        OTHERS                 = 3.
    IF sy-subrc <> 0.
      CASE sy-subrc.
        WHEN 1.
          exit_return '1000' space space space space.
        WHEN 2.
          exit_return '1001' space space space space.
        WHEN OTHERS.
          exit_return '1002' space space space space.
      ENDCASE.
    ENDIF.
    end_method.                                           
    Before calling the function SWF_WSC_START_LH_DIALOG the parameters for the abap webdynpro should be defined. Is this possible ?
    Thanks for your suggestions.
    Best regards
    Luc Marent

    I added below sources .
    >    <ItemType name="uwl.request.webflow.WS91000001" connector="WebFlowConnector" defaultView="WorkItemRequestsView" defaultAction="launchWebDynPro" executionMode="default">
    >      <ItemTypeCriteria systemId="UWLSETXXX" externalType="WS91000001" connector="WebFlowConnector" />
    >      <Actions>
    >        <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproABAPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    >          <Properties>
    >            <Property name="WebDynproApplication" value="ZWD_WF_002" />
    >            <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no" />
    >            <Property name="DynamicParameter" value="wi_id=${item.externalId}" />
    >            <Property name="openInNewWindow" value="yes" />
    >            <Property name="System" value="WDSETXXX" />
    >            <Property name="WebDynproNamespace" value="sap" />
    >            <Property name="display_order_priority" value="5" />
    >          </Properties>
    >          <Descriptions default="" />
    >        </Action>
    >      </Actions>
    >    </ItemType>
    >    <ItemType name="uwl.request.webflow.decision.WS91000001.UWLSETXXX" connector="WebFlowConnector" defaultView="WorkItemRequestsView " defaultAction="viewDetail" executionMode="default">
    >      <ItemTypeCriteria systemId="UWLSETXXX" externalType="WS91000001" connector="WebFlowConnector" />
    >    </ItemType>

  • Integrating existing file server with EP6SP9

    hello everyone
    we are implementing EP6 SP9 portal for our SBU and we need to integrate our existing file server with portal in which we can upload documents and download existing documents.
    do we need to use content management to access this file server using the file system repository manager or it can be done in some other way
    If theres an alternate way to do this, kindly explain what needs to be done.
    Kindly help
    Thanking you
    Anurag

    Anurag,
    yes, CM is the software to use for this. you could, in principle, go without CM and code the neccessary stuff on your own. But: The more funcionality you desire (think of: additional properties, search functionality, versioning ...), the more sense using CM makes. Plus you get all required user interfaces (like a repository browser) for free.
    Regards,
    Dominik

  • Integration of Oracle applications with IDM

    Hi All,
    Please trow some light on how do we integrate Oracle applications with Oracle IDM(Identity Management).
    Is MRM capable of providing inbounding and outbounding webservices. If not do we have any adapters for integeating the other applications with IDM.
    What is the good practice to integrate a BPEL service with IDM.
    Thanks in advance.
    Regards,
    Naveen

    Hi,
    Have a look at this thread.
    Installation Procedure for APEX
    Installation Procedure for APEX
    Regards,
    Hussein

  • SharePoint 2010 - Create new site collection in existing web application with different existing content DB

    I have a SharePoint 2010 root level site collection SC1 in web application WEBAPP1. I want to create copy of that site collection in same web application WEBAPP1. Apart from Import/Export, Restore/Backup options, will following approach work? If yes , how?
    I took backup of content database of web application.
    Restored database with different name
    Mounted Content database to this WEBAPP1 by assigning new ID to DB
    Created new site collection by using this newly mounted DB
    Site collection gets created successfully but content does not appear.
    Please guide if i can achieve desired functionality by using this approach.
    If this helped you resolve your issue, please mark it Answered

    It is because the Site GUID is identical, and each GUID can only be present on the farm once. You can use Backup-SPSite/Restore-SPSite (which is full-fidelity, unlike Export-SPWeb/Import-SPWeb), which will generate a new GUID for the restore Site Collection,
    even in the same Web App.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Integrating VueActionSample example application with AutoVue

    We've run the VueActionSample example application provided by autovue installation. When we run the batch file provided in the example directory the Applet window opens with "List Part Action" under "Analysis" menu (custom action is registered as one of menu item). But when we copy the VueActionSample.jar application to <AutoVue Install Home>/bin and copy the gui file given in the example application to <AutoVue Install Home>/bin/profile folder. when we try to access the document with URL
    http://hostname:16200/cs/idcplg?IdcService=VIEW_IN_AUTOVUE&dID=26700&guiFile=custom.gui
    it doesn't show the custom action "List Part Action" unders "Analysis" menu. Why is AutoVue applet client not picking the custom action? Is this some sort of bug? it works in standalone and not on hosted server. kindly point us if we're missing some steps
    Additionally we've added this VueSampleAction.jar in ucm too - UCM/cs/AutoVue/common and UCM/cs/weblayout/common locations too
    snippet of markup file
    POPUP IDS_ANALYSIS
    BEGIN
    MENUITEM PartListAction, , PERM_READ
    SEPARATOR
    MENUITEM VueActionAnalysisMeasure , Measure, PERM_READ
    MENUITEM VueActionFileCompare, , PERM_READ
    SEPARATOR
    MENUITEM VueActionViewDrawingInfo, , PERM_READ
    END
    Inputs are highly appreciated

    Hi Mohan,
    Here's a note showing how to do this:
    How to Configure and Run the AutoVue VueActionSample (Doc ID 1677471.1).
    Thanks,
    Dan

  • Integration of external applications with E- Recruitment Business Package

    Hello All,
    We are planning for an implementation on E-Recruitment Business Package on EP.
    We need to know whether it is possible in addition to E- Recruitment features provided we would be able to Integrate custom created/ external applications like ID Card creation of employee etc.
    Do let us know about the feasibility of this scenario.
    Thanks & Regards,
    Shailesh.

    Hello  Shailesh
    You are refering to which external applications  ? are they from ECC  or third party?
    If you develope custom applicatios in webdynpro/bsp  in back end you can easily integrate it in EREC business package on portal.
    Regards
    Rajendra

  • Integration of J2EE application with weblogic portal

    Hi guys,
    I have an application hosted on an iplanet web server. This application uses servlet 2.2, jsp 1.1 of J2EE platform.
    And I have a microsoft application running on .NET platform.
    I want integrate above 2 applications into webloigc 8.1 portal. What are the different ways in which i can do this and where can i find specific material on this.
    advance thanks for your help
    gopaluni

    Basically I am saying that your options are
    1. Screenscraping the apps into portlets
    2. Using SSO to login to the apps, but keepin them separate
    3. Using Web Services to consume parts of the apps and exposing those as portlets
    For our application we do 2 and 3. In many cases we just create portlets that represents views into other j2ee apps. When the users click on something, we launch the j2ee app in a popup browser. The users are already signed on, and taken to a specific detail page, add page or something within the app directly.
    Hope this helps.
    Kunal

  • Integration of OBIEE Dash Boards with BPM Process

    Hi ,
    Could you please help me in integrating OBIEE Dash Boards with BPM . I thought of using 2 ways :
    1) Integrating OBIEE with ADF First and then Integrating ADF with BPM . Its a long process but any other way if any one can help me .
    2) Integrating OBIEE with BPM directly by generating webservices . but i couldnt get any options to generate the webservices for OBIEE .
    Can anyone please guide me on this .
    Thank you,
    Sashank P.

    Check these links may help you.
    http://docs.oracle.com/cd/E21764_01/bi.1111/e16364/actions.htm
    http://gerardnico.com/wiki/ide/eclipse/eclipse_how_to_consume_a_webservice_with_wtp#the_result
    http://gerardnico.com/wiki/dat/obiee/web_service

  • Integration with existing business applications

    Hi, could anyone share with us in what way OBIEE is commonly integrated into our existing business applications?
    By a linked page embedded or just let users log in to dashboard or any by api or by webservice or any others?
    Thanks!

    Hi
    please refer following links, so that you can get some understanding in using SOAP API of OBIEE with other technology(Java/PHP) web applications...
    http://oraclebizint.wordpress.com/2007/07/31/customizing-obi-ee-soap-api/
    http://gerardnico.com/wiki/ide/eclipse/eclipse_how_to_consume_a_webservice_with_wtp
    check below url in your local installation to see what are the web service methods available for you to communicate..
    http://localhost:9704/analytics/saw.dll?WSDL
    for a simple and easy way 'gourl' functionality can be used..but necessary care to be taken as you pass your username and password in url parameters..
    check below tutorial..
    http://oraclebizint.wordpress.com/2007/07/30/customizing-obi-ee-%E2%80%93-go-url-parameters/
    hope thats solves your problem!
    -Niranjan K

  • Example of integrating a Devel;oper Application with Workflow.

    Hi. I wonder if there's a place where i can find an example of integrating (communicating) an application, say built with forms 6i and workflow.
    Regards, Luis ...!

    for simple application interactions you must use the next functions
    wf_engine.createProcess(..) for create a new instance
    wf_engine.setItemAttrtext(...) for setting initial item attributes
    wf_engine.startProcess for began running the WF.
    in middle you may be want get the values from a WF instance do use:
    wf_engine.getItemAttrtext(...) for item attribute
    wf_engine.getItemAcctivity[data format] (...) for a node parametters...
    for notifications use:
    WF_NOTIFICATION.SetAttr[data format] for set the RESULT hidden attribute
    and
    WF_NOTIFICATION.Respond(...) for make a continue to a notification.
    regards
    Gustavo

  • Integrating Java code with pre-existing C application

    My team has been tasked to develop wizards for a pre-existing C application on Unix. We don't own the C code so we can make only limited changes to the native code.
    The challenge is to call the Java wizard from within the C code, and then to allow the Java code to use services and data in the C code. I can call Java from C, and then call C from Java. But the C code that gets called from Java doesn't seem to have access to the data known by the C code that called the Java.
    The only way I've thought of to handle this is to pass function pointers as paramters to the Java program, which can then pass the pointers on to the C code that it calls. Is there a way to pass pointers into Java?

    But the C code that gets called from Java doesn't seem to have access to the data known by the C code that called the Java.
    I don't know exactly what you mean here, unless you're simply saying that the scope of your C data makes it inaccessible between functions.
    Is there a way to pass pointers into Java?
    Yep - Just treat the pointers as opaque types and wrap them in something large enough for the platform - for example a jlong. You need to be sure to be careful in managing the lifetime of the pointers with respect to the Java objects that hold onto them - for example, with function pointers that come from a dynamically loaded shared library or any data pointers that you might be passing around. You probably want to read the section on native peers in the JNI programmer's guide.
    God bless,
    -Toby Reyelts
    Check out the free, open-source, JNI toolkit, Jace - http://jace.reyelts.com/jace

Maybe you are looking for

  • CD-ROM drive dead

    I have an old white dome iMac with a ROM drive that appears to be dead - nothing mounts, no sound that the drive is even trying to read a disc - neither audio CD nor DVD. My issue is I need to "nuke" everything on the hard drive, reformat it and rein

  • MacBook Pro will not startup

    The laptop turns on and I get the grey screen with the apple, also the spinning circle, but that's it No desktop What happened?

  • Stopping re-install on G5 iMac

    Mac emergency! A friend mistakenly erased iChat on her new iMac G5. Trying to do the right thing, she inserted & ran the "Clean & Install". After Disc 1 was ejected, and before Disc 2 was inserted, she let me know of her issues... On the machine is a

  • Clustering Error:(

              Hi           I have two sun solaris machines with weblogic server 6.1 SP1           I created 2 managed servers in called deployserverSL and deployserverLL on the           first machine.           I created 2 managed servers in called depl

  • Importing files with embedded IPTC metadata - Workaround?

    I was hoping the the "metadata improvments" that Apple delivered with Aperture v.1.1 would include the ability to import legacy files with IPTC and XMP metadata embedded by Photoshop, iView, Photo Mechanic, and other similar programs. Unless I am mis