Oracle OAF Row Reference when navigate between Pages

Hi,
I have a requirement where i have PAGE A with multiple rows.For each row there is a button, when i click the button i am calling the PAGE B.
On PAGE B i am entering some values ,on returning to the PAGE A i need to assign those values(Entered on PAGE B) to the row from where i called the PAGE B
Code in PFR
=============
I am using the below lines  under the Click even of the PAGE A Button
           String rowref = pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
             OARow ref_row = (OARow)am.findRowByRef(rowref);
But how i can refer this  in the Process Request of the PAGE A when i return from PAGE B?
Thanks
Kiran

Hi,
This you may have to track the row which you have updated based on some unique id in the vo and for the same id once you come back..you need to populate the VO.
But my question..cant you handle the first page VO in the second page itself and populate/update the required vo attributes and save.
So automatically it will come in the first page.
Thanks
Bharat

Similar Messages

  • SWF flickers/flashes when moving between pages

    IDCS4 export to SWF with page transitions. Not sure if anyone else is having this problem, but when I navigate between pages, the interactive items/buttons seem to flash or flicker once after each transition.
    Does anyone know how to resolve? I'm building a small booklet in IDCS4. Nothing fancy about it, just a few pages that I want the viewer to be able to navigate through. The flickering is driving me nuts and I can't seem to figure out why it's happening. I've tried just about every setting, searched the net and have found nothing on the subject.
    Any help would be greatly appreciated. Thanks in advance!
    Mark

    Happens with all transitions. Seems to be a bug and I've sent my notes to Adobe. Other posting can be found
    here.
    Hopefully they'll fix it in the future, 'cause it's a great feature.

  • How to keep location in a table persistent when switching between pages

    Hi -
    How would I keep my last location persistent in a table when switching between pages? If I am on cell X and switch to another page, when returning to the previous page, I return to the top of the table. This can be very annoying when trying to find the same location in a large table (or even in a small one).
    Thanks.

    If by "page" you mean "sheet", you can do it. To get back to the same place you were in the other sheet, click on the sheet in the sidebar (the list of sheets/tables/charts/etc on the left). Don't click on the table, click on the sheet.

  • OA Query Region shows previous search results when moving between pages

    Hello All,
    I have a custom OA Page which has a query region based on a LOV for searching device names. The problem I am facing is once device name is searched and I go to another page through the quick links and come back to same Search Device page, it shows the previous searched results. I am not retaining AM for any page navigation.
    Things I have already tried :
    1 . I have tried refreshing VO by using clearcache and reset methods on VO.
    2. Get the Go button from the query region in ProcessFormRequest and on Go button click I use forwardImmediatelyToCurrentPage. And in Process Request method I am querying the results manually when Go button is clicked. Otherwise I am manually making the where clause condition 1=2 and ensuring that the VO does not return any rows.
    But still I am not able to get rid of the issue.
    The code used is pasted below for your reference. It is urgent. Can you please provide any pointers.
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    try
    VpaAdminAMImpl am = (VpaAdminAMImpl)pageContext.getApplicationModule(webBean);
    TkvpaDeviceSearchVOImpl deviceAll = am.getTkvpaDeviceSearchVO1();
    deviceAll.clearCache();
    deviceAll.reset();
    deviceAll.setWhereClause("1=2");
    deviceAll.setWhereClauseParams(null);
    String query = deviceAll.getQuery();
    System.out.println("getSearchResult query :="+query);
    deviceAll.executeQuery();
    OAQueryBean queryBean = (OAQueryBean)webBean.findChildRecursive("region1");
    String goAction = queryBean.getGoButtonName();
    if(pageContext.getParameter(goAction) != null)
    getSearchResult(am, pageContext, webBean);
    catch(Exception ex)
    throwException("SearchDeviceCO.processRequest",ex);
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    String action = pageContext.getParameter(EVENT_PARAM);
    OAQueryBean queryBean = (OAQueryBean)webBean.findChildRecursive("region1");
    String Go = queryBean.getGoButtonName();
    System.out.println(pageContext.getParameter(Go));
    if(pageContext.getParameter(Go) != null)
    pageContext.forwardImmediatelyToCurrentPage(null,false,"N");
    public void getSearchResult(VpaAdminAMImpl am, OAPageContext pageContext, OAWebBean webBean)
    try
    String device = pageContext.getParameter("deviceSearch");
    StringBuffer sb = new StringBuffer();
    if(device != null && device != "")
    sb.append(" DEVICE_NAME = '");
    sb.append(device);
    sb.append("'");
    String sql = sb.toString();
    TkvpaDeviceSearchVOImpl deviceAll = am.getTkvpaDeviceSearchVO1();
    deviceAll.setWhereClause(sql);
    deviceAll.setWhereClauseParams(null);
    String query = deviceAll.getQuery();
    System.out.println("getSearchResult query :="+query);
    deviceAll.executeQuery();
    }catch(Exception e)
    e.printStackTrace();
    Thanks in Advance,
    Abhishek Mishra

    Hi Anand,
    The getSearchResult method also does the same thing. I have also tried to remove the dependency on getSearchResult and wrote the same code in ProcessRequest() but still it does not solve the problem.
    In fact, I have ensured that the VO does not contain any records and have checked these by using SOPs and debug in JDEV. The interesting point is the VO does not have any records but still the previous search data and search criteria is shown when we navigate to the page. Printed the query just before performing execute query and that query does not return any records. Also tried printing something if there are any records in the VO by using vo.hasNext().
    Data gets stored somewhere and it is shown when the page is navigated from other page. FYI, this page is accessed from quick links and there are other pages also in the quick links and when we navigate between these pages we get to see the previous search results. Tried methods clearCache(), reset() on VOs but still unsuccessful.
    Not even that I thought that the VO may be corrupted in some sense so I created a new VO instance in the AM and then used newly created VO instance in the query region. But still no luck.
    Any pointers will be appreciated.
    Thanks in Advance,
    Abhishek

  • View Link and and navigate between pages problem...

    Hi, everyone! Hope someone can help with my problem. In DB I have one table with informationa about Employees and Jobs. From this one table I made one EO from which I made 2 VO - EmployeeVO and JobsVO. I link these two VO with ViewLink - EmpJobVL (1 to 1 realtionship).
    Then I created 2 .jspx pages. In one page I droped EmployeeVO but in second page I droped JobsVO. In page template I put button with which I can navigate between these two pages.
    The problem is... when I run my employee page and navigate to correct record with "next" button and then try to navigate to jobs page then in jobs page I can't see correct record. I always see there first record. Why it is so and what can I do?
    Hope that someone helps me,
    Best regards, Debuger!

    Hi Debuger,
         No probs, U can keep ur Jspx as such u just need to clean up ur PageDefs..... Dont struggle more urself its such a easy job...
         Delete all ur page def entries and then have a copy of ur jspx coding in a notepad and delete that too....
    make ur jspx and page def a fresh one re-drag ur VOs and paste ur jspx codings again
    Ur VOs will get binded automatically......... :)
    Regards,
    Suganth.G

  • Problem when moving between pages

    Hi all,
    I have buit an interface in Flash Catalyst and imported it into FB to modify a few little things. However, when I run the application and move between the "pages" I built in Catalyst, I noticed that the pages dont reset at the top. By this I mean: if I scroll down a long page and click a "next" button, the following page wont begin at the top, it will display at the point where I scrolled to on the previous page.
    Is there a way to make a resulting page start at the top like it would if it were HTML?
    Thanks in advance!

    Heya!
    Thanks for the reply...!
    When i import the fxp file in to FB the pages are already built. How would I go about putting the pages in a scroller (since catalyst doesnt already do it)?
    I can drag out the Scroller component, but it doesn seem as if I can build anything in it. Sorry... I am quite new to this.
    I made a quick little example and pasted the code below. Would I be able to modify this in some way?
    Thanks again for your assistance... it is much appreciated!
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:d="http://ns.adobe.com/fxg/2008/dt" xmlns:fc="http://ns.adobe.com/flashcatalyst/2009" xmlns:components="components.*" xmlns:ATE="http://ns.adobe.com/ate/2009" xmlns:ai="http://ns.adobe.com/ai/2009" xmlns:flm="http://ns.adobe.com/flame/2008" xmlns:lib="assets.graphics.Untitled_1.*" backgroundColor="#FFFFFF" height="900" preloaderChromeColor="#FFFFFF" width="1040">
        <fx:Style source="Main.css"/>
        <fx:Script><![CDATA[
            protected function button_clickHandler():void
                currentState='Page2';
            ]]></fx:Script>
        <s:states>
            <s:State fc:color="0xcc0000" name="Page1"/>
            <s:State name="Page2"/>
        </s:states>
        <fx:DesignLayer d:id="2" d:userLabel="Layer 1">
            <s:Button includeIn="Page1" label="Button" x="337" y="191" click="button_clickHandler()"/>
        </fx:DesignLayer>
        <fx:Private>
            <fc:Guide x="33"/>
            <fc:Guide x="230"/>
            <fc:Guide x="1002"/>
            <fc:Guide y="290"/>
            <fc:Guide y="314"/>
            <fc:Guide y="221"/>
        </fx:Private>
    </s:Application>

  • Navigate between pages in JSP

    i have multiple .jsp pages. in the sequence of
    login.jsp-->DiaryPages.jsp-- EITHER-Open.jsp OR read.jsp
    now what i get is i am able to go to "DiaryPages.jsp" from 'logIn.jsp" using <jsp:forward page = "DiaryPages.jsp"> but in "DiaryPages.jsp" when i use <jsp:forward page = "Open.jsp"> or <jsp:forward page = "Read.jsp"> to go to either of these pages ,depending upon a few conditions , i still get redirected back to log in page
    so forward tag is kinda working here like a toggle here between first two pages and it's completely ignoring the forward tag in the second file, what am i doing wrong here ? any help --------------Please

    One suggestion - consider using Struts framework. You can control the flow of the application from an XML configuration file and don't have to have such logic in the JSP itself.

  • IPad 1 - safari pulls days old pages when going between pages and sometimes drops out

    Does anyone have a problem with Safari whereby, you go from one we page to another and when going back to a previous page, Safari shows a days old page?  In addition, Safari will drop out to the 'desktop' at times for apparent reason.  Doesn't matter if the we page is a simple page or one with video.  This all started with Apple pushing their latest iOS.  Apple wants to charge $30 for you to ask about this problem but it's their iOS that pushed on their product.  Like I stated, it worked fine before their latest iOS push.

    Jesus H Christ this is still driving me up the wall, i can't believe everyone is just accepting this.  Isn't there a way to fix this?  Can we at least have an option to turn this OFF?? Reloading a page everytime i go back is such a waste of time/bandwidth/my nerves when i am in the middle of a page

  • Bug when switching between pages in Books

    Hi,
    if I create a book with some double spreads and try do change pages by using the arrow keys then everything is fine when I go to a later page, but when I go back (i.e. left) it jumps over the double spread.
    Mac OS X 10.7.2.
    Kind regards,
    Martin

    Got it!  I can reproduce that, thanks for the report Martin.

  • Teamviewer changing lists as navigate through pages-probl for anyone else?

    Hi All,
    We're using R/3 4.7, ESS 50.4 and MSS 6.1.20.  After much correspondence with SAP we have discovered that the teamviewer does not behave the way we thought/want it to.
    Basically as the teamviewer is applied on a page basis, each page gets their own teamviewer.  In our teamviewer we have 3 distinct lists of employees.  So if on one page you were looking at list 2 and you navigate to a different page, we expected to be on the same list.  Unfortunately, if the teamviewer on the new page was previsouly looking at a different list, say list 3, the employees for list 3 would be displayed.
    This is not what we want.  In essence we want the teamviewer to work off the MY Staff workset, so that when you navigate between pages, the teamviewer will remain on the same employee in the same list.  This to me is the most user friendly way and the way that makes the most sense. 
    If a manager wanted to view data for a single employee from a number of pages, (s)he could quite possibly have to reset the teamviewer on each page and select the employee again.  This is totally unacceptable..
    Has anyone else been bothered by this?  Did anyone come up with a solution?  I can't believe that this issue has not arisen before.  I would be interested to hear similar stories.
    Many Thanks,
    Liz.

    After much correspondence with sap, this is infact the expected behaviour on the team viewer

  • Slightly shift between pages is driving me nuts.

    Hello,
    I've been building my site and I noticed that there is a slight shift in between all of the pages and the contact page, I have copy and paste several times the coding from one page to the other one... sometimes it shifts up and down, when navigating between pages. I was wondering if someone can figure this out. Here is the coding for you to look. The first one si the index which is the correct position for the spry menu, title to be in, the second one is the contact one which is the one that shifts.
    index:
    <!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" />
    <title>Works</title>
    <style type="text/css">
    img {
              background-color: #FFF;
              top: 10px;
              right: 10px;
    #pix p img {
              vertical-align: middle;
    #pix div #MenuBar1 {
              font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
    #footer div p {
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: x-small;
    p {
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 14px;
    #about p {
              font-size: 9px;
    #about p {
              font-size: 12px;
    #about p {
              text-align: center;
    #about p {
              text-align: left;
    #pic01 {
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 10px;
              background-color: #FFF;
              letter-spacing: 0%;
              clear: none;
              float: none;
              height: auto;
              width: 500px;
              border-top-width: thin;
              border-right-width: thin;
              border-bottom-width: thin;
              border-left-width: thin;
              border-top-style: none;
              border-right-style: none;
              border-bottom-style: none;
              border-left-style: none;
              left: auto;
              clip: rect(auto,auto,auto,400px);
              padding-left: 0px;
              top: auto;
              right: auto;
              bottom: auto;
              margin-right: auto;
              margin-left: auto;
    #header .center {
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 36px;
    </style>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
        font: "Trebuchet MS", Arial, Helvetica, sans-serif;
        width: 1000px;
        margin: 0 auto;
        font-size: 100%;
        background: #FFF;
    h1 {font-size: 36px;}
    #pix01 {
              width: 600px;
              border: 1px dotted white;
              margin-top: 0;
              margin-right: auto;
              margin-bottom: 0;
              margin-left: 260px;
              height: 595px;
    #pix01 img {
              height: 595px;
              width: 600px;
              vertical-align: middle;
    #pix01 p {
        font-size:12px;
    #footer {
        font-size:12px;
    /**re-usable classes**/
    .center {text-align:center}
    .right {text-align:right}
    /**clear floats**/
    .clearLt {clear:left; display:block; height:1px; visibility:hidden;}
    </style>
    </head>
    <body>
    <div id="header">
      <h1 align="center" class="center">Arturo Herrera</h1>
      <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="index.html">Home</a></li>
        <li><a href="Works.html">Works</a></li>
        <li><a href="#">About</a></li>
        <li><a href="#">Dossier</a></li>
        <li><a href="Contact.html">Contact</a></li>
        <li><a href="#">Links</a></li>
        <li><a href="#">New Exhibitions</a></li>
        <li><a href="#">Video</a></li>
      </ul>
      <p>
        <!--clear floats in menu-->
      </p>
      <hr class="clearLt" />
      <p><!--end header--></p>
    </div>
    <div id="pix01"><img src="background2.jpg" name="main" width="600" height="595" id="main" /></div>
    <p align="center"> </p>
    <div id="pic01">
      <p align="left" class="text">Background # 2 Cut &amp; Paste 2/5</p>
      <p align="left" class="text">Mixed Media: magazine collage, glue, wood, photographic paper, matt board, nails,</p>
      <p align="left" class="text">plywood, wire, sylicon</p>
      <p align="left" class="text">tags: identity, citizenship, illegal immigrant, immigration, racial profile, status, canada,</p>
      <p align="left" class="text">usa, latino, home sexuality</p>
      <p align="left" class="text">2012</p>
    </div>
    <p align="center"> </p>
    <p align="center"><a href="https://www.facebook.com/arteisfoto" target="new" class="facebook">Facebook</a></p>
    <p align="center"><a href="http:/www.arteisfoto.com" target="new">Arte is Foto</a></p>
    <p align="center"> </p>
    <div id="footer">
      <div align="center">
        <p> </p>
        <p>Copyright 2002-2013 © Arturo Herrera. This is site is contantly changing.</p>
      </div>
    </div>
    <p> </p>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    Contact:
    <!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" />
    <title>Works</title>
    <link href="images.css" rel="stylesheet" type="text/css" />
    </head>
    <body><!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" />
    <title>Works</title>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
        font: "Trebuchet MS", Arial, Helvetica, sans-serif;
        width: 1000px;
        margin: 0 auto;
        font-size: 100%;
        background: #FFF;
    h1 {font-size: 36px;}
    #pix01 {
    width: 480px;
    border: 1px dotted white;
    margin: 0 auto;
    #pix01 img {
        height: 130px;
        width: 130px;
        vertical-align:middle;
    #pix01 p {
        font-size:12px;
    #footer {
        font-size:12px;
    /**re-usable classes**/
    .center {text-align:center}
    .right {text-align:right}
    /**clear floats**/
    .clearLt {clear:left; display:block; height:1px; visibility:hidden;}
    </style>
    </head>
    <body>
    <div id="header">
    <h1 class="center">Arturo Herrera</h1>
    <ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a href="index.html">Home</a></li>
      <li><a href="Works.html">Works</a></li>
      <li><a href="#">About</a></li>
      <li><a href="#">Dossier</a> </li>
      <li><a href="Contact.html">Contact</a></li>
      <li><a href="#">Links</a></li>
      <li><a href="#">New Exhibitions</a></li>
      <li><a href="#">Video</a></li>
    </ul>
    <!--clear floats in menu-->
    <hr class="clearLt" />
    <!--end header-->
    </div>
    <p align="left" class="text"> </p>
    <p align="left"> </p>
    <p align="center" class="contact">If you would like to contact me please send me an email at: <a href="mailto:[email protected]">[email protected]</a></p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <div id="footer">
      <div align="center">
        <p> </p>
        <p>Copyright 2002-2013 © Arturo Herrera. This is site is contantly changing.</p>
      </div>
    </div>
    <p align="center" class="contact"> </p>
    <p align="center" class="contact"> </p>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
      </script>
    </body>
    </html>
    I hope this is something easy to fix, Thanks!! this is the website too : www.arturoherrera.ca

    arteisfoto wrote:
    John, I duplicated the rule pix01 to pix02 and assigned it to the next image and its working, would you say that is ok?
    It works but it's high maintenance using unnecessary, repetitive IDs for repeating page elements with the same CSS rules defined for each ID. There's lots of redundant CSS and you need a new ID defined for every image. That's creating a rod for your back.
    Convert to a class - that's what they're for - and you're done.
    Change
    #pix01 {
              width: 600px;
              margin-top: 0;
              margin-right: auto;
              margin-bottom: 0;
              margin-left: 260px;
              height: 450px;
    to
    .pix01 {
              width: 600px;
              margin-top: 0;
              margin-right: auto;
              margin-bottom: 0;
              margin-left: 260px;
              height: 450px;
    Change all
    <div id="pix01">
    to
    <div class="pix01">
    and you're done.
    Note: there's even a school of thought which says IDs in CSS can be avoided altogether.
    http://screwlewse.com/2010/07/dont-use-id-selectors-in-css/

  • EPCM error when leave Webdynpro page ???

    In Portal, when navigate from page with webdynpro iViews to any other workset or page, clicking in some node of the top level navigation, opening a windows alert popup , and said: Exception in EventDistribute occurred. Throw it to upper level?
    And then click accept 4 times let me continue.
    After trying multiple alternatives, the issue certainly is occurring when:  I am in a page with at least one webdynpro java, and I go to another. That is, to leave or close the webdynpro iView has generated  the problem.
    When I choose "debug" the exception with MS Dev studio, I found this error code, this is the point when the exception raise:
    EPCM.eventDistribute=function( consumers, eventObject, resultArray){
    var isRetValCollect=(resultArray != null);
    var eListener
    var retVal;
    for (var idx in consumers){
    eListener=consumers[idx];
    retVal=null;
    try{
    retVal=eListener.call( eventObject );}
    catch( e){
    if (EPCM._private.dbgException){
    if(confirm("Exception in EventDistribute occured.\nThrow it to upper level ?")) throw(e);}
    if(isRetValCollect && retVal != null){
    resultArray[resultArray.length++]=retVal;}
    any suggestion ?????
    thanks in advance!
    Leandro.

    Add this: not only when leave a webdynpro iview or page is the problem, also when resizing a webdynpro page in the IE.
    Any change in the screen size, raise this popup error
    any idea???
    thanks in advance

  • How to open and navigate between human task forms in a same page?

    Hi
    I use Oracle BPM 11.1.1.5
    I have a question about taskflows in BPM Application.
    In ADF web application, I create a sipmle task flow and insert view id and bind these to jspx pages, my pages are opend in same page when
    return an outcome.
    For exapmle I have three pages like A,B,C.
    In task flow, insert three view ids and bind to A,B,C.
    My first pages is A, and when outcome is B navigate to B, when my outcome is C then navigate to C in a same page not separate pages.
    But my problem is here.. in BPM Application when create task forms, every task has a separate task flow that there exist a single view id and a wild card flow in it.
    In BPM workspace when initiate human task form is closed, I should press refresh button to see next human task form in task list table.
    I tried to create a simple task flow and insert human task forms in it and navigate between these.. but show human task form in wrong display and don`t show some component and human task payload.
    Now, my question : How to open and navigate between human task forms in a same page like software installation?

    Having a separate Data Control for each human task is normally the case. There is a way to assign multiple human tasks to a single data control (and one task flow), but I don't think that this is going to help you with what I think you're trying to do.
    If your human task is called "EmployeeDetail", then you'd use the data control associated with this for the UI pages in the task flow diagram that is associated with this human task. For example, you might have a first page that has just the basic employee information - the fields (at least the ID field) would come from the EmployeeDetail data control. When the end user clicks "Next", you might have this UI page flow to a second UI page in the task flow diagram that has the employee's address information. You might place the address fields from the EmployeeDetail data control onto this second UI page.
    You might be asking how the work item instance can automatically flow to the next interactive activity in the process while staying inside the first interactive activity's human task's task flow diagram. This is not how it works - the task flow diagram models the end user interaction while inside a single human task that is tied to a specific interactive activity in the process. If you want a the end user to be able to move the instance through multiple interactive activities in the process in one interaction, look at "Activity Guides". Activity Guides do a nice job of this.
    Dan

  • When a single-page form expands to more than one page, can you reference the new individual "pages" that have been created by the expanding table?

    Don't think this is possible but would love to be wrong.
    Bullet Points:
    1) In my demo form (simple hierarchy: form1.page1.table1.row1), 8 occurrences  (instance "0" through instance "7") of the repeating row1 can be visible
         before it causes a page break and adds another "page".  No issues there.
    2) I'm thinking about trying to control the end-users navigation abilities to only on-screen "previous page" and "next page" buttons.
         (So no scrolling from page to page; keep them where we want them.) Only way I can see making this work is if the form is designed
         and coded to only allow one page to be visible at a time --- nesting things correctly in a parent object then hide all necessary subforms
         and only make the appropriate subform visible.
    3) But when working with tables,  when occurrence 9 gets added (aka instance 8), it triggers an on screen "Page 2" to be added.
         End user can now scroll between Page 1 and Page 2. 
    4) Once Page 2 has been added, is there a way to reference Page 1 (as we see it on screen) and set it to be hidden?
    5) Is what we are seeing on screen as "Page 1" and "Page 2"  actually this.resolveNode("page1[0]") and this.resolveNode("page1[1]") ?
         Tried messing around with referencing it this way but didn't seem to work.  Maybe I had a typo but if we never set the subform named "page1"
         to allow multiple instances, I'm guessing it's not referenced this way.
    Any thoughts would be great.  Thanks so much to this community.
    Brian

    If you're looking at learning a bit more about database design (looking at your description of what you've done in creating a separate table for each category of item sold sounds like you're approaching it as though it was a flat-file rather than a relational database), there's a few books that I could direct you to:
    Beginning Database Design (ISBN 978-1590597699)
    Database Design for Mere Mortals (ISBN 978-0201694710)
    Databases Demystified (ISBN 978-0072253641)
    Absolute Beginner's Guide to Databases (ISBN 978-0789725691)
    I've also got an older book that's always sitting by my desk called Dreamweaver MX Databases (ISBN 978-0782141481), which I still reference regularly - chapter 3 on coding practices and chapter 5 on database design provide very good overviews of the subject.
    There's also a Database Development for Dummies, but I'm not a huge fan of the series where they're tackling technical subjects.
    Without knowing the data you're modeling, it's quite difficult to make generalisations, but I'd probably be looking at a single table called 'Product' (which contains all the product records), and which had in it a boolean for 'new item' and for 'on sale' (you could then use SQL to filter out new and/or sale items when you create your recordset). I'd then have a look up table called 'Categories' which held the values 'necklace', 'handbag', 'belt', and 'purse' which the Product table could then reference to identify.
    Breaking your data down into a logical structure like this is called 'normalisation' (see http://en.wikipedia.org/wiki/Database_normalization) - although it's a bit technical. There's a simpler practical explanation of a similar query to yours at TechRepublic (http://articles.techrepublic.com.com/5100-10878_11-5288500.html), which uses MS Access, but don't worry about that as it's teaching a concept which is applicable no matter what the database server.

  • When clicking on links that open in a new window, the links don't open and Firefox freezes in a way. I can navigate the page I am on but cannot click to open a new tab or bookmark.

    When navigating the internet, if I come across a web page that has a link to open a picture or program in a new window, if I click on it, it does not open. Firefox immediately looses functionality in that I cannot open a new tab with the mouse wheel, right click to open a new tab, or use my bookmarks in either the drop down or toolbar to navigate away. I can usually still navigate the page that I am on, for example, (https://loanconsolidation.ed.gov/AppEntry/apply-online/appindex.jsp), when it freezes I cannot click on any of the content at the center of the page but I can still use the links from the list on the far left. For an example of the pictures, (http://www.insect-sale.com/), if you click on "New Arrivals" at the top of the page it takes you to a list of products that can only be viewed by clicking on them. Usually a picture of the item would open in a small window but it does not and Firefox freezes. This has also happen when I try a view a degree audit on a school's website where a program would usually open in a new window. The only thing I have been able to find that still functions properly when this happens is the home page button. I can click on it or use the wheel to open it in a tab just fine, but if I try and go anywhere else I cannot. The only way I can get Firefox back to normal is to use the Task Manager and end the process. Another thing I have noticed, that may or may not be related; is that my Norton Internet Security toolbar, that should show up below the bookmarks toolbar and above the tabs, only shows up about 1 out of every 10 times I open Firefox. Some days it doesn't show up at all. If it does show up and I log into Identity Safe, the autofill for the programed website works, even if the toolbar doesn't show up the next time I open Firefox.

    Go to Tools->Options->Apps
    Here you should see two columns: Content Type on the left, Actions on the right.
    Find and select excel spreadsheet or any other content type in the left column. There should be a corresponding action in the right column. What is it? You can use the drop-down list to select the option you want:
    Always Ask - Firefox will ask each time: What do you want to do with this file?
    Save file - Firefox will save this file to your computer
    Use - Firefox will give this file to the program to open it
    In case of saving, Firefox will either prompt you every time where you want the file to be saved, or save it to the default location. It depends on the preference in
    Tools->Options->General->Download

Maybe you are looking for

  • Empty lines being transfered with RSCRM_BAPI

    Hi guys, I have to transfer the result f one query to a table. For this requirement Iu2019m using transaction RSCRM_BAPI transaction. The problem is that my query is gigantic and it has a structure in rows with 150 selections visible and 250 that are

  • Is it a bug of Swing? (help!!!)

    meet problem of abnormal table blinking. The scenario is like this, For Table 1, there is a backgroup thread which receive message and update table's model and then call table1.updateUI(); table1.validate(); directly to let JTalbe fresh. (update in n

  • Problems using multiple joins for search

    I am new to dreamweaver and coding and I am battling to get my head around joining tables and using multiple joins to create a search result recordset. I have a the following tables setup; Venues table venueID name category (text) city provinceID (nu

  • Saving image as JPG

    Hi all, after editing my photo in Photoshop I save as JPG but later when I open it, it automatically opens Photoshop everytime which I don't want to do.  What am I doing wrong? Thanks so much for your advice. Louise

  • Can't download the trial version for CS6 on Mac

    I keep getting the message when I go to the trial page: Adobe Photoshop CS6 is available only for Windows® or Mac OS. You can learn more about the product trial by viewing the page with a browser in one of the supported operating systems. Visit thesy