Issue with child node edit on TreeTable

Hello,
I have a treeTable which is based on single VO. My problem is such that, when i select the child node and click on edit, i get values of it's parent :( ....
but when i have once  edit on any node (either rollback/commit) and hit the browser refresh button now it works as expected and no more issue....
what the heck is that. I have used backingBean scope and i have jdev 11.1.1.3.0
Thanks
Raj

Hello Frank,
Thank you so much for the help.. I have 2 iterator as explained in http://www.oracle.com/technetwork/developer-tools/adf/learnmore/sept2011-otn-harvest-508189.pdf .
As my treeTable is based on single VO , whenever i select a child node and hit the toolbar edit and/or context menu edit, i get parent node info in the edit form. and this happens until i hitting browser refresh. after that it works as expected....
when selection is made and edit button is clicked i call the managed bean method to call service operation as:
public void onTreeTableEditClicked(ActionEvent actionEvent)
Number id = getSelectedIdFromTree(); // my problem is here ... i am getting parent id until once edit is done(either rollback/commit) and browser refresh is hit. after that i am getting selected it.
if (id!= null)
OperationBinding opr =
ADFBindingUtils.getDCBindingContainer().getOperationBinding("selectMyMethod");
opr.getParamsMap().put("id", id);
opr.execute();
_showPopup(getEditPopup());*
else
// show warning.
public Number getSelectedIdFromTree()
RowKeySet rks2 = myTreeTable.getSelectedRowKeys();
Iterator rksIterator = rks2.iterator();
if (rksIterator.hasNext())
List<Key> list = (List<Key>) rksIterator.next();
return ((DBSequence) (list.get(list.size() -
1).getKeyValues()[0])).getSequenceNumber();
return null;
// in the application Module
public void selectMyMethod(Number id)
MYVOImpl pvo = getEditMyVOImpl();
MYVORowImpl row =
(MYVORowImpl ) pvo.findByKey(new Key(new Object[]
{ new DBSequence(id) }), 1)[0];
pvo.setCurrentRow(row);
and the edit popup has value referenced by editIterator...
Please let me know where i am wrong, or is there something i am missing.
Thank you
Edited by: MavenDev on Nov 8, 2011 8:34 AM

