Urgent ! open the same page in query and create record mode...

We have to page in our project
First page include a list show employees(page1) and second page(page2) showsdetail information on employees.
We have two button on page1 ("CREATE NEW EMPLOYEES" and "EDIT EMPLOYEES")
When we press create button we need to create a record on second page.
Second page is needed to open create insert mode.
When we press edit button we need to edit emloyees details.
Second page shows queried record.
can we implement this using faces config xml without writing code . Or do we need to write code.
How can we implement create insert and query event on the same page call (page2)...
Thanks a lot...

Hi,
using ADF, drag the edit button from the component palette and point its navigation case to the next page that contains the edit form.
Drag and drop the create button from the data control palette by dragging the "create" operation of the VO to the page. Also set the navigation case to the edit form and change the pagedef file (the binding) for this "Create" operation to use CreateInsert as an operation
Frank

Similar Messages

  • If I am viewing a page with the words date or match, the words are hyperlinks to a dating website. This is not so if I view the same pages in IE and has not been picked up by Norton, Spybot or malware bytes etc. Is this a Firefox bug?

    If I am viewing a page with the words date or match, the words are hyperlinks to a dating website. This is not so if I view the same pages in IE and has not been picked up by Norton, Spybot or malware bytes etc. Is this a Firefox bug?

    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    * "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • HT1904 when accepting the terms and conditions for the new terms of agreement of the policy, i press accept the terms and press agree and it will not allow me to purchase the music because it keeps going to the same page of terms and agreements

    when accepting the terms and conditions for the new terms of agreement of the policy, i press accept the terms and press agree and it will not allow me to purchase the music because it keeps going to the same page of terms and agreements

    If you can't scroll to the bottom
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.

  • On most of the web pages I open, Firefox hangs and gives me this error:Unresponsive script. I can open the same page w/Google Chrome, and don't get that error.

    I've performed all the fixes multiple times, and I keep getting this error. I don't get the error on the same page with either IE or Chrome. Sorry to say, Chrome is now my default browser...

    Does it mention the name of the script or its chrome protocol URI?
    Create a new profile as a test to check if your current profile is causing the problem.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer files from a previously used profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over problems.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Safari automatically opens the same page repeatedly bis

    Hello, I read somewhere about this issue with a similar title but I didn't see a way to react.
    So I'm here with my question: after updating Pinterest (a message appeared on the screen with the question to update) my browsers repeatedly open the iTunes Pinterest app page.
    This is very anoying. Even with the browsers closed, Safari opens automatically and opens that particular page.
    Does anyone know how to solve this please?
    Many thanks on beforehand for a reply,
    Jan

    Safari > Preferences > Privacy > Cookies and other website data:
    Press the "Remove All Websitedata:" button.
    It will take a while to finish.
    Turn off Extensions if any, and launch Safari.
    Safari > Preferences > Extensions
    Do you have Adblock installed?

  • JSP, DataWebBean: How to dynamically set the where clause of query and display record

    Hi,
    I am reposting this question as per suggestions made by Mr. Dwight.
    I have used ViewCurrentRecord web bean to display records from EMP table. I have to use the Dept_Id_FK from the current
    record of the EMP table to display corresponding records of Dept table. I have a view object called DeptView in my Business
    Components which selects all the records from the Dept table.
    How do I get the value of Dept_Id_FK and use it to display the required records of the Dept table?
    I tried to declare a variable and get the value of Dept_Id_FK but it did not work. My code is as follows:
    <%! String m_DeptId = null; %>
    <jsp:useBean id="RowViewer" class="oracle.jbo.html.databeans.ViewCurrentRecord" scope="request">
    <%
    RowViewer.initialize(pageContext, "EMPApp_EMP_EMPAppModule.EMPView1");
    RowViewer.setReleaseApplicationResources(false);
    RowViewer.getRowSet().next();
    m_DeptId = (String)RowViewer.getRowSet().getCurrentRow().getAttribute("DeptIdFk");
    %>
    </jsp:useBean>
    Thanks.
    null

    First of all, Thank you very much for making use of the new topic format. It is very much appreciated.
    As for your question, I think there are several different ways to accomplish what I think you want to do.
    1. Create a view object that includes both Emp and Dept entities and join them there. In this case, your query would look something like this:
    Select e.empno,e.name,...,d.dname,d.loc from emp e, dept d
    where e.deptno = d.deptno
    You should be able to create a JSP off of this view object that contains both the employee and department information. In this case, BC4J takes care of the foreign key to primary key coordination.
    2. In order to set a dynamic where clause for a view, you need to do the following in your usebean tag:
    rsn.initialize(application,session, request,response,out,"DeptView");
    rsn.getRowSet().getViewObject().setWhereClause("deptno=" &#0124; &#0124; m_DeptId);
    rsn.getRowSet().getViewObject().executeQuery();
    rsn.getRowSet().first();
    You will need to do this in a separate usebean tag from the EmpView, since the usebean can only initialize one view object.
    In other words, you would have your ViewCurrentRecord bean tag for the EmpView, then a separate one for the DeptView where you use the above code to set the where clause to display just the information for the department you want.
    Another option, but one I'm not sure would work as well, is to create a master-detail JSP to do this for you. Usually a master-detail is a one-to-many (one department to many employees). Your request appears to be the reverse, but might still be doable using the same mechanism.
    You set up relationships between views in your BC4J project using View Links. If you used the BC4J project wizard and created default views, some of these links may have been created for you. They are created when BC4J detects a foreign key to primary key relationship in the database.
    You can create your own View Links using the View Link wizard. Select your BC4J project node and choose Create View Link... from the context menu. You will be asked to select a source view (Emp), and a target view (Dept), then select the attribute in each view that related the two of them (deptno).
    Next, you need to reflect this new relationship setting in your application module. Select your app module and choose Edit from the context menu. On the data model page, select the EmpView node in the Selected list. Now select the DeptView node in the available list and shuttle it over. You should see DeptView1 via yourlink appear indented under the EmpView node. Save and rebuild your BC4J project to reflect the changes.
    In your JSP project, you can now have the wizard create a master-detail form for you based on DeptView1.
    Let me know if the above answers your question, or if I have misunderstood what it is you wanted to do.
    null

  • A webpage suddenly stops loading and just shows 'connecting...'. Opening new webpages in new tabs in the same window or in a new window gives same problem, while IE does not have any such problem opening the same page simultaneously

    this issue is not limited to one website, it seems to be problem with the browser or possibly any plugins but not any specific webpage

    The default of the pref network.http.max-connections has been increased from 30 to 256 in Firefox 6+ versions.
    Try to decrease the value of the pref <b>network.http.max-connections</b> from 255 to a setting like 30 as used in Firefox 3 versions.
    *https://support.mozilla.com/kb/Firefox+never+finishes+loading+certain+websites

  • Appraisal Documents (WD UI) open the same page in the pop up browser.

    Hi Expert,
        I am using the business package for  Appraisal Documents. I got some problem on navigate to the new browser.
       When the user click on a link in 'Appraisal Documents (WD UI)' in should open a new pop up for Appraisal Document(HAP_MAIN_DOCUMENT), but It open Appraisal Documents (WD UI) again in the new pop up browser.
       I am not sure whether i did it correct or not. Below is the step that i did.
    - Copy Appraisal Documents (WD UI) page and Appraisal Document'(HAP_MAIN_DOCUMENT) to the folder.
    - Change system alias for pages.
    - Add Appraisal Document (WD UI) operation of Employee Business object to Appraisal Documents (WD UI) page.
    - Assign them to the role.
      Could you please suggest. If you have a document about using the page from business package please provide me
    Thank you in advance,
    Noppong Jinbunluphol.

    we kindly recommend you to re-check note 1600380 paying attention to
    point 1.2 which deals with the relevant configuration to ESS for
    flexible process.
    please notice per default role delivery two services two roles for
    Performance Management will be displayed. Both services are named
    Appraisal documents. The difference is that one service is for the
    Predefined Management Process employee access, the other one for the
    configurable/flexible Performance Management employee access. The ESS
    business package is set up in a way that all services/iviews are in
    default role delivery available and customer can choose which one to
    leave in (This is different to MSS where there is an standard role
    delivery and a hidden iview delivery. There the customer can choose
    whether or not to remove existing iviews in standard role delivery or if
    the ones which are hidden shall be made visible in the role).

  • Safari automatically opens the same page repeatedly

    I just spent the last hour searching this forum for solutions and I found one. I just can't find the original post with answer to mark it as helpful! I also lost the Apple Support Link but if you search 3rd part add-ons, the solution is there. In my case, I downloaded the Pinterest Pin It App. Today I went to use it and it opened my browser with the iTunes Store App page for Pinterest. From there, it continued to open it repeatedly for the next hour (every 5 seconds).  When I quit the app and uninstalled it, the problem was solved. Good luck to you all!

    When you log out, (SHIFT COMMAND Q) uncheck "reopen last windows when logging back in"

  • I have not been able to go to links when in Firefox. When I open the same page in Internet Explorer it works.

    Since I upgraded to the latest Firefox a few days ago I have not been able to access certain links. When I switch to Internet Explore those link work.

    You should have signed in with that address in the first place, but there is a workaround: go to System preferences>Mail, Contacts@ Calendars and add your @me.com address as an account there.

  • Playing Multiple Video Clips on the Same page

    Hi Folks,
    Let's try this again. If I set up a page with a single flv
    playing off our Flash Media Server 2, everything works just fine.
    If I create a page with several flv files on it, some of them load
    and then I get nailed with Certificate Alerts. All of the videos
    are coming from the same server, same designation and work fine -
    just not when there are several of them on the same page.
    Thoughts and comments are most welcomed
    Thanks - Greg

    Certificate alerts, as in SSL certs? I'm wondering if you
    have some sort of connection shotgun that's causing some of the
    connections to try an rtmps or rtmpts connection. If you have a lot
    of connections trying at once and something botttlenecks, that
    might be the result.
    It would be helpful if you provide some more details,
    including the text of the alret and the code you're using to
    connect to FMS.
    Incidentally, does your application absolutely require that
    you have separate swf's making connections to FMS? It would be a
    shame to waste all of those connections if there is any practical
    way around it.

  • All of a sudden, my settings have been changed, my homepage, and EVERYTHING. No matter how many times I go in and change them again, the SAME pages open up when I start FireFox and I am constantly being asked if I want Yahoo as my start page and default s

    I don't know what happened. All of a sudden, my settings have been changed, my homepage, and EVERYTHING. No matter how many times I go in and change them again, the SAME pages open up when I start FireFox and I am constantly being asked if I want Yahoo as my start page and default search engine. I click the box 'do not ask me again' and it comes up EVERY TIME. I change things like I don't want history remembered, and when I reload FireFox again, it's back to the way it was BEFORE. EVERY SINGLE TIME. I don't know why this is happening, or how to fix it. What do I do??

    I do not want to download another virus program.. I do not believe it is a virus. I am running the full version of Norton 360 and it is doing a daily scan. I have Windows 7, 64 bit OS.
    This is very irritating !! If I wanted Yahoo I would ask for it !

  • I used to open many tabs in the same page and i move from one to other by mouse but since3 two days the tabs open in the same page normaly but i can't move from one to other when i clik with mouse on any tab it don't open/ do u have any solve for this?

    i used to open many tabs in the same page and i move from one to other by mouse but since3 two days the tabs open in the same page normaly but i can't move from one to other when i clik with mouse on any tab it don't open/ do u have any solve for this

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I installed Firefox 3.6. Since then, I am unable to open pdf documents in Firefox. I get a black page. I tried opening the same document in Internet Explorer. It worked fine. I recently installed Nuance's pdf reader and thought that might be the problem.

    I installed Firefox 3.6. Since then, I am unable to open pdf documents in Firefox. I get a black page. I tried opening the same document in Internet Explorer. It worked fine. I recently installed Nuance's pdf reader and thought that might be the problem. Uninstalled it. Still have the problem with Firefox.
    == This happened ==
    Every time Firefox opened

    How about if you right click on the PDF and select Save Link As..., and then open it locally from within Reader? Does it work ok then?  That might be a workaround until the issue within the browser is resolved.
    Rob Jaworski
    Intl Program Manager

  • I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?  Next in Elements 11, how do I load and print different pictures and different sizes options on the same page?

    I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?  Next in Elements 11, how do I load and print different pictures and different sizes options on the same page?
    Thanks,
    Shir

    sbmgrams wrote:
    I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?
    See here:
    Reading PhotoDeluxe PDD Files

Maybe you are looking for