Popup as creation form

Hello ,
Im using Jdeveloper 10g ,
and I have problem with refreshing the view which i insert data to it , using popup
to have clear info about my problem
I insert data using pop up , then I commit in side the page , then I close the page , the problem is : the view which i insert to it dont refresh
I'm new in Jdeveloper , and need you help .
rgds

Re: how to refresh Adf  table from Adf popup
This link might help.
I haven't had this problem though, just use partical triger or eventually bind the component you want to refresh and refresh it with:
       AdfFacesContext.getCurrentInstance().addPartialTarget(yourComponent);

Similar Messages

  • Depenedant SelectOneChoices are not working in creation form of ADF 11g

    Hi,
    I have created a ADF creation form using updatable VO.
    I have three list boxes, theaterId, AreaId, SalesSegment. if i select theaterId list box it should refresh the list for areaId and salesSegment.
    I have created list boxes in VO attribute level and defined the dependencies.
    When i run the page dependant lists are not showing data.
    If i create the ADF form with same VO, functionality is working fine but it is not working in the Creation form.
    Pls help me to resolve this issue.
    Thanks inadvance.
    Regards,
    Satya.

    Check this if its helpful: Re: Cascading LOV not refreshing correctly after removing row

  • Pass Parameter into ADF Creation Form

    I have an ADF Read Only Form on page 1, and and ADF Creation Form on page 2. I want three specific fields from page one to be passed into the appropriate fields on page 2. How would I go about accomplishing this?
    Thanks,
    Tim

    Hey Shay,
    I got one value to pass:
    I put a setAction Listener on the command button. My From was #{backing_confirmTest.outputText2.value}. And my To was #{processScope.Test}.
    When I tried to add another setAction listener to the same button it wouldn't let me. Can I not have another set of values like... #{backing_confirmTest.outputText3.value} and #{processScope.Test2}??
    Thanks,
    Tim

  • Can I use View Link in ADF Creation Forms Jdev 10.1.3

    Hi...
    I created a view link of two tables. Then I created a ADF form with Master Object to show some informations.. and I created a ADF Creation form with the detail Object
    I'm trying to submit the informations added in the Detail forms.
    but no records are created in Database..
    Can I submit a creation form using detail object?
    Thanks

    I figured out "partially" the problem, I tried to overrid the create method, and for any reason the commit operation wasn´t working.
    I was trying to set a value for a proprety, but it did not work as a wish.
    My intention was.... when an user execute the form. one specific field brings a value.. however I cannot set default value. cause it´ll change sometimes.
    it´s something like this
    protected void create(AttributeList attributeList) {     
    super.create(attributeList);
    setMyProperty(new Number(0));
    do you know how can I figure out this problem?

  • How to  programmatically initialize field in ADF Creation Form

    I'm using JDEV 10.1.3.2, ADF BC. The task sounds simple:
    1. Create an ADF Creation Form by pulling in a VO (backed by EO) from Data Control.
    2. Initialize one of the required fields in a backing bean from processScope.
    3. User sets other fields via GUI.
    4. Save the new record in the database (Commit).
    The problem is how to do step 2? The processScope variable is being retrieved properly, but I have not been able to set the required field so that the user does not have to enter this field. I have an action on the Save button as follows:
        public String commandButton_action() {
            String psnetid = null;
            BindingContainer bc = getBindings();
            AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
            psnetid = afContext.getProcessScope().get("netid").toString();
    //Need to set Netid field in VO to psnetid here
            OperationBinding operationBinding =
                bc.getOperationBinding("Commit");
            Object result = operationBinding.execute();
            if (!operationBinding.getErrors().isEmpty()) {
                return null;
            return null;
        }Can anyone shed some light on this?
    Thanks.

    This is outside of the backing bean, but you may try it:
    modify the getter on the entity impl class (if you are using ADF BC) to set a default value
    This example is to set a default status id on the field.
    public class <EntityName>Impl extends EntityImpl {
    public static final int STATUSINTLID = 1; //first column name on the entity
    public Number getStatusIntlId() {
    Object intlId = getAttributeInternal(STATUSINTLID);
    if (intlId == null){
    int intValue;
    intValue = <get value from somewhere code>;
    Number defaultValue = new Number(intValue);
    if (defaultValue != null){
    this.setStatusIntlId(defaultValue);
    return (Number)getAttributeInternal(WATERDRAWSTATUSINTLID);
    Cheers,
    Jim

  • How to add new Attachment category in Projects master creation form

    Hi Dudes,
    I would like to know that how to add new Attachment category in Projects master creation form.
    It defaults as Miscellaneous.
    I created new category by navigated Application developer - attachment - category
    but i dont know how to assign the above created category for Project master creation form
    Can you pls throw some lights into this little dark room?

    See http://docs.oracle.com/cd/E18727_01/doc.121/e12897/T302934T458262.htm
    Scrool down to the "Category Assignments Window".
    This is where you assign an attachment category to your form/function.
    See http://erpschools.com/articles/oracle-attachment-functionality-adding-an-attachment-to-a-form for step-by-step screenshots.
    Sandeep Gandhi

  • AjaxAutoSuggest in creation form

    ADF Jdevelopper 10.1.3.2
    I want to use an autosugges ajax tool in a creation form and use the id to put into a table.
    e.g.
    table person
    pers_id
    name
    addresse
    city_id_id
    table city
    city_id
    cityname
    So for the city I want to use the autosuggest but I need to save his id (and not the name) in the table person
    (like http://www.oracle.com/technology/products/jdev/tips/mills/AjaxAutoSuggest/AjaxAutoSuggest.html)

    Anyone ?

  • ADF:  ADF creation form

    I need to create form that will show empty values because i want to enter new records in empty table. I have found out that i need to select ADF creation form from the context menu when i drag the collection for which i want the form to be created. The problem is that i don't have ADF creation form listed under forms submenu. I'm using JDeveloper 11g.
    Can someone help me?
    Edited by: user4711269 on Dec 11, 2009 2:33 AM

    Hello Frank and thanks for your answer.
    I have managed doing this with only one page with this tutorial http://blogs.oracle.com/shay/2007/07/25/
    thanks

  • Customizing Role creation form??

    Hi,
    We have requirement to customize the Role creation form. We have to store extra information in the role object. I know that we can store extra information by using properties attrinute of the Role. But the question is how to expose this to administrators through UI?
    I don't find any form mapping for role creation in the "Forms and Process Mappings" section. Anybody knows how to achieve this requirement? What is the default form used for role creation?
    Thanks in advance.

    There's a userForm configuration object called "Role Form" that is used when you create a new Role.
    You can add a new field to this form like so;
    <Field name='properties.Department'>
    <Display class='Text'>
    <Property name='title' value='Department'/>
    <Property name='disabled'>
    <Boolean>true</Boolean>
    </Property>
    </Display>
    </Field>
    Then the Department attribute will be saved against the Role attribute.
    Is this what you're looking for?
    Cheers,
    Paul

  • Creation Form Error

    Hi,
    I am trying to make a creation form using the ADF BC model
    i created my view in a business diagram i putted them in an application module
    and i am trying to create forms for registering employees into the database
    every thing seems fine. I tried creating the most basic forms i have one with the name and an employee number and then this view is linked to another one with information that are more lets say department related. So i linked the 2 views using the view link and i associated them by the employee ID (which is the primary key in both table) so on one page i fill the name and on the second i should be filling the more complex information but when fill the first page its fine but when i load the second page it give JBO-25013: Too many objects match the primary key oracle.jbo.Key[0] so it always defaults to the first record in the database instead of staying at the one i am currently creating
    by the way i use the drag and drop from the control panel and use creation forms for both im kinda getting confused if you could please help me with this

    I have no clue as to why this happened but now it seems to work somehow alright its not perfect but if someone has an explanation as to why this could happen please this would be greatly appreciated cause its not the first time this happens

  • Problems connecting to verity collection creation form

    1. Am running CF MX7. Am following directions in CF
    documentation to create a form by which a user can create a CF
    Collection for a Verity search. I'm having several problems.
    2. I created a form and an action page, that it's suggested
    that I put in the MyApps directory in the cf_root. Well, Since I'm
    running IIS, I don't have a MyApps folder or a cf_root folder, the
    root folder of the default Website, is wwwroot/. And I've created a
    MyApps folder and put both pages in the folder.
    3. It suggests that to access the Create Collection form, one
    should type
    http://Hostname:Port/myapps/name
    of file.cfm
    So I've tried many purmutations of that. I continue to get a
    Page not found error. No CF errors, just a page not found error.
    4. One other item may be affecting this problem, but I don't
    know how to get around it. The Home page of the site is in a
    subfolder of the wwwroot folder as apposed to being dumped directly
    into the wwwroot folder.
    Can anyone assist me? WCW

    Thanks, I did do that, and also changed the URL I was using
    to access the Create Collection form. I am running IIS, also, my
    Website root folder is not actually inside the wwwroot or Inet Pub.
    But the Home Page is set to the actual location of the Website
    folder. So, the MyApps folder is inside the root folder of the
    Website, even though it's in a different location.
    Don't understand why you need a port number. And what port
    number would that be anyway? If I put port 80, which is the port of
    the Web site, hit enter, it just disappears when the browser
    resolves the address. Don't really need it.
    Anyway, I can get to the creation form, create a collection,
    and have written pages to index the collection.
    Now my problem is that the results I get when executing a
    search is a list of Paths, not URLs. Very strange. Don't know if
    I'm filling out the form wrong or whether my coding is wrong, but
    Search results should NOT show the PATH to the page, but the URL.
    Does anyone recognize this incorrect result? Any idea of what
    I could be doing wrong? If so, I could really use some assistance.
    Thanks, WCW

  • How to insert into two tables using a Single ADF creation form?

    Hi,
    I need to make a ADF Creation Form that will insert the data at same time in two tables... Like i have two tables Track (Track_id,Track_Name)
    and Module ( Module_id, Track_id, Module_name, Module_Short_name) and i have to insert the data in both the tables using Same Creation Form.
    can anybody help me out and gave me the solution,how to do that?
    Thanks

    if you want to insert different data into two different tables then you can drag the two data objects into creation form..
    If you want to duplicate the data inserted in the one table to another then you can follow two approach
    1. Drag and drop one table, When Save button is invoked then insert data into another table using callable statement.
    or
    2. Create on-insert trigger in Table1 where you can insert data into table2.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Convert a query form to Creation form.

    We create a normal jspx form and drag and drop a view object normal mode.
    When we open the form first record come
    Then We need to change this form to a creation form with new empty record.
    Form include many custom code.We can't recreate form.
    How can we do it?
    it means how Convert a query form to Creation form?
    we are using jdev 10.1.3.2
    Thanks

    You have to add Create method in PageDef.xml and then add expression in RefreshCondition to invoke it (in executables). For more information see:
    http://download-uk.oracle.com/docs/html/B25947_01/web_form006.htm#CACECCJA
    Kuba

  • Dynamic Creation Form

    Hi friends,
    Is there a way to create dynamic creation forms in ADF,in jdev 10.3.3?
    By this I mean--I need to populate a table in my DB and on my page I have an add button,
    now at each click of add button,a new creation form should be displayed on the page one below the other.
    finally there would be a Save button that would save all my entries to the table.
    I searched a lot for the same...Please do help if anybody has any ideas..
    Thnks in Advance..c ya
    kavitha
    Edited by: user6403440 on May 5, 2009 2:22 AM

    Hi,
    well, the easiest would be to create an updateable table and add new rows. If you need a form then you can use af:forEach or af:iterator with the table binding to render input form elements (more like a custom table rendering). However, its quite a bit of development that is required for this.
    Frank

  • Popup menus in Forms 10g and Java Bean

    Hi all.
    What class in Java corresponds with popup menus(not in menu module) ?
    I know that oracle.ewt.lwAWT.lwMenu.LWPopupMenu is corresponds with MenuBar's submenu. I can find Buttons, Text Fields, Menu and other components in my Form-Applet, but I don't know how to find popup menus in forms through Java Bean...

    Hello François,
    I have created a java bean that dynamically creates a popup by left-clicking on the bean.
              Set_Custom_Property( 'BLOCK.BEAN', 1, 'ADD_ITEM', 'Item' ) ;
              Set_Custom_Property( 'BLOCK.BEAN', 1, 'ADD_SEPARATOR', '' ) ;
              Set_Custom_Property( 'BLOCK.BEAN', 1, 'ADD_ITEM', 'Item one' ) ;     
              Set_Custom_Property( 'BLOCK.BEAN', 1, 'ADD_ITEM', 'Item two' ) ;
    My problem is the layout. I want to simulate a button. I can't put the bean transparent over a button and I can't simulate a button with the bean.
    How can I add the popup functionality to a button and not only to the bean? Or any other workaround?
    Regards Pedro.

Maybe you are looking for

  • Delivery date in contract

    Dear Friends, Can we maintain one tentative Delivery date in contract? I know contract dont have schedule lines.....and wont transfer any reqirements .....but I need to give  one tentative delivery date ....just for the information to pass to the pro

  • Ipod Touch not appearing in Itunes using Windows 7

    If your Itouch doesn't appear in Itunes try doing this: The problem is, for some reason, iTunes won’t install the Apple Mobile Device software or service. Even if you extract out the AMDS installation files, it still fails. The SOLUTION is to take th

  • HT1695 hi

    I have recently encountered a problem with the wi-fi on my iPhone 5. Whenever I connect to a router with a password, even if the password is typed correctly, it responds that I am unable to connect. As of now I am only able to connect to wi-fi's that

  • How to "smooth in" a gaussian blur fx?

    Hi there     I would like to know how can I "smooth in" a gaussian blur fx. I recorded a video and needed to add a tittle to the video and when I add the fx it doesn't fade in smoothly it's like ON and then OFF. Is there a way to make it like fade in

  • What exactly are cookies?

    Should I ever clear them?