2 Create bindings in 1 page, second Create event does not fire (ADF)

I have an ADF, Struts, JSP master detail page and within that page there is a Create binding on the master view and this works fine.
I added the detail list to the page and added a Create binding for this view underneath the list.
The second create event does not seem to fire at all, when the button is clicked the page gets submitted and the request forwards to the correct page to display the input form but the contents of this form is the current selected detail row in the view and not a new row.
I have created 2 new pages to test the detail view... I put a link in the original page to a test list page that displays the detail list and included a Create binding in this page which links to a test create page and this works fine.
Has anyone else had this problem?
Can there be only 1 Create event binding in a single page?
Is there a way round this other than having to have my detail page on a seperate page?
The Jdeveloper version I am using is as follows...
JDeveloper Version 10.1.2.0.0 (Build 1811)
Oracle IDE     10.1.2.17.84
Business Components Version     10.1.2.17.96
UML Modelers Version     10.1.2.16.71
Versioning Support     10.1.2.16.71
WebDAV Support Version     10.1.2.16.71
Struts Modeler Version     10.1.2.6.15
Designer Generators Framework     10.1.2.7.56
ADF UIX     2.2.16
java.version     1.4.2_04
Thanks
Al

Can you do something like this?
1. Look at the uimodel for your page and find the Create that is the action binding for the detail. Name it something like: CreateDetail
2. Change the button on the page to create a detail to be named: event_CreateDetail.
3. Change the forward from Master/Detail browser page to: CreateDetail
Can you provide more details on:
1. What are the names of the create bindings for master, then detail?
2. What is the name of the forwards, that is the struts-config.xml action definition for this page?
I hope this helps!

