Oracle Forms in R11i apps Q how to requery when called form is closed

Scenario:
I have formA. I am calling another formB from FormA. When I do update on Form B and close the control needs to come back to formA and requery (so I can see changes to the updates done in formB).
Issue:
I’m successfully launching formB (using fnd_function.execute) and able to update but when I close formB, I’m not able to requery as the control is not coming back to formA.
Which event should i use when i close the FormB so i can navigate back to called FormA and Requery. ( i tried exit_form, key-exit, the formB is only closing but unable to go to formA)
Thank you.

I'm not 100% sure, but I believe ZOOM should work in your case. A slightly dated but valid explanation is here - http://download.oracle.com/docs/cd/A60725_05/html/comnls/us/fnd/zoom05.htm#codezoom
Pl see the Application Developer Guide for your release of EBS at http://www.oracle.com/technetwork/documentation/applications-167706.html
HTH
Srini

Similar Messages

  • Form validation from within composer - how to lock down admin forms??

    Hello we have many space admin level users who have the privilege to add content and remove it from their pages as they see fit, however when modifying pages from inside webcenter composer there is no validation on user input / error checking. This causes many problems with users entering things improperly, or even causing bugs (such as with content presenter - if you remove a file from UCM without removing it from the "add a file" template it will break the page).
    So my question is - how do I start adding form validation to all of these screens (such as those little wrenches in composer for a task flow, or customizable layout component)? Is there a way to customize form validation for all admin screens (space - manage all, app - administration, and composer screens)?
    Thanks,
    j

    Here is the custom validation script of your drop-down.
    Make sure you tick the option to commit the selected value immediately:
         var sNewSel = event.value;
         switch (sNewSel) {
           case "ProductNo1":
             this.getField("ItemDescription").value = "blah, blah";
             this.getField("Size").value = "blah, blah";
             this.getField("UnitPrice").value = "blah, blah";
             break;
         case "ProductNo2":
             this.getField("ItemDescription").value = "blah, blah";
             this.getField("Size").value = "blah, blah";
             this.getField("UnitPrice").value = "blah, blah";
             break;
         case "ProductNo3":
            this.getField("ItemDescription").value = "blah, blah";
            this.getField("Size").value = "blah, blah";
             this.getField("UnitPrice").value = "blah, blah";
             break;
         //etc.
    You will need to replace "ProductNoX" in the script with whatever your product numbers are in the drop down.
    You can also read MarkWalsh's script in this thread:
    http://forums.adobe.com/message/5578038#5578038
    I hope this helps.

  • File Not found error when calling Form Post Method to a JSP from JSP Portlet

    I have built a set of JSP forms using post method to call other JSPs. Normally, the code looks like
    <form name="MyForm" action="MyJsp.jsp" method="post">
    I migrated the calling form containing this code to a portlet, but not the MyJsp.jsp. When I submit the form, I get a file not found in Jserv.log
    Exception:javax.servlet.ServletException: java.io.FileNotFoundException: D:\servlet\RegisterCompany.jsp (The system cannot find the file specified)
    [14/06/2001 13:59:59:679 PDT] JspServlet: unable to dispatch to requested page: Exception:javax.servlet.ServletException: java.io.FileNotFoundException: d:\oracle\isuites\apache\apache\MyJsp.jsp (The system cannot find the file specified)
    I notice that launching the calling jsp from a portlet, my opriginal context that uses ../Apache/Apache/htdocs is not being searched for the JSp. Why is this? Moreover, I try to set up an Alias in httpd.conf file to the this director and use it with the jsp in the action tag, but still get an error that my jsp servlets/Myjsp can't be found. Why is it insiting on looking at servlets context instead of htdocs.
    I have none of these issues outside of Portal30 using IAS.
    regard

    Initially, I couldn't do this unless I moved tghe jsp's up to the root directory of IAS, i.e ../Apache/Apache. Nomrally, htdocs is my doc directory for IAS. I could not do http:\\myUrl\htdocs\myJsp. If I tgried this, I got an error in Apache error logg that said can't find file ..\htdocs\htdocs\MyJsp.jsp.
    If I just tried the the URL http:\\myUrl\MyJsp.jsp with Jsp file in htdocs, I would get an error in the Jserve log that file d:\oracle\isuites\apache\apache\MyJsp.jsp could not be found. Once I moved the file MyJsp to Apache/Apache directory, it could be found using http:\\myUrl\MyJsp.jsp. Later, I delted these files and kept the ones in htdocs and they continued to work.
    I'm confused why launching pages through portal isn't consistant with Apache Standards. Where is the documentation that tells me how to configure context and aliases for pages launched from portal pages?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Sue Vickers ([email protected]):
    David,
    Passing information using Portal is different than just using Apache/Jserv. Does it work in portal if you use the absolute path?
    <form name="MyForm" action="http://host.domain/MyJSP.jsp" method="post">
    Portal will not be on the same relative path as your Apache, so you may need to adjust your action somehow.
    Thanks,
    Sue<HR></BLOCKQUOTE>
    null

  • Can I add my parameter in address bar when calling form?

    Hi,
    I need to call form with parameter.
    I'm calling reports with parameters. For example: [http://server:7778/reports/rwservlet?report=/home/oracle/report.rdf&userid=usr/pass@db&P_PARAMETER1=value&P_PARAMETER2=value]
    I need to do the same with form.
    I tried but couldnot success. How can I do that?
    I tried with: [http://server:7778/forms/frmservlet?form=/home/oracle/form.fmx&userid=usr/pass@db&P_PARAMETER1=value&P_PARAMETER2=value]
    I added WHEN-NEW-FORM-INSTANCE in form:
    declare
    pl_id paramList;
    parameter_type number;
    parameter_value varchar2 (200);
    begin
    pl_id := get_parameter_list ('default');
    if not id_null (pl_id) then
    get_parameter_attr (pl_id, 'P_PARAMETER1', parameter_type, parameter_value);
    destroy_parameter_list (pl_id);
    if parameter_value is not null then
    USING PARAMETER...
    end if;
    end if;
    end;
    Edited by: Fitibaldi on Nov 25, 2008 1:30 AM

    Hello,
    In the url, the private parameters must be placved after the otherparams key word:
    http://server.../frmservelt?config=MY_CONFIG&otherparams=the_param=the_value&...
    The parameter list is not used in this case.
    These parameters must exist in your Forms module in order to be used via the :PARAMETER object:
    Declare
      value varchar2(100);
    Begin
      value := :PARAMETER.the_param ;
    End;Francois

  • WDA app not launched with SSO when called from portal

    Hi,
    we have configured our systems so that our portal (NW Portal 7.0) is issuing logon tickets and ERP6.0 is receiving them in the backend for single sign-on.
    When launching a SAP GUI for Windows transaction (System admin->Support->SAP Application) to test if the SSO is set up correctly, all goes well and I'm able to call e.g. SU01 with logon tickets from the portal.
    My problem is that when calling a Web Dynpro for ABAP application in the same backend system from the same portal, I get an error "SSO logon not possible; logon tickets not activated on the server" and need to login manually when starting the application.
    When looking at the WDA app URL, I see http://<backend server>.<domain1>.com/... and the portal is sitting on http://<portal server>.<domain2>.com. Could it be a problem if the backend system is in another domain? And if yes, how come the SAP GUI for Windows launch then works (related to an http connection and domain relaxing?)? How to go forward and make it work all right?
    Best regards,
    Mikko

    Hi Navarro,
    Merry Xmas:)
    >>We did the same test with the demo app from you (MS)
    http://msdn.microsoft.com/en-us/library/windows/apps/hh202967(v=vs.105).aspxand it still don't work. (remember to setup
    fast app resume)
    Yes, I can reproduce your issue using the official sample.
    I think this issue is caused by the mechanism of Fast app resume, please refer to the following reference:
    #Fast app resume for Windows Phone 8
    http://msdn.microsoft.com/en-us/library/windows/apps/jj735579(v=vs.105).aspx
    Quote:
    With Fast Resume, when an app is resumed, the system creates a new page instance for the target of the launch point and this page is placed on top of the app’s existing backstack.
    This official sample can also help us to understand how it works:
    https://code.msdn.microsoft.com/windowsapps/Fast-app-resume-backstack-f16baaa6
    We could find that the Application.Launching event will not be triggered if we used Fast app resume, this will affect responding Toast's parameter(Deep Link).
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • OC4J and Oracle forms causes ie or firefox to not respond when running form

    When I run a form in Oracle Forms 10g, I have OC4J running, and have the following displayed:
    E:\Windows\system32>E:\DevSuiteHome_5\jdk\bin\java -Doracle.security.jazn.confi
    g=E:\DevSuiteHome_5\j2ee\DevSuite\config\jazn.xml -Doracle.home=E:\DevSuiteHome_
    5 -DORACLE_HOME=E:\DevSuiteHome_5 -jar E:\DevSuiteHome_5\j2ee\home\oc4j.jar -use
    rThreads -config E:\DevSuiteHome_5\j2ee\DevSuite\config\server.xml
    07/11/20 23:11:44 Warning: Error reading transaction-log file (/E:/DevSuiteHome_
    5/j2ee/DevSuite/persistence/transaction.state) for recovery: premature end of fi
    le
    07/11/20 23:11:44 Forced or abrupt (crash etc) server shutdown detected, startin
    g recovery process...
    07/11/20 23:11:44 Recovery completed, 0 connections committed and 0 rolled back.
    07/11/20 23:11:44 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    initialized
    07/11/20 23:18:10 FormsServlet init():
    configFileName: E:\DevSuiteHome_5/forms/server/formsweb.cfg
    testMode: false
    I am running vista, and have the latest version of the dev suite. Does anybody know how I can fix this problem?

    You cannot use Internet Explorer on Windows Vista to run Web Forms.
    <p>But you CAN run web forms through Netscape or Firefox. But you first need to disable Java in the browser.
    <p>And to run OC4J on Vista, you need to set its compatibility mode to Windows XP.
    <p>See my notes on OC4J and "Browser Settings" in this thread:<br>   
    Forms 10g installed and running on Windows Vista

  • When call form developer, I've got this error

    Dear expert
    when i call program form developer, i've got error dialog below but i can't fixed this problem (i used Oracle9iDS)
    =====================================
    Microsoft Visual C++ Runtime Library
    =====================================
    Assertion failed!
    Program: D:\Oracle\......\bin\ifbld90.exe
    File: \ut\SRC\UTJ\SRC\UTJL.C
    Line:428
    Expression: result == utjER_SUCCESS
    For information on how your program can cause as assertion
    failure, see the Visual C++ documentation on asserts
    (Press Retry to debud the application - JIT must be enabled)
    ======     =====     ======
    Abort     Retry     Ignore
    ======     =====     ======

    Its very difficult to answer your question with the information you have given...
    What program are you calling?
    How are you calling it?
    When does it fail?
    Have yuo debugged it to see what line it fails on
    Has it always failed or has this just started happening?
    Regards
    Grant Ronald
    Forms Product management
    http://www.groundside.com/blog/content/GrantRonald/

  • How to control when Keychain goes into closed mode?

    In Lion my Keychain would remain open until my computer went to sleep.  Now in Mountain Lion Keychain locks before I require a password after sleep or when screen saver begins.  In fact this lock comes to soon for my liking.  So how to control the time before lock?

    Check out this doc:
    http://support.apple.com/kb/HT1808
    = L.I.

  • FRM-92101 when calling forms.

    Hello Everybody!!
    I'm trying to call a form from another using: web.show_document('http://tierra.cantv.net:7778/forms90/f90servlet?config=webutil&form=ADJUNTAR_ARCHIVO&id_caso=' || :id_caso); inside a push button.
    My first form (the caller) run fine, but when i push the button a FRM-92101 appear in the applet of the second form (the calle).
    The complet mesagge of this error is "A failure has ocurred on the server. You will need to reestablish your session"...I don´t know why the session was lost.
    My forms version is 9.0.2.9.0 and the AS version is 9i rel 2.
    Thanks so much.
    Beatriz.

    Thanks for your answer Frank!
    Can you refer me a link to read about this known issue, or doesn't have solution in 9i? :S...in this momment i can't install 10g :(
    Beatriz.

  • How to debug when Web Start keeps closing

    Hi,
    I'm trying to deploy a simple hello world application. I've
    created and signed the jar. When I run the application via
    Web Start, I get as far as a window asking if I trust the
    person, and I click yes. Then Java Web Start immediately
    closes with no useful information.
    Is there a log file somewhere? Is there a debug mode in
    which I can get more information about the problem?
    Ken Z.

    using at least javaws 1.5.0, go to the control panel and select advanced tab, trace on. Then create file . home directory called .javawsrc and add lines:
    TraceBasic=true
    TraceSecurity=true
    TraceTemp=true
    then run again.
    you shoul get trace files in the log dir <deployment.user.home>/log.
    /Andy

  • How to register a custom form under "LEASE -- TOOLS"?

    Hi,
    This is my first form development in Oracle Apps.
    I have a requirement of building a custom form and to display it under LEASE -- > TOOLS.
    I could register the form under a menu by the following steps:
    1. Application Developer --> Forms : Enter the custom form name
    2. Register a new form function
    3. Attaching the form function under a menu
    How do I register this form under Lease--> Tools?
    Thanks and Regards
    Ruma

    Hi,
    I could register the form under a menu by the following steps:
    How do I register this form under Lease--> Tools?I believe you could follow the same steps but attach the form function to the submenu (instead of the menu itself).
    From the Application > Menu, query the main menu to get the submenu, then query the sub-menu and attach the form function.
    More details can be found in the "Developer Guide" which can be found at:
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html
    Regards,
    Hussein

  • How to open a JClient Form from another JClient Form in different project?

    Sir,
    In my application, there are two model projects Ma and Mb, and two view projects Va and Vb. There two forms Fa and Fb in Va and Vb respectively.
    Now I like to open form Fb within form Fa. How can I do that?
    Please give me some code so that I can fully understand. Thanks a lot.
    Regards
    Stephen

    Here is how I got it working
    1. open the projects and make sure the Dependencies are checked for the other project
    2. open the JClient client project that contains the calling form
    3. select the databinding.cpx file and you see that one datacontrol is used
    4. To add the other datacontrol (the other BC project) select an attribute from it in the data control palette and drop it to the calling JClient panel.
    5. Delete the create item because all that we care for is to get the the second data control registered in the project's cpx file
    6. Open the databinding.cpx file of the second (the called JClient project) and copy everything between the <containee> elements into the clipboard. Note that you can have one or more of them
    For my example, the databinding.cpx content of the second JClient project contained the following binding reference
    <Containee
    id="FormUIModel"
    ObjectType="BindingContainerReference"
    FullName="mypackage3.FormUIModel" >
    </Containee>
    7. Open the databinding.cpx file of the calling project in a text editor and paste the content of the clipboard to it. Save the file.
    8. Add the following code to a button that calls the JClient form in the other project (in my example the called form has a name of "Form" and is in a packe mypackage3 that I imported
    Form frm = new Form();
    frm.setBindingContext(panelBinding.getBindingContext());
    frm.setVisible(true);
    The reason you have to do all this is because the binding context is passed from one form to the other, which means that its databinding.cpx file need to contain all the binding information.
    You could make your life a lot simpler if you don't use two model projects. But this is your design decision and i can only tell you how to get it working.
    Frank

  • How do I print a form

    How do I print a form I have created?

    How do I print a form I have created?

  • HST50: Unix - How Headstart calls forms and reports uppercase/lowercase from a Menu

    We are migrating a 'in production' Headstart generated application from Windows to Unix.
    We had to a little time in setting the lowercase implementation names, setting the prefs to generate lowercase file.....
    So good so far. When testing the application on Unix, all files are lowercase, the Forms start without a problem but the Reports won't start.... Renaming the report files to uppercase works fine.
    Going through the Headstart code for calling Forms and Reports I noticed the following:
    When calling Forms the qmslib50.qms$form.call procedure is invoked. In this procedure the follwoing statement is used:
    l_form_name := lower(p_form_name) So only lowercase will be found....
    For calling Reports from the Lauch Report Form the qms0012l.qms$report.run procedure is invoked.
    This procedure calls fill_par_list where the l_module_name is set. But in this procedure no uppercase or lowercase is used......
    Not consequent I think !!
    Is this done for a specific reason ?
    PS: Change qms0012l and it works fine.

    Hi,
    cannot use run_report_object here cause I cannot create a report object in menu (like how we can do it in forms).
    Create a generic named Report node in the forms that you reference from the RunReport object request. This way you can run Reports from a menu
    Frank

  • How to call a new Form with the same menu-settings then the calling Form

    In Form A we enable/disable some menu-items a runtime.
    When calling Form B we want to use these menu-settings.
    With other words: we don't want to enable-disable this item at eachr Form startup, but once, when the app. is started.
    Somebody an idea ?

    yes.
    bye
    TPD

Maybe you are looking for