Currency reset when using commit binding in UIX page

I have 3 views on this page in a master-detail-detail relationship.
1) The first should NEVER change currency (it's selected on the previous page).
2) the other two have range bindings associated with them
3) the selection on the second view drives the 3rd
4) the selection on the third (CHANGES AN EDITABLE ROW)
PROBLEM IS THIS:
When submitting changes to the 3rd view, I call the "Commit" action binding for the datacontrol; doing so seems to be resetting even the first view. How can I commit the data to the DB without resetting row currency on all view?
Thanks in advance,
Sacha

A quick clarification. By reset I really mean re-executed; currency is changed to the first row for every view...
Any idea how this can be avoided?

Similar Messages

  • Hello. I have windows xp. When using Firefox as my home page, I get awful screen interference of lines verticle and horizontal. When I switch to Internet Explorer I don't get them. I want to keep Firefox as server.

    Hello. I have windows xp. When using Firefox as my home page, I get awful screen interference of lines verticle and horizontal. When I switch to Internet Explorer I don't get them. I want to keep Firefox as server.

    Here is something that you can try:
    # Click on Tools and then click Options.
    # Select the Advanced panel
    # Select the General tab
    # Uncheck Use hardware acceleration where available.
    # Click File and then click Exit.
    # Start Firefox normally.
    Once you have followed those steps, you'll want to follow these as well and see if the lines are gone.
    Click the Help menu and select Restart with Add-ons Disabled.
    Let me know if this has eliminated the problem.

  • Functionality loss when 'Using Query Bind Variables in Advanced Search

    Regarding: 'Using Query Bind Variables in Quick or Advanced Search'
    The functionality to do the following is lost when I use bind variables in the Advanced Search:
    "Result matches all conditions"
    "Result matches any condition"
    "Case Sensitive?"
    Is there a way to Search with Detail groups but to keep the above functionality?

    Hi,
    Your application module impl java class extends the JHeadstart class JhsApplicationModuleImpl. THe latter declares a method:
    public void advancedSearch(String viewObjectUsage,java.util.ArrayList arguments,Boolean allConditionsMet).
    In your application module impl java override the advancedSearch method where you can include your own custom code before invoking the super method:
    super.advancedSearch(viewObjectUsage,arguments,allConditionsMet);
    The 'arguments' parameter is an arraylist of QueryCondition objects. You can set several properties for QueryCondition objects such as case-sensitity, operators etc.
    Regards,
    Ibrahim

  • JDBC Connection Reset when using many processes on 64 bit system

    Hi,
    we've a annoying JDBC connection problem since we migrated our Java server to a 64 bit operating system. Here our environment.
    Database Machine:
    Oracle 10g
    Linux 32 Bit (but same problem on 64 Bit)
    Application Servers Machine:
    JDBC driver 11.1.0.6
    SUN Java 1.6.0_06 64bit
    Linux 64 bit (SLES 10 SP2)
    We have 6 different Java server processes (but with the same code) which all create some connections to the same database (running on a different Hardware). All 6 Java server processes starting at the same time (via scripts).
    Everything was fine, until we migrated the application server machine from 32 bit Linux to 64 bit Linux. From this day on, the half (or one more or less) of our application server processes can't longer connect to the database. The application server processes which have the problem product the following stack trace:
    java.sql.SQLRecoverableException: I/O Exception: Connection reset
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:281)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:118)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:224)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:296)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:611)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:455)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:494)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:199)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:30)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:154)
    at com.aaaa.utils.db.DbConnectionPool.<init>(DbConnectionPool.java:130)
    It looks like a network problem with the system but all other network stuff works without problems, between the two machines.
    - We use the thin JDBC driver (no OCI)
    - No firewalls are active on both systems
    - Both systems are in the same subnet connected to the same switch
    - The DNS configuration on both systems are ok (forward and reverse)
    - We've found the same problem on different application-server/database-server pairs with 64 bit application server hardware - but not all of our 64 bit server systems have this problem.
    - When running application server process and database on the same system (connecting via localhost) the problem does not longer appear.
    - The same database machine connected from a 32 bit application server (with 6 different java processes starting at the same time) works without a problem.
    We've tried a lot of things to isolate the problem - but with no success.
    - Same problem with SUN Java 1.6.0_06 32 bit (on 64 bit Linux)
    - Same problem with SUN Java 1.6.0_15 (32 and 64 bit)
    - Played with some JDBC connection properties (oracle.jdbc.TcpNoDelay, oracle.jdbc.ReadTimeout, oracle.net.CONNECT_TIMEOUT, oracle.net.disableOob, oracle.jdbc.RetainV9LongBindBehavior, oracle.jdbc.StreamChunkSize) without a positive result.
    - We've updated Linux network driver
    - We've changed to an completeky other NIC
    - We've tried an other Linux 64 distribution
    - We've increased the PROCESSES parameter in the init.ora
    - We've tried the JDBC driver 11.1.0.6
    - We've tried the _g version of the JDBC driver, but the debugging output simply tell us "Connection Reset" without a hint why.
    - We've tried a more complex JDBC connect string (
    "jdbc:oracle:thin:@(DESCRIPTION=" +
    "(ADDRESS_LIST=" +
    "(ADDRESS=(PROTOCOL=TCP)" +
    "(HOST=host)" + =
    "(PORT=port)" +
    ")" +
    ")" +
    "(CONNECT_DATA=" +
    "(SERVICE_NAME=sid)" +
    "(SERVER=DEDICATED)" +
    ")" +
    Nothing of this things helped us to isolate the problem.
    When we start our application server processes with a long pause (>1 min) between every process start. The problem does not occure. When we start only one application server with the same number of connections as the 6 different application server processes, everything works fine.
    We have absolute no idea why
    - this only occures on 64 bit Linux
    - independent if it's a 32 bit or 64 bit JVM
    - does not occure on all 64 bit application server machines / database machine pairs
    - never occure on the same 64 bit app server hardware when using a 32 bit Linux
    - using the Oracle JDBC 10g driver (10.xxx) there is no problem (but because of other issues, we need to use the JDBC 11g driver)
    Does anybody has an idea what our problem is?
    Thanks in advance,
    greetings

    I was recently struggling with this exact same problem. I opened a ticket with Oracle and this is what they told me.
    java.security.SecureRandom is a standard API provided by sun. Among various methods offered by this class void
    nextBytes(byte[])
    is one. This method is used for generating random bytes. Oracle 11g JDBC drivers use this API to generate random number during
    login. Users using Linux have been encountering SQLException("Io exception: Connection
    reset").
    The problem is two fold
    1. The JVM tries to list all the files in the /tmp (or alternate tmp directory set by -Djava.io.tmpdir) when
    SecureRandom.nextBytes(byte[]) is invoked. If the number of files is large the
    method takes a long time
    to respond and hence cause the server to timeout
    2. The method void nextBytes(byte[]) uses /dev/random on Linux and on some machines which lack the random
    number generating hardware the operation slows down to the extent of bringing the whole login process to
    a halt. Ultimately the the user encounters SQLException("Io exception:
    Connection reset")
    Users upgrading to 11g can encounter this issue if the underlying OS is Linux which is running on a faulty hardware.
    Cause
    The cause of this has not yet been determined exactly. It could either be a problem in
    your hardware or the fact
    that for some reason the software cannot read from dev/random
    Solution
    Change the setup for your application, so you add the next parameter to the java command:
    -Djava.security.egd=file:/dev/../dev/urandom
    We made this change in our java.security file and it has gotten rid of the error.

  • DCIteratorBinding reset when using go link

    When I use a go link to step to another page in my application the DCIteratorBinding on the new page is always reset (I think the query is always automatically executed).
    This does not happen when using a control flow case.
    It's a very basic item, so I hope somebody can help.

    A go link is not really designed for use within an application. It's supposed to be used for external URLs. So if you use a go link to jump to a page in your app it's the same as the user clearing the URL and starting again with that new URL which, most likely will essentially start a new session. So it's no surprise that everything refreshes.
    So why use a go link, just use a control flow case and a commandLink.

  • Ipod resets when using it

    My 30 gig 5G ipod random resets when im in shuffle or skipping through songs in my song list. It does it randomly, like right after a new song comes up, it'll reset. I'm not sure, but I looks like its different songs that come up, so i dont think its the song itself. Please help.

    I saw this stuff about turining off the EQ in order to solve the problem when in some songs the iPod reset itself.... It works!!!! That's the good news... the bad news... this answer *****!!!! C'mon guys, Apple users deserve more than this!!!!
    All begun when I upgrade my iPod to the 1.2 version... Pls guys, if you are one of this few people that you are not upgrade it to the last version.... dont do it!!!
    Wait until 1.3.... or at least a minor release 1.2.X
    Wow... Im a PC user converted to a MAC one... but I never tought that this kind of ¨bugs¨ happen in this world!!! I'd to see it to belive it

  • Error when using PPR in the OA page developed.

    HI,
    We are encountering an error when using PPR for the custom OA page being developed. I am using JDeveloper version 9.0.3.5(Build 1437) and Oracle Applications version 11.5.10.CU2. The scenario we are using PPR and the steps to reproduce the issue is mentioned below,
    Scenario:
    1) PPR is enabled for a custom OA page that is developed.
    2) The PPR is being used to enable or disable a particular field based on the
    selection of a value in a poplist in the same OA Page.
    Error replication steps:
    1) The user enters a value in the primary mandatory field which has to have
    unique value.
    2) The user selects a value from the poplist of a field which has PPR associated.
    3) The user enters data in all other mandatory fields in the OA page except one
    and tries to save the form and is shown a error message saying that all
    mandatory fields are not entered(This is correct). Now the page gets
    automatically refreshed and so the entered values are wiped off.
    4) Now if the user again enters a value in the primary mandatory field (as in
    step1) and if that value happens to be already existing value and then select
    a value from the poplist which has PPR enabled then immediately the error
    "Please enter a unique value" is entered, though we did not save the record.
    The unique record validation would happen only at the time of saving the
    record as per out business logic.
    5) But if in Step 4 if i had entered a unique value again then the above said error
    does not happen. There are few more similar kind of issues happening in the
    same page because PPR is enabled.
    Please note that this issue happens only when the page is deployed in a oracle
    applications instance and not in JDeveloper.
    Would this issue because of some cacheing problem? If Yes then how do we resolve it? Or would it be some other problem caused by our internal coding.
    Any inputs for resolving this issue would be highly appreciated.
    Thanks, Raja.

    What works in Jdeveloper should work when deployed in iAS as well.
    And PPR is an old feature given quite enough time to mature, so before we suspect OA we should investigate the code. What I do not understand is how the page refreshes in Step 3 and why does the user have to re-enter the fields just because he missed entering one mandatory field the last time.
    Mandatory field validations are client validations set by making the fields 'Required'. You obviously have client validations turned off on your PPR, otherwise you would be stuck with a javascript popup on PPR. The only way you can get the "Please enter unique..." error on PPR is Server Validation. So where have you placed this validation? If it is not in the EO, is it in the AM? And are you unconditionally calling the AM validation method in your processFormRequest? The PPR will also go through processFormRequest so I hope the PPR event is in a different if-else block.

  • Javascript problems using HttpUnit while testing UIX pages

    Hello JDeveloper Team
    Need urgent help about testing my web pages written in UIX. I tried to use HttpUnit but I got Javascript errors. What is wrong with it ?
    I also used HtmlUnit. It works well but writing code to check the html page that is produced from a UIX is a stomachache. I mean all the ids , names of components are so absurd words. A submit button for example is a link with an image inside it but has no name or id. So there is no way to reach it with a method of HtmlUnit library.
    Can you please advice me a methodology to test my uix pages? Or is there any tool or application for this purpose ? It could be licensed . My company needs such a tool. I also tried AppPerfect but it does not support UIX.
    I need your valuable opinions. An answer that is quick would be appreciated.
    Thanks

    if you want an ID in the html, you can set it in the UIX file and it will appear
    in the html

  • Error when using comma in number range

    when i use the comma character in a table, in use with some formulas i am getting an error.
    pages thinks that the comma character is a string.
    here in the netherlands we use the comma, as a seperation character for our numbering. (like this 7,80)
    does anyone have any idea, how i can fix this?
    regards,
    Brian Zaal
    imac/ibook   Mac OS X (10.4.8)  

    Hello Brian,
    the problem is well known by many Pages users of Europe and was discussed in some threads here. Some feedbacks were sent to the developers already (it can help if you will send one as well) and hopefully this will be solved with the next release. Until than you should work with other math functions like divide and multiply.
    I, for example, use Pages for offers and invoices, so I have to use the "1,16" MwSt. of Germany. For this I calculate: MwSt. = value/116*16
    Have a look, if this helps you to avoid commas.

  • Problems with Array-Parameters when using Document-Binding

    Hi,
    I use the following environment:
    JDeveloper 11.1.1.3.0
    WLS 10.3.3.0
    I created a small EJB (2.1), containing a simple method, which is using arrays as parameters:
    public String doTestArray(String[] aStringArray, int[] aIntArray)
    throws RemoteException;
    I exposed this EJB as a Webservice using JDev's Webservice wizard. I choosed Document/Wrapped-Binding. WSDL and mapping file are being generated. Made an EAR-Deployment-Profile and deployed the application to Integrated-WLS.
    I tried to test the Webservice with the WLS integrated test client, which is generating the following request:
    <doTestArrayElement xmlns="http://model/types/">
    <!--Zero or more repetitions:-->
    <arrayOfString_1>string</arrayOfString_1>
    <!--Zero or more repetitions:-->
    <arrayOfint_2>3</arrayOfint_2>
    </doTestArrayElement>
    Unfortunately, the invokation fails. WLS returns
    weblogic.wsee.codec.CodecException: Failed to decode message
    at weblogic.wsee.codec.soap11.SoapCodec.decode(SoapCodec.java:188)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.decode(CodecHandler.java:139)
    That only happens in methods, which use array-parameters. Simple parameters are no problem.
    However, when I use RPC/Encoded as Webservice-Binding, everything seems to be fine.
    Does WLS have problems in general using array-parameters and Document-Binding?
    Any help would be appreciated.
    Thanks,
    Stefan

    Hi Josko,
    Where do you have this problem 3.5 or 7.0 BexAnalyzer.
    When ever heirarchy icons are created in BEx, respective hyperlink is assigned to each of them, Make sure that you dont manipulate with them,,
    If you still have problem then create OSS message.
    Regards,
    Vinay

  • Reset When Using Landscape Mode

    Has anyone else experienced resets while viewing Safari in landscape mode? Resets back to home screen. Same thing happens with some of the appssuch as eBay, not in landscape mode.

    Howdy Scott,
    If I understand correctly the left side of the keyboard when you have it showing stops responding in landscape mode until you rotate it to portrait, then back to landscape. Otherwise the left side of the screen works fine outside of the keyboard. From what I gather, this would indicate to me a software issue, so I would start by quitting all the running apps on the device:
    iOS: Force an app to close
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it. 
    When you have done that restart the device and test the issue again:
    iOS: Turning off and on (restarting) and resetting
    If the issue persists, backup your device to iTunes and then restore it as a new device and verify that it works. 
    How to erase your iOS device and then set it up as a new device or restore it from backups
    If it does, then restore your backup to either verify it still works and the software just needed reinstalled, or isolate the issue to the backup file itself. 
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Palm TX Resets When Using BT Keyboard & WiFi

    I'm hoping someone can help me with this.  I just purchased a Palm BT Keyboard, deleted the IR kybd driver and installed the BT kybd driver.  But when I've connected to the internet via WiFi, my TX resets as soon as I press a key (any key).  I've tried warm resets as well as deleting and reinstalling the BT kybd driver but to no avail.  Does anyone have any suggestions.  Also, I've noticed the alarms on my TX stopped working about the same time as this issue.  Could this all be related to the BT driver?  Thanks in advance for any suggestions.
    Post relates to: Palm TX
    This question was solved.
    View Solution.

    Solved my own problem.  The conflict was with PowerButton.  Once I deleted it, BT Kybd and WiFi worked just fine.
    Post relates to: Palm TX

  • Bug report: Controls in the Data Entry property page reset when using relative time

    Create a blank VI.
    Drop a numeric control.
    Right click and select "Display Format".
    Change to a relative time.
    Switch to the "Data Entry" tab page.
    Uncheck the "Use Default Limits" boolean.
    Try changing the values and you will see that they return to their previous values (inf, by default). This persists even after pressing OK and opening the dialog again. It looks like the values are held in a cache and put back into the controls, since if you change a page and go back to the limits page, it shows the correct values. I also managed to get it to display the values using the correct format (relative time), which I assume is what it should be doing.
    This is in LabVIEW 8.6.
    Try to take over the world!
    Attachments:
    Relative Time Data Entry Bug.vi ‏5 KB

    I spent some time playing around with this in 8.6.1, and at this time do not consider it a bug - unless there is something I completely missed.
    When you set to relative time, the inputs for data entry are expecting HH:MM or HH:MMS, depending on which display setting you chose.  Typing a '7' is undefined - does the user mean hours? Minutes? Seconds? Parsecs ?
    Once we type in a value that matches the format and we get the display to change, it is true that from now on if we type '7' in the field, it will automatically coerce it to 7:00, if we type 36 it coerces to 36:00.  If we type 7.5, it does not change the value at all.  I think at this point, the user knows what is going on, so this behavior is acceptable.  After accepting the changes and re-opening the properties window, the limits are persistent.
    I was not able to reproduce typing a '7' in the limit, having it automatically coerce back to '-inf', then going to a different tab or clicking ok, and coming back and seeing it as 7:00. It was still '-inf'.  If you have some more details on this, maybe I can reproduce it, but from everything I tried, users are be able to enter values and these values are saved.
    Edit - I am aware of the other forum post and the CAR filed there...
    Message Edited by Robbob on 03-03-2009 11:20 AM
    Rob K
    Measurements Mechanical Engineer (C-Series, USB X-Series)
    National Instruments
    CompactRIO Developers Guide
    CompactRIO Out of the Box Video
    Attachments:
    2009-03-03_105522.jpg ‏51 KB
    2009-03-03_105336.jpg ‏58 KB

  • Iphone randomly shuts down and resets when using the music player

    I have been listening to almost the same music list since i got the iphone 3gs at launch. When I upgraded to the latest iOS software, the phone now automatically shuts off and resets on certain playlists. I did a full restore, ddnt work. I even deleted and reloaded my cd's on there, but same issue and its getting very annoying to just have it reset every time some song plays. Anyone have an answer?? please help..

    Hi there Julius Ita,
    You may find the troubleshooting steps in the article below helpful.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    Issue not resolved
    My issue is still not resolved. What do I do next?
    Contact Apple Support.
    -Griff W. 

  • Ipod video needs to be reset when using shuffle songs.

    I like to shuffle my 4800 plus songs on my new ipod, but I have noticed that after turning it off for an extended period of time usually a couple hours or over night, it needs to be reset. I have not tried to retore it as of yet, but I plan on to see if that helps. Has anyone else experienced this?
    Ipod video 5.5   Windows XP  

    restore did not work, guess I'll just have to live with it until apple does a firmware upgrade.