Similar Messages

  • Accordion load event does not fire when accordion and load event created dynamically using actionsript

    I cannot get the accordion load event to fire when I have
    created the accordion and load event using actionscript . Here is
    some sample code:
    createClassObject(mx.containers.Accordion, "acc",
    getNextHighestDepth());
    acc.createSegment(mx.containers.ScrollPane, "sc1", "Number
    One");
    acc.createSegment(mx.containers.ScrollPane, "sc2", "Number
    Two");
    var accLis=new Object();
    accLis.load=function(evtObj) {
    trace("load");
    accLis.change=function(evtObj) {
    trace("change");
    acc.addEventListener("load", accLis);
    acc.addEventListener("change", accLis);
    I made sure to add the ScrollPane and Accordion components
    to my library. So the load event does not fire, but the change
    event does fire. And through further testing the other events do
    not fire, including the draw event. Can anyone help? The only time
    I can get the load event to fire on an accordion is if I put an
    accordion on stage, select it and add the actionscript to the
    objects actions like shown below:
    on(load) {
    trace("load");
    on(draw) {
    trace("draw");
    Can somebody help? Unfortunately I must create all my
    components dynamically. Thank you in advance.

    I'm having this issue also...but only apparently with Internet Explorer and only on some machines...ideas?

  • Subscription to business event does not fire

    I am working in the R12 PIM product . I setup a subscription rule function for the event oracle.apps.ego.item.postItemCreate
    . I just added one line in my function to insert a value in a dummy table.
    But nothing gets inserted.
    Is there any table/view to check if the event was raised. Has anyone worked on PIM/PLM events. I enabled the event and created a subscription as per the PIM guide but the subscription is not raised.
    Any suggestions please ?
    thank you
    satya

    Satya
    I just checked the 12.0.4 instance, This event is disabled. Did you enable it before adding subscription?
    If, yes, have you used phase above 100 which defers the event, if not it is synchronous and the table should be populated.
    If deferred, check the table wf_deferred.
    select count(*),state
    from wf_deferred
    where corrid='APPS:oracle.apps.ego.item.postItemCreate'
    group by state;
    This SQL should return rows if the subscription is deferred one and state should be 2 if already processed oterwise 0.
    You can also test it by raising the event manually using test see whether the row comes into this.
    Thanks
    Nagamohan

  • Simple WD4A Portal Eventing does not work

    Hello togehter,
    I'm trying to get a simple Portal Eventing to work with two WebDynpro ABAP components. I read several threads as well as a blog from Thomas Jung about this but still have no eventing. What am I doing wrong? I think that it might be only a little obstacle but I can't get it. So what I didi is:
    1.) Created 1st WD4A application with a button and an action behind that button:
    DATA: l_api_component  TYPE REF TO if_wd_component,
            l_portal_manager TYPE REF TO if_wd_portal_integration.
      l_api_component = wd_comp_controller->wd_get_api( ).
      l_portal_manager = l_api_component->get_portal_manager( ).
      l_portal_manager->fire(
        portal_event_namespace = 'urn:my.namespace'
        portal_event_name      = 'test_event'
        portal_event_parameter = 'testValue' ).
    2.) Created 2nd WD4A application with the following code in the WDDOinit-Method:
    DATA: l_api_component  TYPE REF TO if_wd_component,
            l_portal_manager TYPE REF TO if_wd_portal_integration,
            view TYPE REF TO if_wd_view_controller.
      l_api_component = wd_comp_controller->wd_get_api( ).
      l_portal_manager = l_api_component->get_portal_manager( ).
      view ?= wd_this->wd_get_api( ).
      l_portal_manager->subscribe_event(
        portal_event_namespace = 'urn:my.namespace'
        portal_event_name      = 'test_event'
        view                   = view
        ACTION                 = 'CATCH_EVENT' ).
    and an action.
    method ONACTIONCATCH_EVENT .
      data: EVT_NAME type STRING,
            evt_parameter type string.
      EVT_NAME = WDEVENT->GET_STRING( NAME = 'PORTAL_EVENT_NAME' ).
      if EVT_NAME = 'test_event'.
        evt_parameter = WDEVENT->GET_STRING( NAME = 'PORTAL_EVENT_PARAMETER' ).
        DATA:
          ls_text TYPE if_main=>element_main,
          node_main TYPE REF TO if_wd_context_node,
          elem_main TYPE REF TO if_wd_context_element.
        node_main = wd_context->get_child_node( name = `MAIN` ).
        evt_parameter = 'IT WORKED'.
      else.
        evt_parameter = 'did not work'.
      endif.
      ls_text-text_receiver = evt_parameter.
      node_main->bind_element( ls_text ).
    endmethod.
    3.) FInally I created two iViews (for each WD4A application) and a page, linked the iViews in the page and made a preview. Unfortunately nothing happend in the second iVIew with the 2nd WD4A application in it.
    Any help?
    Thanx in advance
    Matthias

    Hello,
    thanks for your answers. But the problem is not yet solved, the link gives nothing new for me.
    To amend my first post:
    After having created and activated my both small WD4A applications, I created 2 similar iViews (iViews for WebDynpro -> and chose WD ABAP) in my portal. Both iViews have the same namespace (which is SAP - is this ok?) and no application parameter.
    Then I created both a Standard SAP page and a WebDynpro proxy page and added the 2 iViews as deltalink. The page and the iViews have the same prefix (but this is not important, isn't it?).
    --> In both pages the portal eventing does not work
    The ABAP server and the Portal server are the same machine and I call the portal with the full qualified domain name:
    http://<servername>.<domain>:50000/irj/portal
    When I test my WD4A applications in se80 I get the path http://<servername>.<domain>:8000/sap/bc/webdynpro/sap/z_event_receiver?sap-language=EN
    so this is the same domain.
    I even have an entry in my hosts-file for
    <myInternalIp>  <servername>.<domain>
    - Do I have to specify the domain explicitly in addition when integration the WD4A applications in the portal?
    - Is there a correlation between the Portal Event namespace, the namespace of my iViews and page and the domain name of my server?
    - Does the portal event namespave to have the prefix urn: or not?
    Thanks again in advance

  • Question: Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages? - Problem: I have 1400 e-mails with attachments that need to be conv

    Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages?
    - Problem: I have 1400 e-mails with attachments that need to be converted into pdf and the attachments cannot be embeded.
    System: PC Windows 7 using Acrobat X Prof. - Thank you!

    Hi ,
    There is an option of embedding index for faster search while converting email to a PDF .
    However I am not sure that will serve your purpose or not .
    I would recommend you to get in touch with Microsoft support as well .
    Meanwhile I'll work on it and get back to you in case I get a desired solution .
    Regards
    Sukrit Dhingra

  • HT2513 I have a mac and an ipad.  when i create and ical event on my mac and then sync to my ipad, the event replicates;   however, when i create an ical event on my ipad and then sync, the ical event does not sync.

    Question:  I have a mac and an ipad.  when i create an ical event on my mac and then sync, the event transfers to my ipad. HOWEVER: when i create an ical event on my ipad and then sync, the event does not transfer.  what am i doing wrong???
    cadybill

    Greetings,
    Go to Apple > Software Update and install all available updates until no more are offered.
    On iPad go to Settings > General > Software Update and install any updates.
    Follow this article for issues with calendars: http://support.apple.com/kb/TS2481
    Hope that helps.

  • From pages on a mbp running 10.9.1, pages 5.0.1 does not sync automatically to iCloud after a doc is created and saved. I have rebooted and reset all devices.

    From pages on a mbp running 10.9.1, pages 5.0.1 does not sync automatically to iCloud after a doc is created and saved. I have rebooted and reset all devices.

    Welcome to the Apple Community.
    What exactly do you mean by 'it doesn't save'.
    Does this mean it doesn't save at all, doesn't save to the iCloud folder or doesn't sync with other the devices or iCloud.com.

  • How to create links to other pages i create??

    I have finished my "homepage" and it has 5 buttons on it.("home",
    "Contact us", etc.).
    I have no idea how to create links to other pages i create.
    For example, if the user clicks on "Contact us", i wnat contact information
    to appear. So, do i create another html document that will contain contact
    information and then call that page whenever the user clicks "Contact us". Or
    do i just create another applet that contains contact information and display
    the applet in the appropriate area, whenever the user clicks "contact us".
    Hope that wasnt confusing. Bascially, I am sitting here looking at my buttons, not knowing
    what code to put under the actionPerfomed part of each button.
    thanx
    trin

    ... judging from your question... the best way i think is to create another page...
    .... so when ur user clicks on Contact Us..... he/she will be taken to another page...
    there are other techniques besides this.... but it is always better to stick with the easiest one
    ... so you need to create separate pages for all of your links....
    ... if you have any questions... let me know
    .... have fun

  • TS3276 I created a new mailbox in mail, but it does not show up in my list

    I created a new mailbox in mail, but it does not show up in my list of mailboxes. Now I cannot change it or delete it. I keep getting an error message that I must resolve conflicts, but it won't let me change anything.  Can you help me fix this?

    Found it, thanks to the answer Vixen-of-Venus gave - thanks.

  • When I try to create a new Message on my Mac, Messages does not bring up my Contacts

    I have followed the instructions to setup Messages, I can send messages to the email addresses that I have memorized, but when I try to create a new Message on my Mac, Messages does not bring up my Contacts when I type in the search field for a person that has an iPad or iPhone.
    This sems out of sorts for an Apple product. Their stuff normally just works.
    For some reason, My Mac Mini with Mountain Lion doesn't recognize my contact names, or it isn't synched with my contacts...
    Anybody else want to weigh in, please?
    Thank you!

    Hi,
    I would point out that I did say...
    Of course the Contacts List has to have people listed in it.
    The Error seems to be that you have not even got an My Card.
    The OS when the computer is brand new and you set up the first Admin Account should create at least once Card entry for the Address Book/Contacts which has the Head and Shoulders icon (the My Card)
    The does presume the the first account on the Mac doers have a person's First name and Last name to work with.
    Of course not everyone sets things up this way.
    Anyhow
    To Check the Contacts List open the app.
    Go to the Preferences.
    Go to the Accounts section.
    This should list at least two "accounts
    One is for Syncing with iCloud and the other is for storing the Info on the Mac itself
    In System Preferences > iCloud you can only set up one Apple ID to be the iCloud ID.
    If you do or have changed this you may have extra accounts in the Contacts > Preferences > Accounts
    Uploaded with Skitch!
    7:36 PM      Thursday; September 6, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Business Management Error: You are attempting to create a user with a domain logon that does not exist. Select another domain logon and try again.

    Hello,
    Suddenly the working CRM is being stopped for some group of users.
    I drilled down to the issue and have checked that the users from Domain in which CRM is installed are having CRM access.
    But for other domain user having problem to access CRM.
    I tried to add a user from a domain which is not of CRM domain then it gives following error.
    "Business Management Error: You are attempting to create a user with a domain logon that does not exist. Select another domain logon and try again.
    <Message>LookupAccountNameW failed with error</Message> "
    The change is made - AD group have upgraded Activer Directory server to 2012 R2
    Please help as the Production CRM is not working for other domain user.

    We have Activer Directory Structure like below.
    One Root Domain says A
    and there are multiple child domain like B,C,D etc...
    B,C and D are all in same level,they are child of A domain.
    There are two way transitive trusts between A and all the child Domain.
    But there is no trust in between B and C and so on.
    Our CRM server is in B domain and B domain's user can access CRM but users of Domain C,D and so on can not access CRM.
    If this post answers your question, please click &quot;Mark As Answer&quot; on the post and &quot;Mark as Helpful&quot;

  • PowerPivot - SP2013 - Cannot create the service instance because the parent Service does not exist

    Unable to setup PowerPivot using PowerPivot configuration tool.
    I have One server which has SQL 2012 SP1 and SP2013.
    The farm is configured with all service applications.
    SQL has default instance with DB Engine and SSAS Tabular. Reporting Services has been configured using SharePoint mode and has a service application.
    The Power Pivot instance is set up with DB Engine and the SSAS.
    I keep getting this error. Ive tried so many times uninstalling, making sure features removed, rebuilding the farm (thank god for autospinstaller..)
    11/07/13 12:06:17:6858 Verbose: CreateSystemServiceInstance.NeedsExecute
    11/07/13 12:06:17:6858 Verbose: Running function IsFarmConfigured to check whether SharePoint is configured regardless of availability
    11/07/13 12:06:17:6858 Verbose: Farm is configured
    11/07/13 12:06:17:6858 Verbose: Entering function GetService(Guid)
    11/07/13 12:06:17:6868 Verbose: Service is not installed.
    11/07/13 12:06:17:6868 Verbose: Service instance not found in local server.
    11/07/13 12:06:17:6868 Verbose: CreateSystemServiceInstance.NeedsExecute(True)
    11/07/13 12:06:17:6868 Verbose: CreateSystemServiceInstance.CanExecute
    11/07/13 12:06:17:6868 Verbose: CreateSystemServiceInstance.CanExecute(True)
    11/07/13 12:07:41:5662 Verbose: CreateSystemServiceInstance.Execute
    11/07/13 12:07:41:5682 Verbose: Entering function GetService(Guid)
    11/07/13 12:07:41:5702 Verbose: Service is not installed.
    11/07/13 12:07:41:5702 Verbose: CreateSystemServiceInstance.Execute(Skipped)
    11/07/13 12:07:41:5702 High: Cannot create the service instance because the parent Service does not exist.
    11/07/13 12:07:41:5702 High: Prerequisites check for execution failed. Farm is not in a valid state.

    Did you install the PowerPivot add-in for SharePoint? There are 2 parts to this - the SQL Server Power Pivot for SharePoint which is the Analysis Services instance running in Tabular Mode and the PowerPivot Add-in. The last line in your error message seems
    to tell you that you have a missing component in the farm, possibly the PowerPivot Add-in
    Edwin Sarmiento SQL Server MVP | Microsoft Certified Master
    Blog |
    Twitter | LinkedIn
    SQL Server High Availability and Disaster Recover Deep Dive Course

  • HT5534 When creating a Numbers document (Iworks), the data is does not input in black

    When creating a Numbers document (Iworks), the data is does not show in black.  Cannot read the data entered.  Please help.

    SP,
    Problems like you describe have been reported by users who update one part of their system but not others. If you upgrade your OS, you must Update your applications. That is the most common cause, but of course there could be others.
    Please check your profile data. I doubt that you are really using OS X 10.0
    Please tell us your exact OS version and Numbers version.
    Jerry

  • If I create a contact from my call register it does not show up in the contacts on my i phone but does show up in my i cloud contacts. Has anyone else had this happen?

    If I create a contact from my call register it does not show up in my contacts on my Iphone but does show up in my icloud. Has anyone else had this happen?

    Are you sure iCloud is turned on and that contacts is also turned on (Settings>iCloud) on the iPhone?  Be sure the iPhone is not set to Airplane Mode.

  • Custom action event does not triggers

    Hai ,
    i have BAPI which results the data in a table when the screen loads initially .after i will inster one record to this bapi clicks on save the record is going to saved .
    i have a button (refresh ) on the same table when user clicks the refresh button the inserted record has to populate in the table.
    Table form -> create toolbar -> refrsh -> custom action -> self
    in event trigger i have selected refresh .im passing the input values again to same bapi as  date1 , date2 , pernr .
    im not able to see the updated record in the same table .
    when i refresh the browser iam able to see the updated record in the table
    any inputs .
    Regards ,
    venkat p

    Hai Govindhu ,
    timer doesnot works for me .
    signal in & signal out i have taken passed similar parameters , signal out event name is Refresh ,
    wht abt signal in event does not takes as it mask ,
    any inputs for this .
    Regards ,
    venkat p

Maybe you are looking for

  • How to connect my iPhone 4 to apple tv

    how to connect my iphone4 to apple tv

  • Images Aren't Showing Up In Flash

    My images aren't showing in my .swf file and they used to work.  I was wondering what happened.  Some help would be greatly appreciated.  Also wondering if there is a way to save a .swf file back as a flash file, I tried recreating the work that was

  • E-mail displaying multiple contacts

    I am using CustomObj2, I have a WF send an e-mail. In the e-mail I would like to list all the contacts associated to this CustomObj2. I added %%%<ContactFullName>%%% to the e-mail but only get one contact to display. How do you recursively get all co

  • Zen touch in my a

    thinking about purchasing a zen touch. Do i need any special accessories to play it on my car stereo system? I have a honda element which has a mini-jack for auxiliary audio devices. Thanks.

  • [SOLVED] Ardour - could not reconnect to audio/MIDI engine

    I have a problem with Ardour: when I am tryng to create a session it is telling me that it "could not reconnect to audio/MIDI engine. I don't really know where to go from here.. Can anyone please help me with this? Let me know if there is any informa