Display the status of parallel human tasks in ADF web page (BPM 11g)

Hi,
We create a BPMN process (BPM 11g) which splits into parallel branches. Each branch has its own user activity. We want to show the task status of ALL the parallel user activities (running or completed) in the ADF web page implemented for the user activity so the user would have the whole picture of the process.
In another words, we are able to check the status of the component instances associated with the process instance in the Oracle EM. We want to provide the similar information (in our case, we only want to show the status of the human task components) to the user when they access the human task page.
I wonder if the only solution is to write Java code with the API to lookup the BPMN process instance. We try to avoid Java coding if possible. Please advise. Also, so far, I have not found any complete instruction/document on how to access the BPMN process instance and check the tasks etc. through the API. Please help if you know where I could get such information.
Thanks a lot,
Helen

sorry!!
http://www.esnips.com/doc/dca05e99-d5ca-49ce-80c8-5bedfe27a24a/screenshot-2

Similar Messages

  • DIsplay the status indicator as a circle  on adf 11.6

    I have requirements on status indicator as below .
    Example : based on the employee count on employee table ,if the employees count is >10 means diplay the status indicator in red color ,if count <10 mean then display in green color .
    I mean there any option to customize and display the status indicator in round shape in diffrent color each time based on the count .
    Any hints ?
    Thanks

    You can use skinning.
    .AFStatusIcon:alias:     This icon gives a graphical representation that content is loading (e.g. carousel, inlineFrame). If you are editing this alias, you should also edit .AFStatusIconStyle:alias and .AFBackgroundImageStatus:alias since components will choose among these icons automatically under the necessary circumstances. This typically defines a content URL for an animated image, the width of this image, and the height of this image.
    http://jdevadf.oracle.com/adf-richclient-demo/docs/skin-selectors.html

  • Display the status of the production order

    Hi Friends,
    I have a task which should display the status of the production order.
    If an order number(AUFNR) is given, it should display whether the order is available or not. Also it should display the status of the order whether it is delivered, completed, blocked etc.
    Can anyone send me the code for the above task.
    Waiting for ur reply.
    Raj
    Message was edited by: Craig Cmehil

    Please mark this post as "Solved on my own" as it is a duplicate of your post which has already been answered.  Thanks. 
    Also, please remove the email address from the subject line.
    Regards,
    Rich Heilman

  • How to display the status of a SubVI on the front panel?

    Hi,
    I am writing a program to control an instrument through a serial communication port. The control and communication functions are integrated in a SubVI and they work fine.
    In the front panel of the main VI, I want to add some indicators to display the status of those controls in real time, such as using some LEDs to show whether the program is running in some loops of the SubVI, or use some indicators to show some variables in the SubVI.
    I tried using global variables, but I can't make them work in real time (or maybe I didn't do it right). The values of the global variables are actually changing on the fly, but the indicators on the front panel wouldn't reflect those changes until the program return
    ed from the SubVI.
    Is there a way to do this in Labview 6.0.2?
    Your earlist help is very much appreciated.
    Best regards,
    Hua

    Hua,
    I have attached an example in which a front panel boolean indicator is toggled in the subvi. Also, a front panel stop button is used to stop the loop execution in the subvi. References are passed to the subvi instead of the actual control values.
    Without seeing your code I'm not sure what was going on with the globals, but you had to have a data dependency somewhere which was keeping the code from running until after the execution of the subvi. The code must be totally independent of the subvi in order to run. Also, in order for the update to work it would have to be operating in a loop.
    Attachments:
    Main.vi ‏13 KB
    subvi.vi ‏20 KB

  • ALV Report to display the status of the requests raised through ESS

    Hi All,
    We have to develop a ALV report to display the status of the requests raised through ESS
    for Leave, Travel & Event Management, Travel and Appraisal workflows.
    ESS Travel, ESS TEM, ESS Apraisal workflows are associted with SAP Business Objects.
    we are using the function module SWI_WORKITEMS_OF_OBJTYPE_GET to get
    the top level work item id's by passing the object type like PDRELA_025, BUS2089.
    By using SWP_WORKFLOW_LOG_READ function we are getting the workflow log
    by passing top level work item id's as imort parameter. 
    The report output should have the following fields
    Initiator, Initiator Personal No, Request Type( Leave, Travel etc.. )
    Date of application of the request, Status ( Approved by RM, Rejected etc )
    Name of the Approver, Approved / Rejected Date.
    The logic should be work for all the above ESS workflows and should be generalized.
    Can any one please let me know the procedure to get the required information from the workflow log.
    It would be great if any one suggest on the same how to proceed further to get the information as mentioned above.
    Thanks & Regards,
    Jagadeeswara Rao Balla.

    Hello,
    You can get most of that information from fm SAP_WAPI_GET_HEADER, input is workitem_id.
    regards
    Rick Bakker
    Hanabi Technology

  • How to display the status message based on student marks..

    Hi all,
    i have student table that has columns mark1,mark2,mak3...
    i want to display the student name,staus as pass or fail based on the marks.. in a single query..
    if the student score above 30 in all the subject i should display the status as pass other wise fail ( note:- status is not a column in the table)
    Thanks

    select e.student_name
          ,e.mark1
          ,e.mark2
          ,e.mark3
          ,decode(pass.flag,'Y','PASS','FAIL') status
    from   exam e
           , (select e2.student_id,'Y' flag
              from   exam e2
              where  e2.mark1 > 30
              and    e2.mark2 > 30
              and    e2.mark3 > 30) pass
    where e.student_id = pass.student_id (+);
    STUDENT_NAME      MARK1      MARK2      MARK3 STATUS
    CNAME                40         50         60 PASS  
    DNAME                60         70         80 PASS  
    ANAME                20         30         40 FAIL  
    BNAME                30         40         50 FAIL Edited by: JamesK on May 30, 2013 12:38 PM
    Edited by: JamesK on May 30, 2013 12:40 PM

  • Displaying the function location no. in task bar

    Hi All,
    Please help me in displaying the function location no. in task bar as message.
    Following is the code I am using :-
    CALL FUNCTION 'ENQUEUE_EZIFLO'
        EXPORTING
            MODE_IFLOT     = 'E'
            MANDT          = SY-MANDT
             TPLNR          = IFLOT-TPLNR
            X_TPLNR        = ' '
            _SCOPE         = '2'
            _WAIT          = ' '
            _COLLECT       = ' '
       EXCEPTIONS
             FOREIGN_LOCK   = 1
             SYSTEM_FAILURE = 2
             OTHERS         = 3
    IF sy-subrc <> 0.
    write : IFLOT-TPLNR.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH IFLOT-TPLNR.
    ENDIF.
    Thanks
    Gautam

    Hi Gautum,
    keep the message type as 'S' it will show the message in the task bar,,
    MESSAGE ID SY-MSGID TYPE SY-MSGTY   "Pass it as 'S"
    NUMBER SY-MSGNO
            WITH IFLOT-TPLNR.
    Regards,
    Prabhudas

  • Expose a Human Task as a web service, is posible ?

    Hi everyone, is there a way to expose a human task as a web service using BPM Studio or other way ?

    Hi Carlos
    Human Task by itself do not have any significance or play any role. Its the Process or Sub Process where that Human Task is used is what is important. And you can Expose any BPM Process as a WebService. Infact by default it is already a WebService if you observer closely. We can generate a WebService client for any BPM Process.
    So I am not clear on what exactly you are asking by exposing a Human Task as Web Service which I guess is NOT possible. This Human Task .TASK file do not have anything except for its definition.
    Thanks
    Ravi Jegga

  • ADF web pages not getting displayed inside the frame

    I am working with an Oracle Application called "Oracle Transportation Management"...to which our Development Group have asked to log an issue to this forum thread. Please let us know if you can assist:
    Client has added an external link to an ADF web page in OTM and when they click the link, it gives an error message saying it cannot be displayed within frame. Per the client, if they add frame busting to the deployment descriptor, it makes other screens in OTM to open in new window.
    ERROR:
    Warning: Unable to load content in a frame. Frame content will load at the top level.
    we tried setting "oracle.adf.view.rich.security.FRAME_BUSTING" to "never", but this makes all selections open in a new window.
    How do we correct this?

    Hi,
    wrong forum. If this is an existing application that you are not developing then the problem needs to be tracked by the application owner. If this happens to be Oracle Applications then you can use one of their forums here on OTN. Note that normally setting frame bursting to never indeed should solve the problem
    Note: This context parameter is ignored and will behave as if it were set to never when either of the following context parameters is set to true
    org.apache.myfaces.trinidad.util. ExternalContextUtils.isPortlet
    oracle.adf.view.rich.automation.ENABLED
    Frank
    Edited by: Frank Nimphius on Oct 27, 2010 7:43 AM

  • I just updated to 10.8.4 and my mail program is showing a series of boxes with AAAAs inside them instead of the email addresses. Also when on Safari web pages are displaying the same AAAAAs instead of type. Firefox displays fine. Can someone help me?

    I just updated to 10.8.4 and my mail program is showing a series of boxes with AAAAs inside them instead of the email addresses. Also when on Safari web pages are displaying the same AAAAAs instead of type. Firefox displays fine. Can someone help me?

    Restart your Mac and immediately hold down the Shift key when you hear the startup chime to boot into Safe Mode. Keep holding the Shift key until you see a progress bar towards the bottom of the screen. You can let go of the Shift key at that point.
    OS X asks you to log in (you will get this screen on a Safe Mode boot even if your Mac is set to automatically log in). Let the Mac finish booting to the desktop and then restart normally. This will clear Font Book's database and the cache files of the user account you logged into in Safe Mode.
    Next, close all running applications. From an administrator account, open the Terminal app and enter the following command. You can also copy/paste it from here into the Terminal window:
    sudo atsutil databases -remove
    Terminal will then ask for your admin password. As you type, it will not show anything, so be sure to enter it correctly.
    This removes all font cache files. Both for the system and the current user font cache files. After running the command, close Terminal and immediately restart your Mac.

  • I've installed the new safari and it didnt load any web pages

    i've installed the new safari and it didnt load any web pages  and i dont knw wut to do thank and pleas help as quick as possible

    Hello,
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    Let us know after that what happens.

  • How to stop the "Thank you for upgrading..." web page from showing on startup?

    Every time I start Firefox the "Thank you for upgrading..."web page shows up. I have my settings set to open with a blank page, but this page always shows up ever since I upgraded.

    This link should help - https://support.mozilla.com/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox

  • Comcast just replaced my cable modem/wireless router.  All devices connect properly except my iPhone 4.  It shows itself to be connected to the network, but it does not load any web page.  Resetting the iPhone does not solve the problem.  Any suggestions?

    Comcast just replaced my cable modem/wireless router.  All devices connect properly except my iPhone 4.  It shows itself to be connected to the network, but it does not load any web page.  Resetting the iPhone does not solve the problem.  Any suggestions?

    Thank you for your response.
    I had rebooted the router (several times, actually), to no avail.
    I do not know the answer to whether MAC filtering is enabled on the router.  Have tried to find info about that, but unsuccessfully.  Router is an Arris TG852G, supplied by Comcast.  I would be surprised if MAC filtering were the issue, since in addition to the computer, we have successfully connected several other devices to the wifi, namely an iPad, a Android phone and a Kindle Fire - all able to access internet pages through the wifi, and all without a need to add the device to a MAC address whitelist.  To add to the mystery, the Comcast tech was able to connect his iPhone 4 to my network and access web pages.  He was unable to connect my iPhone, however, after trying for some time.
    I seem to recall reading somewhere that an iPhone cannot connect to a wireless "n" router, only "b" or "g".  The Arris router is described as a n/g/b compliant router, and as noted the Comcast tech was able to connect his iPhone, so don't know why that would be the issue here.
    By the way, my iPhone does connect wirelessly to my network at home.  This difficulty is at a second home.
    Any other thoughts would be appreciated.

  • Why the speed of MacBook Air to download a web page is lower than iPad2? Even worse sometimes Ipad2 can but MBA can't load the web pages.

    Why the speed of MacBook Air to download a web page is lower than iPad2?
    Even worse ,Why sometimes iPad2 can but MBA can't load the web pages?

    Why the speed of MacBook Air to download a web page is lower than iPad2?
    Even worse ,Why sometimes iPad2 can but MBA can't load the web pages?

  • How to display the data in a multichannel task

    The task is composed of reading data from 12 virtual channels, how can I display the real time data in these 12 channels separately after the DAMx read. I tried to use the Select Signals function in the Express. but that means i have to use 12 of them for all the channels. Is there a better way to do that? thanks
    Attachments:
    untitled.JPG ‏17 KB

    1) In your analog input task, you've added 20 channels. So, the order of the data in the array is simply the order in which you added the channels. Is what you have not working?
    2) Since you are using numerics as display (not graphs), you don't need to use the Wfm datatype, and thus have all that coercing going on. I would setup the Sample Clock after your AI Task and wire it to Continuous Samples, "rate" of 1000, and set the polymorphic Read to 2D DBL NChan NSamp, and pick the data out of the resulting 2D array. Each row is a channel. Average the row to get a simple DBL value.
    3) You don't have to wire a number to each of the Index Array inputs if you expect to get the data sequentially. When you drag the Index Array, LabVIEW assumes you want to get the data sequentially. (that was covered by Dennis as I was typing)
    edit: yeah, You should not use the word "real time" and have a 1000mS loop!
    Message Edited by Broken Arrow on 03-16-2009 07:32 AM
    Message Edited by Broken Arrow on 03-16-2009 07:34 AM
    Richard
    Attachments:
    untitled.GIF ‏36 KB

Maybe you are looking for

  • Problem handling ActionEvent in JButton

    I am having a peculiar while handling an ActionEvent associated with a JButton okB. Here is the code: okB.addActionListener (      new ActionListener()           public void actionPerformed(ActionEvent e)                System.out.println("Triggering

  • Differnce Between Oracle 9i And MS SQL Server 2000

    Hi, What are the difference between Oracle 9i And MS SQL Server 2000. Thnaks

  • Wacom Bamboo

    Having trouble trying to get the touch ring zoom control to work.  When I try to use all I get is an error sound. Also, when using the pen as a brush the eraser acts the same as the pen rather than erasing brush strokes. Does anyone have any ideas? M

  • Low volumn when speaking on phone (Can only hear with ear phones)

    Hi All, I have an 8GB, 1st Gen Iphone OS 3.1.3. When I first purchased the phone the volumn when receiving calls or making calls was clearly audible via speaker or holding to my ear. Fast forward 1.5- 2 yrs and now I can only make/receive calls with

  • How do you know where you are in the Lion queue??

    Can someone tell me how you know where you are in the queue for the Lion download? I am just left with the waiting signal over the lions head?