Similar Messages

  • OBIEE 11g (11.1.1.5.0) - Issue with starting Node Manager

    Hi,
    Have anyone faced an issue with starting Node Manager in OBIEE 11g (11.1.1.5.0)? OS is 64 bit Linux, WebLogic is 10.3.5. I used the software-install method and followed by running config.sh. Everything completed successfully. I updated the catalog and rpd location in the FMW control screen.
    To get it activated I bounced services and when I try to start Node Manager it gives below error --
    <Aug 30, 2011 2:02:42 PM CDT> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Aug 30, 2011 2:02:42 PM> <SEVERE> <Fatal error in node manager server>
    java.io.IOException: Unsupported cypher suite: TLS_RSA_EXPORT_WITH_RC4_40_MD5
    at weblogic.nodemanager.server.SSLListener.init(SSLListener.java:82)
    at weblogic.nodemanager.server.NMServer.start(NMServer.java:206)
    at weblogic.nodemanager.server.NMServer.main(NMServer.java:377)
    at weblogic.NodeManager.main(NodeManager.java:31)
    Aug 30, 2011 2:02:42 PM weblogic.nodemanager.server.NMServer main
    SEVERE: Fatal error in node manager server
    java.io.IOException: Unsupported cypher suite: TLS_RSA_EXPORT_WITH_RC4_40_MD5
    at weblogic.nodemanager.server.SSLListener.init(SSLListener.java:82)
    at weblogic.nodemanager.server.NMServer.start(NMServer.java:206)
    at weblogic.nodemanager.server.NMServer.main(NMServer.java:377)
    at weblogic.NodeManager.main(NodeManager.java:31)
    + set +x
    I see the same issue reported in ML OBIEE 11g - Node manager fails to start upon upgrade [ID 1329442.1] and WebLogic Server: Node Manager Startup is Failing with java.io.IOException: Unsupported cypher suite [ID 1329260.1] I tried to modify commEnv.sh. But it didnt help me.
    Please let me know if anyone have faced similar issue and what exactly did you do to resolve it.
    Cherrish Vaidiyan
    Edited by: Cherrish on Aug 30, 2011 3:14 PM

    Hi,
    There are Two types of Cipher suites --- Certicom Cipher Suite and SunJSSE Equivalent Cipher Suite. And with Weblogic 10.3.5, you are using Sun JSSE Cipher Suite, and by default Node Manager uses the Certicom Cipher Suite.
    In the nodemanager.properties, Add CipherSuite=SSL_RSA_EXPORT_WITH_RC4_40_MD5, save and restart Node Manager.
    Reference Metalink Note: WebLogic Server 10.3.x: Getting "Unsupported Cipher" Exceptions When Starting Node Manager [ID 1307325.1]
    Cherrish Vaidiyan

  • Hello Gurus..... ISSUE with child Table update

    I have an issue with child table update
    I have created a GTC with one parent table and two child tables. I'm able to update the parent table and the values are found in db, but the ISSUE is the child Table values are not updating the db.
    please give me a solution
    regards
    Srikanth

    If you are keeping referential integrity in the database, not in the application, it is easy to find the child and parent tables. Here is a quick and dirty query. You can join this to dba_cons_columns to find out on which columns the referential constraints are defined. This lists all child-parent table including SYS and SYSTEM users. You can run this for specific users of course.
    select cons1.owner child_owner,cons1.table_name child_table,
    cons2.owner parent_owner,cons2.table_name parent_table
    from dba_constraints cons1,dba_constraints cons2
    where cons1.constraint_type='R'
    and cons1.r_constraint_name=cons2.constraint_name;

  • How to differentiate parent and child node in af:treeTable ?

    Greetings,
    I have a requirement, I display master child view objects using <af:treeTable> component, When user expands a parent row, I have to make parent row is in read only and expanded(child) row in editable. To accomplish this I have to identify the 'node' whether it belongs to parent or child view object. In this example Tree table binds with EmpVO, There is a view link beteween EmpVO and DepartmentVO.
    <af:treeTable value="#{bindings.EmpVO.treeModel}"
    var="node"
    rowSelection="single" id="tEqSum"
    summary="Employee Summary"
    <af:column sortProperty="#{bindings.EmpVO.hints.LocCity.name}"
    filterable="true" sortable="true" width="90"
    headerText="#{bindings.EmpVO.hints.LocCity.label}"
    id="c3">
    <af:outputText value="#{node.LocCity}" id="ot21"/>
    expandAllEnabled="false">
    </af:treeTable>
    Thanks in Advance,

    Hi,
    You can find out the node depth by using
    #{bindings.<your_tree_binding>.treeModel.depth}Based on the depth, you can decide whether its a parent node or child node (for a 1 level tree- say dept and emp, the depth for parent would be 0 and for the child it would be 1).
    -Arun

  • Problem with childs nodes and automatic key mapping in a Data Object

    Hi experts!
    I'm doing the service order tutorial from the mobile help at [this link|http://help.sap.com/saphelp_nwmobile71/helpdata/en/21/9b5b924c3b434fba4767731794b029/frameset.htm] and I have a problem...
    In the topic "Modeling the Equipment Data Object", says you have to mark the "Automatic Key Mapping" checkbox. So when I had to create a third child node ( the location node ) the system raised an exception with the message "Deselect automatic key mapping flag for more than two-level nodes". I'm trying deselecting the flag and creating the location node, but when I want mark again the automatic key mapping flag, this is disabled.
    What can I do to solve this and create the three child nodes with the flag marked? It's a configuration thing?
    Any help it's very welcome. Thanks in advance.
    Best regards,
    Simon.

    The thing is: Its not allowed to use automatic keymapping if you have more than two levels. This is why the message showed up, and this is why its been disabled.
    What automatic keymapping does: Figures out automatically which child node belongs to which parent (by guessing from the field name and type, which fields in the child correspond to which key fields of the parent).
    On three levels, this becomes more complicated => Its disabled.
    How to do keymapping yourself instead of having the DOE do it automatically: Do 'Explicit keymapping' from each child to its parent. Explicit keymapping is done by clicking on the corresponding menu button in the child node. Here you need to associate child node fields (they need not be key fields of the child, but they are allowed to be that as well) to each of its parent nodes key fields (so that each child can be associated to its parent).
    Cheers

  • PI 7.1 upgrade related issue (With removeContexts node function)

    Hi all,
    We have upgrade from PI 7.0 to 7.1, there was no changes done to the maps...but when we execute the old maps it give no value in the queue error: (this occurs during run time)...
    But when I test the payload it executes fine...I have found and issue with remove context (the queue display in 7.0 is different than in 7.1)
    It doesn't end with SUPPRESS context change...we have observe that the maps which has removeContext are failing...
    Is there any OSS note on this issue...anyone faced this issue?
    Any suggestions?
    Thanks,
    Srini
    Edited by: Srinivas Davuluri on Oct 2, 2009 6:55 PM

    I have added the parameter to the init method of the Functions tab in our message mapping - retainlastValueofPreviousContext=true; according to the blog...but still the same error...
    But, when I execute in the Test tab it works fine;
    Any other suggestions or anyone who has faced this issue...we are on PI 7.1 SPS7
    Thanks,
    Srini
    Edited by: Srinivas Davuluri on Oct 5, 2009 9:46 AM

  • Issue with child items of flex tree using QTP

    Hi,
    We are trying to automate Flex web application using QTP10.
    We are facing below issue with Flex tree when we try to automate a scenario of selecting a child item displayed in flex tree.
    Issue:
    On recording the step of selecting an item from Flex tree using QTP, the script displayed is .Select Index1. But when we replay it back no action is being performed.
    Also on object spy we are able to navigate only till flex tree and we are not able to spy child items of flex tree.On the web page the child items are displayed as radio buttons/checkboxes.
    Please provide a solution for me to this problem.
    Thanks

    Hi,
    You could perform a HTTP trace (using HTTP watch) and compare the OCI data in POST method for both users (the correct and incorrect ones).
    Perhaps there is some additional/missing information being passed from catalog to SRM.
    Kind regards,
    Ricardo

  • RAC issues with second node

    We have two node rac setup. We are facing issues with the second node. if both node are up then application is not able to connect with the database. if the second node is down then application is able to connect.
    What is the reason of this abnormal behaviour ?
    any suggestion ?
    We have oracle 10g RAC ( Database version 10.2.0.4), CRS version 10.2.0.3
    Please help

    oracle@ora1-oam # crsstat
    HA Resource Target State
    ora.cms.cms1.inst ONLINE ONLINE on ora1-oam
    ora.cms.cms2.inst ONLINE ONLINE on ora2-oam
    ora.cms.db ONLINE ONLINE on ora1-oam
    ora.cms.db.cms.com.cms1.srv ONLINE ONLINE on ora1-oam
    ora.cms.db.cms.com.cms2.srv ONLINE ONLINE on ora2-oam
    ora.cms.db.cms.com.cs ONLINE ONLINE on ora1-oam
    ora.myrio.db ONLINE ONLINE on ora1-oam
    ora.myrio.db.myrio.com.cs ONLINE ONLINE on ora1-oam
    ora.myrio.db.myrio.com.myrio1.srv ONLINE ONLINE on ora1-oam
    ora.myrio.db.myrio.com.myrio2.srv ONLINE ONLINE on ora2-oam
    ora.myrio.myrio1.inst ONLINE ONLINE on ora1-oam
    ora.myrio.myrio2.inst ONLINE ONLINE on ora2-oam
    ora.ora1-oam.ASM1.asm ONLINE ONLINE on ora1-oam
    ora.ora1-oam.LISTENER_ORA1-OAM.lsnr ONLINE ONLINE on ora1-oam
    ora.ora1-oam.gsd ONLINE ONLINE on ora1-oam
    ora.ora1-oam.ons ONLINE ONLINE on ora1-oam
    ora.ora1-oam.vip ONLINE ONLINE on ora1-oam
    ora.ora2-oam.ASM2.asm ONLINE ONLINE on ora2-oam
    ora.ora2-oam.LISTENER_ORA2-OAM.lsnr ONLINE ONLINE on ora2-oam
    ora.ora2-oam.gsd ONLINE ONLINE on ora2-oam
    ora.ora2-oam.ons ONLINE ONLINE on ora2-oam
    ora.ora2-oam.vip ONLINE ONLINE on ora2-oam
    ora.rms.db ONLINE ONLINE on ora1-oam
    ora.rms.db.rms.com.cs ONLINE ONLINE on ora1-oam
    ora.rms.db.rms.com.rms1.srv ONLINE ONLINE on ora1-oam
    ora.rms.db.rms.com.rms2.srv ONLINE ONLINE on ora2-oam
    ora.rms.rms1.inst ONLINE ONLINE on ora1-oam
    ora.rms.rms2.inst ONLINE ONLINE on ora2-oam
    ora.tmpl.db ONLINE ONLINE on ora1-oam
    ora.tmpl.tmpl1.inst ONLINE ONLINE on ora1-oam
    ora.tmpl.tmpl2.inst ONLINE ONLINE on ora2-oam
    ora.vcas.db ONLINE ONLINE on ora1-oam
    ora.vcas.db.vcas.com.cs ONLINE ONLINE on ora1-oam
    ora.vcas.db.vcas.com.vcas1.srv ONLINE ONLINE on ora1-oam
    ora.vcas.db.vcas.com.vcas2.srv ONLINE ONLINE on ora2-oam
    ora.vcas.vcas1.inst ONLINE ONLINE on ora1-oam
    ora.vcas.vcas2.inst ONLINE ONLINE on ora2-oam
    ora.vmxcsmdb.db ONLINE ONLINE on ora1-oam
    ora.vmxcsmdb.vmxcsmdb1.inst ONLINE ONLINE on ora1-oam
    ora.vmxcsmdb.vmxcsmdb2.inst ONLINE ONLINE on ora2-oam
    this is the status when both nodes were up.....

  • Issues with WMV HD Editing & Newbie Questions

    Hi,
    I am new to PE7, so apologies if some of these have been asked b4, I searched but couldn't come up with direct solutions.
    I mainly edit HD WMVs, raw HD videos and MPEGs, to be used on PCs and on the internet. Most used output would be HD 1280x720(wmv).
    I am having problems with HD WMVs in PE7, they don't seem to play smoothly for editing, clipping etc(choppy and jumpy are the words that come to mind). At first, I thought this was a memory issue( I have 3 gigs on a Vista computer with a Dual Core processor), but then decided to try editing a couple of  HD MPEGs (same size) and these played smoothly, allowing be to make precise splits etc.
    What would be the best setting for editing WMV HD files(as I said, mainly 1280x720 input and output)? I tried the HD and AVCHD settings(when starting the new project), no joy. Is there some way to tweak PE7, or adjust the settings when editing WMVs, or in general, is it best to import MPEGs?
    Next question  - I am going to be doing quite a lot of editing over the next few months. Do people find Vista or XP more stable to use with PE7 and Premiere Pro and how much memory would be best for optimal perfomance? If I have to get an XP PC for editing, then that's what I'll have to do. Right now, I'm trying out PE7 and I'm sure I'll have to upgrade to Premiere Pro in a few months, so please bear that in mind.
    Any other suggestions, tips and useful links, greatly appreciated.
    Thanks

    PE7 handles HDV MPEG2 natively... so if you look at a clip on the timeline it will have no line above it, if you look at a HD WMV file on the timeline it will have a red line above it. For the HD WMV file to play back smoothly on your computer (depending on how "beefy" your computer is) you will have to hit the Enter key on your keyboard to render the clip. After rendering the clip will play back smoothly and have a green line above it.
    If you are editing 1280x720 HD WMV you could use the HDV 720 30p project preset... however whatever project preset you use you will always have the same need to render the clip.
    PE7 and PPro works well with either WinXP or Vista. For editing high definition video I would go with 4G RAM (well your computer will only be able to access 3.2G+ of the RAM). More important is the processor, especially if you venture into editing AVCHD. A fast Quad core is ideal.

  • Issue with hierarchy node variable and multiple SAP hierarchies

    Hello experts,
    We are currently facing an issue when using two SAP hierarchies in Web Intelligence and one of them is restricted with a hierarchy node variable.
    The systems we use are a SAP BI 7.01 (SPS 05) and a Business Objects Enterprise XI R3.1 SP2 (fix pack 2.3). I want also to point out that the fix pack 2.3 has been applied to all BOE related components: the SAP integration Kit, client tools, and enterprise (server and client).
    The universe used in our scenario is based on a BEX Query with two hierarchies (non-time dependent hierarchies, intervals allowed) loaded on their corresponding characteristics. One of these characteristics is restricted with a hierarchy node variable (manual input, optional, ready for input, multiple single values allowed). 
    Prerequisites for replicating the problem:
    1)     When building the web intelligence query select several levels from both hierarchies (they have seven levels each) and    the   only amount of the InfoCube that the BEX query (that was used to create our universe) relies on.
    2)     In the hierarchy node variable prompt select a hierarchy node entry (not an actual InfoObject value that exists as transactional data in the InfoCube )
    By executing the query built above, all characteristics are returned null (no value) and the key figure with value u201C0u201D. No error messages, no partial results warnings.  Now if we go back to u201CEdit queryu201D and select levels of only one of any of the two hierarchies the query runs normally (by selecting the exact same value for the hierarchy node variable prompt).
    Any ideas on the matter?
    Regards,
    Giorgos

    Hi,
    Have you ever got a solution for this problem?
    I have a similar one.
    Thanks,
    regards, Heike

  • Connectivity issues with 11g Express Edition on 64bit Windows 7 Professional

    Hello,
    I uninstalled my 10g version of Express Edition, and proceeded to install the 11g version.  I can connect with sqlplus, but when I try to open the DB web app (apex), I'm unable to.
    The clsc.log file shows the following error:
    Oracle Database 11g Clusterware Release 11.2.0.2.0 - Production Copyright 1996, 2010 Oracle. All rights reserved.
    2015-01-08 19:55:52.286: [ default][41100]ut_read_reg:2:ocr registry key SOFTWARE\Oracle\olr cannot be opened. error 2
    [    CLSE][41100]clse_get_crs_home: Error retrieving OLR configuration [0] [Error opening olr registry key. The system cannot find the file specified.
    I've uninstalled and re-installed twice with the same results.  Anybody knows what's going on?
    Any help is greatly appreciated.

    Are you installing the 64-bit version of XE ?
    This issue has been reported before - https://community.oracle.com/search.jspa?q=clse_get_crs_home&place=%2Fplaces%2F1272
    This thread might be relevant - Oracle Software Quality - the Installer ...

  • Issue with XML nodes while Import

    Hi I am trying to import R3 data to MDM via XI. In my XML that generated from XI, has a separate nodes for main table and Qualifier Lookup tables. What happens is, in Import Manager, when a Qualifier Lookup table has only one record for a main table record, then those qualifier lookup table fields are displayed as main table elements. In that case my import MAP won't work for that Qualifier table. Any thoughts/advices?.
    Thanks
    Job.
    Edited by: Job C Daniel on Dec 21, 2007 8:00 AM

    Hi Amol,
      Thanks for your reply. My import map was created based on xml from XI( may be I should have used xsd?). I am using Products (partly customized from standard) repository. I have couple of issues.
    1. In the import manager when I opened the xml from XI, in source hiarchy tree table I see main table node and other QL(Qualifier Lookup) nodes for example Location Data and Sales Data. XI generates one XML for a record. Sometimes Sales Data QL node disappears (in import manager) because it has only one sales data record for that main table record and sales fields are populated as elements of main table node. This inconsistency is going to have problem on my Sales Data QL Map.
    2. Likewise, I do not see Material Number (Main table "Key") in Sales Data or Location Data (QL) nodes in IM. But I need that in order to load qualifier fields.
    Your help on this is appreciated.
    Thanks
    Job.

  • SSH/PAM login issue with fresh install: edit wiki or raise bug?

    I recently encountered an issue while setting up Arch on a headless server, and was wondering if I did something stupid, the documentation should be improved or I found a bug.
    The problem was that after adding a new non-root user, I couldn't SSH into that user account. I could still login to root via SSH fine. After some research and playing around I found I was able to login by setting UsePAM to no in /etc/ssh/sshd_config. I later realised that this was because I set the login shell for this account to /usr/bin/bash, and not /bin/bash. The problem is that currently /usr/bin/bash is not in /etc/shells, and the default /etc/ssh/sshd_config sets UsePAM to yes.
    As this is a new default install, and I followed the wiki during the install, I feel that this should have been documented somewhere. I don't mind changing the wiki or reporting this as a bug, just I'm not sure which is the correct course of action:
    1. Should I have known to use /bin/bash and not /usr/bin/bash, i.e. the login shell needs to be in /etc/shells? => edit the wiki [1]
    2. Should /usr/bin/bash be in /etc/shells? => raise a bug against filesystem [2]
    Related:
    [1] https://wiki.archlinux.org/index.php/Gr … management
    [2] https://projects.archlinux.org/svntogit … unk/shells
    [3] https://bugs.archlinux.org/task/35724
    [4] https://bbs.archlinux.org/viewtopic.php?id=166464
    Last edited by quigybo (2013-11-02 17:34:42)

    The wiki should be changed. /bin/bash is the correct entry in the list of shells.
    I cannot, however, remember off hand in which context this came up. I just remember this was the developers' response. So I can't point you to evidence to confirm even though I do know that is the correct answer.
    EDIT: https://bugs.archlinux.org/task/33677
    https://bugs.archlinux.org/task/33694
    Last edited by cfr (2013-11-03 03:56:49)

  • Issue with Responsive Theme, Edit Links and IE

    I've built an example of problem I have at work
    Using Theme 25,
    Build a simple app, 1 page - One Level Tabs, Right Sidebar
    Create a default region.
    In the region create a Popup LOV and, on the same row, another item- I've used a Text item
    Lov will work fine.
    Set the page template to allow edit links.
    Now the Lov won't fire.
    I think that the edit links elements have a console.log call - which IE can't handle so it does nothing.
    http://apex.oracle.com/pls/apex/f?p=72923:1
    public
    welc0m1
    Can some-one take a look and see if you can come up with a solution. It took a couple of days to spot where the problem seemed to be.

    Known bug, fixed in 4.2.2
    Before then, Edit the Java Script Debug section of the One Level Tabs - Right Sidebar template and remove the three "console.log" entries.

  • Having issues with Aperture while editing...Black Screen!

    I'm having problems when editing with Aperture...For example:
    -Picture goes black after applying an edit, then continues on to all other pictures untill I reboot Aperture
    -Exposure goes out of whack after applying an edit
    -Skin smoothing strocks are shown after being applied
    These are just a few. They do not happen the entire time I am editing, but about 30 minutes in everytime i get on Aperture something goes wrong and i have to reboot. It becoming incedibly frustrating especially when i have delines to meet with clients.
    I love using Aperture, but i can't afford for this to continue happeneing. I may have to consider using a different editing system if this problem contiues.
    Please help!

    I have 5 plug-ins that I never use...I need to delete them, but don't know how.
    At least check, if the plug-ins need updating - look at the manufacturer's website, if they are compatible with Aperture 3.5 and Mavericks.  (see: Aperture 3.4 and later: Some third-party plug-ins are no longer compatible)
    To uninstall plug-ins open the folders 
    ~/Library/Application Support/Aperture/Plug-Ins/
    (that is the user library in the Library folder in your Home folder)
    and
    /Library/Application Support/Aperture/Plug-Ins/
    (that is the in the Library folderat the top level of your MacintoshHD)
    Quit Aperture. Remove any "Edit" or "Export" plug-in, that you do no longer need.
    Your User Library may still be hidden. Open it from your "Home" folder:
    Select the "Home" folder icon in the Finder's sidebar and press the key combination ⌘J to open the view options. Enable "Show Library Folder".
    Then open the Home folder and open the Library folder inside and navigate to ~/Library/Application Support/Aperture/Plug-Ins/.
    For the second location, the system library on your hard drive, simply open the "Library" folder after clicking and opening the HD icon.
    After removing the plug-ins restart the system. Test, if removing the plug-ins will mitigate the problem.
    If not, check, if the problem occurs for all your Aperture libraries. Create a new Test library and check, if the problem depends on the library.

Maybe you are looking for