Oracle Forms - two forms have element with the same name. How to address?

Hi all
We test application in Oracle Forms 10G, often there are several forms opened simultaneously.
And now question – what to do if two or more forms have element with the same Block Name and Name?
For example:
//forms:button[(@name=’TOOLBAR_EXIT_FORM_0’)]
How to address these elements?

to aamat:
"The names are not the same"
OpenScript gives them the same name, it consists of block name + element name + index. it doesn't take form name into consideration, so it gets
//forms:button[(@name=’TOOLBAR_EXIT_FORM_0’)]

Similar Messages

  • I have two iphone 4's with the same name on one computer.  Can I change the name of one so that I can sync each phone separately

    I have two iphone 4's with the same name on one computer.  Can I change the name of one so that I can sync contacts separately?

    How to rename your device in iTunes

  • Question on multiple form elements with the same name !

    Hi All,
    I have a requirement in which more than one text field with the same name exists on a HTML page. We are using JSF framework (Oracle JDeveloper IDE and OC4J ) . I tried using a String array in my backing bean to handle these text boxes. When I hit the Submit, the action (method) is not invoked. But when I try with unique names everything works fine. Am I going wrong somewhere ?
    Thanks in Advance.

    You cannot have exactly the same name on objects.
    You will have to make an array of them to be able to
    o work with them properly--it will keep the names
    unique.I understand! But JSF creates its own names which are unique. The following JSF code
            <htm:tr>
                <htm:td>
                    <h:inputText value="#{Test.description}" id="description1"/>
                </htm:td>
            </htm:tr>
            <htm:tr>
                <htm:td>
                    <h:inputText value="#{Test.description}"  id="description2"/>
                </htm:td>
        </htm:tr>generates the following HTML code with unique names.
            <tr>
                <td>
                    <input id="Test:description1" type="text" name="Test:description1" />
                </td>
            </tr>
            <tr>
                <td>
                    <input id="Test:description2" type="text" name="Test:description2" />
                </td>
        </tr>
        <tr>Though I have a String Array in the backing bean, this doesn't work (The form does not submit to the method in the Backing Bean).
    Similar situation in Struts works absolutely fine.
    Any help would be appreciated !!!

  • Connecting to two wi-fi networks with the same name

    Hello,
    I have to work daily on two different universities, using my Powerbook 12" (MacOS 10.5.8). The wi-fi networks in both places are both called the same — "eduroam", the European network service for education. Everytime I try to connect, the system will use the last provided login and password (which are obviously different in the two cases) and fail. Is there an easy way to prevent this from happening, saving the different settings for both places?
    Thanks in advance.

    Thanks, K T.
    Yes, I'm using automatic logins. How do I do can I create the logons? In the Network Preferences, renaming the location?

  • Apperture allows you to import two photos with the same name

    I have two different Sony Cameras and Apperture has allowed me to import photos from both without a problem however after changing to 1.5 it will not allow me to back them up to an external drive because the drive thinks that the other one is open and that it is duplicated. For example the file name DSC2134 has been saved at different times with different cameras but if I try to back up to my exyternal drive it just hangs up my entire computer. I thought the backup was slow but after 24 hours it still had not moved and would not even allow me to force quit. I had to turn my mac off. If I move each photo one by one it will say that my second photo is a duplicate - even if I have renamed the second version. How do I batch rename? How do I rebuild my library?
    I moved to Apperture to get out of all the problems with iphoto now I seem to be back at the begining.
    G5   Mac OS X (10.4.4)   Tiger

    Rhian,
    Aperture stores everything in its index table with a master filename as a key. This key may be the incoming filename or a user designated name.
    Images are imported into a Project, and OSX naming conventions demand that within a folder, names are unique. However, OS X allows multiple occurences of the same name in different folders. And so does Aperture.
    When you exported, it sounds like you exported the dups to the same folder? It sounds like Aperture should have identified this error condition and presented a dialog box to ignore/replace .... obviously it didn't and I suggest that is a program defect.
    To remove dups., sort on filename or date/time stamp and delete the offending image.
    BTW, with multiple cameras available to us, it is quite reasonable to expect two distinctly unique images with the same name. Duplicating the name is not necessarily duplicating the image. So I am for Aperture allowing dups. - providing it also allows me to rename, which it does. At the image level, true dups. should show up at the date/time stamp level. That's why sorting on date/time is a useful tool.
    G.

  • Use two VIs with the same name, different functionality on a single Project

    Hi, I'm working with vision builder al labview, I need to integrate the vision builder migration Vis into my main program, (Is not an option), but I have multiple Vis autogenerated with the same name, how can i integrate them in the same project without dependency problems
    Thanks in advance

    Hi,
    Unless you really need tight integration between the Vision code and the rest of your LabVIEW application, or would rather not have to pay for a Vision Builder AI runtime license on the targets on which you want to deploy your final application, I would recommend you look into using the Vision Builder AI LabVIEW API instead of migrating the inspection to LabVIEW.
    The API allows to control Vision Builder AI by launching a Vision Builder AI engine, running the inspection and retrieving resulting images and results.
    The advantage of the API is that it allows for easier modification and debugging of the Vision Inspection that you designed in Vision Builder, if you need to make changes later. (i.e. all you need to do is open the inspection in Vision Builder AI, modify parameters, add steps etc).
    You won't have to change your LabVIEW application, unless you want to output additional results.
    When you build and deploy your application, you will need to install Vision Builder AI on the target machine and get a runtime license for it.
    Migrating the inspection to LabVIEW is a one way deal. If you need to make changes to the inspection, you will have to migrate the inspection again, or modify the code outside of the Vision Builder AI environment.
    As you might have noticed, the code generated is quite complex, and it is recommended to go this route only if you need really tight integration/synchronization between the vision code and the rest or your LabVIEW code, or if you would rather pay for a cheaper Vision runtime license rather than a VBAI runtime license for the deployment machine (in case of deploying multiple systems where cost is a big consideration).
    Vision Builder AI API examples are located in this folder:
    C:\Program Files (x86)\National Instruments\Vision Builder AI\API Examples\LabVIEW Examples
    Hope this helps clarify the use cases and help you make the right decision for your design.
    Best regards,
    Christophe

  • Using variable with the same name as field name?

    I have a complex proc where I have variables with the same name as field name used on a query. something like this:
    SELECT a.id_table WHERE a.id_table = id_table
    where the last id_table is a parameter sent to the proc:
    declare procedure myproc(id_table int)
    Is there any way or notation to declare the variable inside the query as a variable or I have to use a different name?

    Well, variables are not the only thing you have to change if you want to switch to Oracle.
    Although I don't think it is good practice (to use variable name same as column name), here is one example how you can achieve it using EXECUTE IMMEDIATE and bind variable
    SQL> select deptno, count(1)
      2  from scott.emp
      3  group by deptno;
        DEPTNO   COUNT(1)
            30          6
            20          5
    10 3
    SQL> set serveroutput on
    SQL> declare
      2  deptno varchar2(10);
      3  i number;
      4  begin
      5  deptno:=10;
      6  execute immediate
      7  'select count(1) from scott.emp where deptno=:deptno' into i using deptno;
      8  dbms_output.put_line('OUT ---> '||i);
      9  end;
    10  /
    OUT ---> 3
    PL/SQL procedure successfully completed.
    SQL> Message was edited by:
    tekicora
    Message was edited by:
    tekicora

  • Two AM's with the same name but different forms causes Deployment problems

    Two Masters forms, DOC & PM are cloned except for the "where clause" in the View's query and the titles in their JSP's.
    DOC workspace has a BC project and a BC4JSP Project. The BC project comprises of the EO and VO named ComVsStaticValue. In the Edit prop-> query for the VO I have specified the "where clause" as VSSV_VS_CODE='DOCTOR'.
    In Java Webserver :-
    The JSP's are located in C:\source\Doctor\ .. and the *.xml and *.class files generated by the BC proj is in C:\source\Doctor\pol_ValueSet\..
    If I execute Doctor in JWS the records are getting filtered properly.
    PM workspace has a BC project and a BC4JSP Project. Again The BC project comprises of the EO and VO named ComVsStaticValue. In the Edit prop-> query for the VO I have specified the "where clause" as VSSV_VS_CODE='PAY_MODE'.
    In Java Webserver :-
    The JSP's are located in C:\source\PMode\ .. and the *.xml and *.class files generated by the BC proj is in C:\source\PMode\pol_ValueSet\..
    If I execute PM in JWS, the PM's JSP comes (the title is correct) but the records pertaining to DOC appears. I checked the View's xml file in C:\source\PMode\pol_ValueSet\ the "where clause" is correct. The xml & classes have the same name but their contents are different.
    I want to know whether this problem is because both have the same name for the AM and the BC4JSP's property file.
    Please clarify.

    Deploying two app modules with the same name will definitely cause problems.
    The JSPs use the information in the properties file to connect to the application module and get the data they need from the appropriate View Objects in those app modules. If you have two app modules with the same name, when a JSP tries to connect, it has no way of knowing which one of the app modules to connect to if they both have the same name.
    You could:
    1. Just use one application module that contains all the View Objects you need to access.
    or
    2. Rename one of the application modules or the package it is located in so the names are distinct. If you choose this method, you will also need to update the JSPs (specifically the 'registerApplicationFrompPopertyFile' method call), and your JSP project's appmodule property file.

  • ERROR: MyService.jws:715:There are two or more operations with the same schema-element 'ns0:MyNameSpace' on the input message in a web service file or callback interface.

    I have two web service operations that have the same complex type as their input
    parameter. I want to map this type to an existing schema. I can successfully
    do this with the first operation using XQuery but when I attempt to do this with
    the second operation I get the following error:
    ERROR: MyService.jws:715:There are two or more operations with the same schema-element
    'ns0:MyNamespace' on the input message in a web service file or callback interface.
    ERROR:      SUGGESTION: Use different schema-element values for each of those operations.
    How can I use different schema-element values? The input parameters are to be
    mapped to the same schema and same element since they are the same for both operations....

    I am having the same problem. How did you resolve this..?? could you please tell me the solution??
    Thanks
    Shari

  • I notice that in the new update to Firefox if I have two bookmark folders with the same name Firefox will end up deleting one of them.

    Both of these problems with the bookmarks started occurring after I installed the latest update to Firefox.
    I frequently have bookmark folders of the same name under the older version of Firefox and it has never been a problem before. It is now, and I notice that after I've created two folders with the same name Firefox will end up deleting one of the folders, almost always the older of the two folders (the one created first, chronologically).
    I have also noticed that with the new update Firefox will occasionally fail to open all bookmarks in Tabs if I've asked it to do so. I can simply close Firefox and reopen the program and it will work again, but I don't know why this bug is occuring in the first place.

    You are using two IP address ranges.. which results in the printer being cut off from the other network..
    Why do you have two networks?? It is always better in home situations to run one network.
    If you have work setup with an enterprise level router you can setup routes between the two networks.. this is not possible on domestic level apple routers.

  • I have two iPhones and synchronize with the same macbook. How I do segregate both applications and data?

    I have two iPhones and synchronize with the same macbook.  How do I segregate both applications and all the data?

    Hi Jamesdwills,
    Welcome to the Support Communities!
    If you are using the same Apple ID on both devices, the Game Center profile should be the same.
    Check out this information from the iPad User Guide.  Try signing out of the Game Center on both devices and then sign back in with the correct Apple ID:
    Using Game Center
    http://support.apple.com/kb/ht4314
    Game Center settings - iPad User Guide
    http://help.apple.com/ipad/7/#/iPad9a13d039
    Game Center settings
    Go to Settings > Game Center, where you can:
    Sign out (tap your Apple ID)
    Allow invites
    Let nearby players find you
    Edit your Game Center profile (tap your nickname)
    Get friend recommendations from Contacts or Facebook
    Specify which notifications you want for Game Center. Go to Settings > Notifications > Game Center. If Game Center doesn’t appear, turn on Notifications.
    Change restrictions for Game Center. Go to Settings > General > Restrictions.
    Cheers,
    - Judy

  • Is it possible to have two files with the same name on my Zen To

    Hia,
    Is it possible to have two mp3 files with the same name?; I.e if I'm ripping a Bach CD, there are several tracks that have the name preludium, and I hate to do the rename.
    Also, will I be able to sync my Zen so that It will only recieve new files that have been added since I last connected my Zen to my computer?
    regards,
    Fredrik

    I believe same filename is OK because the Zen Player does not really care about filename. As far as I know, the Zen database of the tracks in the player is based on the track information such as Title, Artist, Album and Genre. This means you cannot have two tracks of the same Title, Artist, Album and Genre in the Zen Player.

  • Can you have two separate icloud accounts for two iphones that sync with the same imac?

    can you have two separate icloud accounts for two iphones that sync with the same imac?

    Welcome to the Apple Community.
    Yes and no.
    There is no issues at all if you use two user accounts on the mac, each can sync with one of the accounts.
    If you are using a single user account, you can add the second account as a secondary account in settings > mail, contacts and calendars and you can then sync mail, contacts, calendars, notes and reminders from the second account, but not documents and data, back to my mac or photostream.

  • I have two iPods that show up with the same name on my iTunes account.  How do I separate them?

    I have two iPods that show up with the same name on my iTunes account.  How do I correct so that I can put different music on each ipod?

    I figured it out.  Thanks.

  • I have two iPads. With two functioning iPads. Is it possible (on the same ID) to sync two of them differently with the same account. So I want to use the new iPad for all my current functions. The old iPad for just my music collection?

    I have two iPads. With two functioning iPads. Is it possible (on the same ID) to sync two of them differently with the same account. So I want to use the new iPad for all my current functions. The old iPad for just my music collection and remove all the other stuff?

    Very easily. I have an iPod touch and iPad on the same account with totally different content.
    If you use iTunes, connect each iPad to your computer and open iTunes and deselect any automatic updating/syncing. If you don't sync with iTunes but have them set up independently, under the settings, App Store, turn off automatic downloads for apps, etc.
    I'm old fashioned, I set up and sync my iPad and iPod to my computer and iTunes. Each device has a different name  and I manage content manually and only allow sharing on what I want shared.

Maybe you are looking for

  • Nokia mail version 10.1.0.13

    I updated my nokia mail version10.1.0.13 on my nokia 5800. Earlier version had an option to set 'max attach. size (kb) when i went to settings/what to sync?/inbox and that allowed me to download the complete mail. Now that option is missing. Only opt

  • Upgrade my speed processor from 2.16 to 2.8 GHz

    Can I do this ?

  • Field length in webdynpro

    Hello, I have used a webdynpro screen in my GP Application...wherein the user enters details of a ticket for Approval....one of which i have used is the TextEdit field allowing the user to enter long text using scrolling .....when this goes as a work

  • Mavericks download error

    Hi I treid to download Mavericks and after 5 hours got an error message, possibly my weak internet signal, but now the App Store just records an 'an error has occurred' (very helpful!) and seemingly wont allow me to try again. What to do?

  • Phantom services offered from re-named server

    Testing Leopard on new xserve with OD and few services like web and netboot then used changeip to rename it. The original name seems stuck in OD because these services continue to show as available from that machine even when they're disabled in serv