Maybe you are looking for

  • Windows 8.1 on Hybrid?

    I've been trying to find out if Windows 8.1 will run 32 or 64 bit, on a Studio Hybrid 140G. I have looked for updated BIOS, firmware and drivers with the Service Tag. Only Windows 7 is listed. Not encouraging. Does anyone have any information on this

  • 11.1.14 install   reinstall not working

    Tried to do the 11.1.14 update last night for my Windows 7 laptop. It failed to install. I shut down for the night. This morning I got an 'MSCVR80.DLL missing' notice even before my desktop was fully operational. Got it later when I tried to open iTu

  • Employee interaction Center issue

    Hi all,             If an employee wants to add some documents like for example ( Offer letter, salary verification letter etc ) with the help of EIC , How can we achieve/Configure it... Any inputs, highly appreciated Thanks, Rahul

  • Storing Data in the PCD

    Friends, I followed the SAP documentation example to store data on a subcontext. My code is something like this: Hashtable env = new Hashtable(); env.put(Context.INITIAL_CONTEXT_FACTORY, IPcdContext.PCD_INITIAL_CONTEXT_FACTORY); env.put(Context.SECUR

  • Content Holders Not Allowing Text Styling

    I'm new to B.C. and am really enjoying the new services I can use. I published my design from Muse to BC and enabled content editing within B.C. however text was not editible within "Site Editor". Support said that this may be because of the way my h