Generating a Popup window based on BPM Form outcome

Hi All,
I'm currently working with a BPM workflow which is going through 6 levels.
Each level having there own forms and each form having different customized buttons to flow the task to different paths. e.g; ASSIGN, CANCEL, RECHECK etc.
These buttons are the outcomes of the Human Task. (I did not add 'Button' from components)
I have a requirement to generate a popup window based on some of the button actions.
This popup will have only two options.
e.g -
Popup window will ask 'Are you sure to proceed ?' then there should be two buttons to select Yes or No.
'Yes' will send the instance to next stage and 'No' will remain the instance in the same user inbox.
How do I do this ???
Thanks,
Nir

Hi All,
I found the way to generate the popup.
But now my problem is how can I navigate( Complete the task from that level) the task from the Inbox after clicking OK button.
There are several customized buttons in the form (e.g 'APPROVE', 'RECHECK' , 'CANCEL' etc.)
I want to make the instance navigate to next level based on the button clicked.
e.g.
1. User will click on the 'CANCEL' button
2. Popup will display to confirm the action
3. When user click OK in the popup window task should be 'CANCELLED'
(My problem is how to catch the button action he has performed )
Any Ideas ??
Thanks,
Nir

Similar Messages

  • Get values in a popup window into the livecycle forms

    Hi,
    Is it possible to get the values in a popup window in a livecycle form or assign the values in a poup window into livecycle form?
    Thanks

    Hi,
    There is a method in the Acrobat SDK called execDialog that can be called from within an XFA Form. You can pass values to and from a dialog using this method. It is a bit involved and therefore I strongly recommend AcroDialog, which is a plugin for Acrobat from Windjack Solutions (http://windjack.com/product/acrodialogs/).
    You can use this graphical interface to create dialogs and hten copy the script into your XFA Form.
    Hope that helps,
    Niall

  • Can you enable both Windows Based Authentication and Forms Based Authenication for the same web application?

    Hello Community
        In WS2012 and SharePoint 2013 Server is it possible when creating a
    web application to enable both Windows Based Authentication/Negotiate
    (Kerberos) and enable Forms Based Authentication or does the web application
    use either one or the other?
        Thank you
        Shabeaut 

    Yes , you can use dual authentication on same web application. You can use same web application , at OOB login page you will have option to use windows or form login.
    Or you can extend your web application to a new web app and configure extended web application to use Form Based Authentication(Note extended web application will also show same content database , so the content will same only url will be different)
    http://blogs.technet.com/b/ptsblog/archive/2013/09/20/configuring-sharepoint-2013-forms-based-authentication-with-sqlmembershipprovider.aspx
    http://gj80blogtech.blogspot.in/2013/11/forms-based-authentication-fba-in.html
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • How to generate a popup window?

    i want to click on a link...in response of this a popup window opens and show the details...help me regarding this...

    can u please explain me in bit detail.I can try...
    About Popup
    A Popup is displaying a Component somewhere on (or outside) the screen. When you create a new Popup object you specify the coordinates of the Popup relative to another Component (this other Component could be null)
    How to use it
    You should create your own subclass of javax.swing.Popup to use a Popup, because the constructors are Protected. I have an example for you. Also have a look at the API or some of the links other people have listed.
    Example
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.event.*;
    public class PopupEx extends JFrame{
         private javax.swing.Popup pop; 
         private JLabel lab = new JLabel("text");      
         public static void main(String args[]){
              PopupEx f = new PopupEx();
         public PopupEx(){
              //setting the JLabel and placing it in the JFrame
              lab.setBackground(Color.red);
              lab.setOpaque(true);
              lab.setFont(new Font("Curier",Font.PLAIN,200));
              add(lab);
              pack(); //setting the size of the JFrame
              //popup
              pop = new Poppy(this, new JPanel(), 10, this.getWidth()/2) ;           
              pop.show(); //makes the Poppy show at the position (10, this.getWidth()/2) - relative to this
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setVisible(true);
         public class Poppy extends Popup implements ActionListener{
              private JPanel pan;
              private JLabel mess = new JLabel("I love Java!");
              private JButton b   = new JButton("ok");
              //Constructor
              //Overrides the Popup(Component owner,Component contents,int x,int y)               
              public Poppy(Component owner, JPanel contents, int x, int y){
                   super(owner,contents,x,y);
                   pan = contents;
                   pan.setBackground(Color.yellow);
                   mess.setFont(new Font("Curier",Font.PLAIN,20));
                   pan.add(mess);
                   pan.add(b);
                   b.addActionListener(this);
              public void actionPerformed(ActionEvent e){
                   this.hide();
         }//end of Poppy
    }If you have questions, just ask!

  • How to develop a popup window in Oracle BPM WorkSpace?

    Hi,
    Normally, after developing and deploying an application in OBPM, we can see that particular application in the left hand side of the Oracel BPM Work Space web page. On clicking the respective application, it will start working after logging with appropriate user.
    My Question: On login with appropriate user, can i get a popup of that particular application and prompt me for inputs without clicking that link? if so how?
    regards,
    Srinivas.

    Hi,
    You can either use the approach above, which is having an Attribute, type IWDWindow in B's Component Context. When you open the popup you store the reference. When you click close you get that reference back and destroy the window.
    Note, I'd suggest you to have your "View" with no Close Button. Then in Component A you create another View that has an UIViewContainer with your Popup View. You can code the Close code in Component A.
    This way you can do the same and have a code in Component B to close your window.
    Other way would be having it as a Component variable and using the Component Interface on A (create a Method) that goes to Component A and destroy that instance.
    Regards,
    Daniel

  • How do I create a printer friendly page in a popup window for a JSF page

    I have a JSF page that displays a table that shows the inventory level of a particular garment style. The table is like a matrix with each row representing a color of the style and each column representing a size of the garment. So the data in the table cell is for the inventory level of a particular color/size combination (e.g. navy blue of medium size ) for the particular style. The page also allows you to dynamically select a warehouse from a dropdown to see the inventory matrix of that warehouse.
    Now everything has been working fine except that the matrix table is not printer-friendly. So we need to have a Print button or link on the page that will generate a popup window that displays the same matrix table in a printer-friendly format (with different style sheet etc.). What is the best way to populate the matrix table in the popup? The data in the matrx table is stored in a hashmap in a InventoryManageBean of session scope.
    Also, shoud I use window.open to get the new window and if so what do I pass in the URL parameter?
    Any advice is appreciated. It would be great if you can include a code sample as I would think someone else must have had this done before.

    Any one please? This is urgent. Thanks a ton!

  • Close popup window and refresh the parent window

    Hello,
    I have a button in a normal report, when clicked opens up an popup window which is a form containing some items and here in this form (i have some editable text items) I make some changes and click on the apply changes button -- this should update the form, close the popup window and should refresh the parent window.
    can anyone please help me out with this issue.
    Thanks,
    Orton

    you have your popup window. When they apply the changes you want it to close the window, right?
    Modify the button (save, apply changes) and give it url redirect to the custom function you create (See below): javascript:saveChanges();
    in the page header, add a new function:
    <script type="text/javascript">
    function saveChanges(){
         doSubmit('SAVE');//this is the line to save the current form on the popup window. (This assumes SAVE is the request value that should udpate the db)
         window.close();//close the popup window
         window.opener.doSubmit('REFRESH');//call doSubmit function on the parent window to cause the page to refresh.
    </script>

  • Syntax Error In Javascript Popup Window

    I'm wondering if anybody can help me out here with a curious bit of code. I'm using GoLive 9 to generate Javascript popup windows. They seem to work fine, but when I check the syntax I get these errors:
    Line 22 Unexpected PCDATA
    Line 24 The Corresponding start tag is missing
    Specifically, it references this code:
    </script>
    //-->
    </script>
    But every time I try to delete or modify those lines I lose the link to my css file and can't link it back. Does anybody out there with a whole lot more brains than me have a solution? Remember, I'm stupid, so if you have a fix I'd appreciate it being explained as simply as possible. Thanks. BTW here's the entire code for the Javascript popup page below:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="content-type" content="text/html;charset=utf-8" />
    <meta name="generator" content="Adobe GoLive" />
    <title>1408</title>
    <script type="text/javascript"><!--
    <script type="text/javascript">
    //Global var to store a reference to the opened window
    var openedWindow;
    function openWindow()
    openedWindow = window.open('moreinfo.htm');
    function closeOpenedWindow()
    openedWindow.close();
    </script>
    //-->
    </script>
    <link href="../../../BAD/michaelthibault.com/css/agl-styles.css" rel="stylesheet" type="text/css" media="all" />
    <link href="../../../BAD/michaelthibault.com/css/java.css" rel="stylesheet" type="text/css" media="all" />
    <style type="text/css" media="all"><!--
    a:link { color: #838383; }
    a:active { color: #838383; }
    .dsR1 /*agl rulekind: base;*/ { width: 480px; height: 260px; }
    #media { position: absolute; top: 50px; left: 50px; width: 480px; height: 260px; z-index: 1; }
    #pause { position: absolute; top: 320px; left: 50px; width: 180px; height: 15px; z-index: 2; }
    #close_a { position: absolute; z-index: 3; top: 336px; left: 50px; width: 180px; height: 19px; }
    --></style>
    </head>
    <body>
    <div id="media">
    <object class="dsR1" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="204" width="480" align="left">
    <param name="enablejavascript" value="true" />
    <param name="bgcolor" value="#1a1a1a" />
    <param name="src" value="../../media/01_trailers/1408_tlr1r_h.480.mov" />
    <param name="autoplay" value="true" />
    <param name="controller" value="false" />
    <embed align="left" height="204" pluginspage="http://www.apple.com/quicktime/download/" src="../../media/01_trailers/1408_tlr1r_h.480.mov" type="video/quicktime" width="480" controller="false" autoplay="true" bgcolor="#1a1a1a" enablejavascript="true"></embed>
    </object></div>
    <div id="pause">double click in center to pause</div>
    <div id="close_a">
    <a href="javascript:self.close();">close window</a></div>
    <p></p>
    </body>
    </html>

    You have a script tag nested inside another script tag. Try changing this:
    < script type="text/javascript">< !--
    < script type="text/javascript">
    //Global var to store a reference to the opened window
    var openedWindow;
    function openWindow()
    openedWindow = window.open('moreinfo.htm');
    function closeOpenedWindow()
    openedWindow.close();
    < /script>
    //-->
    < /script>
    ...to this...
    < script type="text/javascript">< !--
    //Global var to store a reference to the opened window
    var openedWindow;
    function openWindow()
    openedWindow = window.open('moreinfo.htm');
    function closeOpenedWindow()
    openedWindow.close();
    //-->
    < /script>

  • POPUP WINDOW generation

    i'd like to generate a popup window, much like how on apple's
    website, the close-up pictures pop up (
    http://www.apple.com/keyboard/),
    or something similar. basically, i'd like my viewer to be able to
    click on a small picture and have a bigger picture pop up in its
    own window, w/ a close or X button. is that possible through the
    "getURL" action script? i reckon that this AS only applies to URLs.
    any direct help or link to a good source site would help.
    thanks a million!!!

    i always just make mine in flash. create a background that is
    the same size as your stage. then turn it into a movieclip with a
    blank first frame and a stop. make it like 20 frames. the first 10
    for the popup window in animation and 10 for the out.
    when a thumbnail is clicked it sets a variable equal to the
    link of the image. when the popup gets to frame 10 you have code
    there that takes that link and loads the image.
    make a close button that goes to the 11 frame and plays.
    i usually make the actions layer go like this.
    frame 1 = stop();
    frame 2 = "in";
    frame 10 = stop(); and other code for loading an image.
    frame 11 = "out"
    frame 20 = nothing, let it loop around to the first frame
    where a stop is and it is totally blank.
    make sure this is on a layer that is higher than everything
    else.

  • Pass parameter to popup window

    I have a popup window that open cfm form(ical.cfm).
    <SCRIPT language="JavaScript1.2">
    function poponload()
    testwindow= window.open ("ical.cfm", "mywindow",
        "location=1,status=1,scrollbars=1,width=300,height=300");
    testwindow.moveTo(0,0);
    </SCRIPT>
    I need to pass evetID to the popup window. How I can do that. I need to pass (# CollegeEvents .eventID#)
    <cfoutput query="CollegeEvents">
    <img src="../images/events.jpg" onclick="poponload()"> 
    </cfoutput>

    Make it a url variable.
    In the window.open command, append the name-value pair in the usual manner.  Refer to the address bar of your browser for an example.
    In the pop-up, refer to the variable in the url scope.

  • Can not run form9i in window-based!

    Hi everyone
    I have a question.
    I used Oracle9i Form Builder. I want to run a form which I have designed, but It run in web-based. I don'n know how to run that form in window-based as in Form Builder6i.
    Many thanks for any replies.
    Chung
    [email protected]

    Hanh, as a three tier application it ALWAYS runs inside the borwser (or you can make it run outside using the separateFrame = TRUE setting on the forms cfg file.)
    However, it is still running as an applet.
    You should be able to get this running "outo fo the box" with iDS>
    Start OC4J (from the Start bar) and then press the green light in the builder....
    Regards
    Grant Ronald
    Forms Product Management

  • Popup window required

    Hi all,
    Is their any class where we can generate a popup window ...
    just like Function Module - CJWI_POPUP_TO_CONFIRM_STEP
    Thanks in advance ..

    report  zalv_sample                            .
    tables vbak.
    data it_vbak like vbak occurs 0 with header line.
    select * from  vbak
             into corresponding fields of table it_vbak
             up to 10 rows.
    call function 'REUSE_ALV_POPUP_TO_SELECT'
        exporting
          i_title          = 'SALES ORDER INFO'
          i_zebra          = 'X'
          i_tabname        = 1
          i_structure_name = 'vbak'
        tables
          t_outtab         = it_vbak
        exceptions
          program_error    = 1
          others           = 2.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    regards,
    venkat.

  • Can't screen capture popup windows in Flex web-based application

    Hi all,
    I'm a tech writer looking for a tool that will capture single popup windows of a flex-based web application (perl popups have the same issue).
    Snagit (and all the freeware I've tried), doesn't recognize the popup window as a selectable element, even though the mouse can move the popup window anywhere in the application window.
    We've got lots of snapshots to take, and do not want to have to crop a region and edit out the white space (top of the popup box has square corners, bottoms are rounded).
    Does anyone know of a screen capture utility or way to get these windows in a single click like we can with the standard old window dialog boxes?
    Any help is greatly appreciated!
    Thank you!
    joan

    Hi Alex,
    I don't quite understand.
    Are you suggesting a way to get the snapshots from the server generating the image and not as an end user who opens the application and trys snapping from the Internet Explorer browser window?
    I'll need to be more specific when communicating with the developer. Can you provide a little more direction?
    Thank you!
    :-) joan

  • ADF forms based on BPM human tasks - Invoking webservices/view objects.

    Hi All,
    Is anyone aware of whether the following is a valid implementation that has been carried out before.
    1. ADF forms based on BPM 11G human tasks.
    2.The ADF forms invoke webservices via Webservice data controls. It is pertinent to note that the webservice bring back complex data types. We've tried writing a few forms, resulting in data benig brought back, but not being able to print them to the screen.
    3. The ADF forms also use View Object based on sql to bring back tables of data. If view objects are embedded within the forms, the applciation gives rise to a null pointer exception.
    Considering the form will be invoked via a BPM worklist entry, is there a setting or configuration we should consider before hand. Is this feasible, is there knowledge of this being done commercially.
    Any examples or information regarding the same will be immensely helpful.
    Thanks and Regards,
    Preethi.
    NB : I have posted this in the BPM forum as well as I feel it is relevant to both BPM and ADF.

    Hi Joonas.
    Plese let me explain me better for your understanding
    A big summary for what I meant it's the following:
    1- In the procces you made, when you add the HT activity, you have to implement it, this means declare the input(s) parameters you want. This implementation create the .task file.
    2- Create an application, and projects as HT you have. Each poject are based on the .task file, and automatically create a Data Control (for each project based on a .task) with all you need.
    This w'll be an empty application, so you can customize it all you want. The task selected should have all the parameters previously defined. Those parameters can change if you want.
    2- Create a page(s) in the task flow for the task implementation. You can even split the the payload of the task in differents pages, create your custom pages and any logic you need.
    3- An important aspect is how to match these application with the HT implemented in the process. It's possible, it's a configuration en the Enterprise Manager.
    4- Deploy your application
    All these are explain in the book I mentioned
    Th book you can find it here:
    https://blogs.oracle.com/soacommunity/entry/oracle_soa_suite_11g_handbook_1
    Regards Dariel.
    PS: Please, let me know if you need more details.

  • Firing a view based on a selection from a popup window

    Hi,
    I have a main window in which there is "Display Details" button and a view container to hold a view. On clicking this display button I'm showing a pop-up window which will show the user the options to select a particular view. After the selection and clicking on OK in the pop up window the corresponding view should be shown the view container.
    I tried this by firing an outboung plug to the corresponding view based on the selection in the popup window. The problem is I cannot create a navigation link in the window as the popup view is not part of the main window.
    Could you please provide me your insights on how to handle this scenario?
    Regards,
    Vivek

    Hi Vivek,
    Please refer this article: [Creating Navigations and Embedding Views at Runtime - Web Dynpro ABAP|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50f3660d-ad29-2b10-2482-8120e56942dd?QuickLink=index&overridelayout=true]. Also refer [Thomas' reply in this thread|Embed a view dynamically in a ViewContainerUIElement;.
    Regards

Maybe you are looking for

  • [SOLVED]MacBook Air (3,2) keyboard and trackpad stop responding int...

    Hey guys, I've now got arch running on my air perfectly I think, except for a random loss of trackpad and keyboard input. It happens even with a usb keyboard. I'm not sure if the whole laptop is freezing or only the inputs stop functioning, I believe

  • Please how can I print out my book from the laptop I have adobe digital edition and the print is faded

    Sorry but I can not print from Adobe Digital edition. I bought and down loaded a book and now can not seem to print as the print request is faded out. Can someone help me thanks

  • How to add a 3 sec clip?

    i have minidiscs and would like to record thru itunes. it use to take my 3 sec.mp3 between songs to make sure my minidisc had more than 1 track, but it doesn't appear to now. it looks like it adds, you get the green plus sign, but it doesn't show up

  • FRM-40735: WHEN-BUTTON-PRESSED trigger raised unhandled exception ORA-29261

    FRM-40735: WHEN-BUTTON-PRESSED trigger raised unhandled exception ORA-29261. I m getting above message when I try to click on the button on form created using Form Builder 10G. I want to send email using UTL_MAIL. Code is: declare vSend VARCHAR2(30)

  • Voice clients per AP

    Hi Experts, I would like to know how many voice clients can be supported in a Cisco 3700 AP?  I have seen a document (Document ID:8103); Q. How many wireless IP telephony handsets are recommended per AP? A. IP telephony network sizing is essential to