Differences in behavior in 11 g to indicate the LOV is available for a field

People,

Would appreciate some patience when you answer this question, because it would be obvious to those of you who deal with forms on a daily basis and have done for years. I'm a DBA who came recently in a small shop where I get to do some thing/all which has the name of Oracle on it. We have a Forms application that has been around for a long time. I just migration of databases and our Forms/application on Linux Server (version 5.6 (Tikanga) of OEL 5 Red Hat Enterprise Linux Server) and the last stack (Weblogic 10.3.4 Fusion Middleware 11.1.1.4). We were on Forms 10gR 1, I think that, since the version indicated by opatch says "Oracle Application Server forms and reports Services 10 g 9.0.4.0.0."

So, I installed the software WLS/FMW on the new box, configured and it guaranteed without any major problems. I copied on the * .fmb of old for nine box and their migration using the tool/script...then compiled all forms in 11 g and got again * of .fmx. There were several warnings during migration on deprecated features, but no error... our Forms application is quite simple in nature... nothing really complex that I've encountered so far.

While we tested, our users have noticed two changes in the behavior that bothered them.
(1) they have been accustomed to see points of suspension (...) appear on the far right in the field, if there is an associated LOV. They still get a message at the bottom that there is an LOV, but no visual indication in the field itself. And they can do a Ctrl-L to display the LOV, as before.
(2) when they navigate using the mouse to a field, it is used to highlight the whole field so that they can re - type the value. Now, he puts just the cursor exactly where they sailed in the area. Tab and in the field will highlight the whole area for re - type.

I watched for a while and you don't see any property to get either a behavior to return the value. I compared the property sheets for the previous version of property sheets for the current version... and all the properties and the values appear to be exactly the same.

Can someone tell me if this is expected (i.e. 'live with it') behavior or if there is something that I missed in the configuration of the application? I have been away from forms since Forms 4.5/Developer 2000 called, so part of the behavior may well be the new way of things. I also watched the *.env files and entries appear the same (essentially all faults - aspect, etc.). I might just miss something manuals (that look amazingly similar because they study at the end of the 1990s).

The help/pointers would be appreciated.
Thank you
Rob

For the first question, I'm not sure about ellipsis in the corner of the field, but you can try to set app.ui.lovButtons = true in the registry.dat file.
This file in 11g should be in $DOMAIN_HOME/config/fmrconfig/servers/WLS_FORMS/applications/formsapp_11.1.1/config/forms/registry/oracle/forms/... Easy to find ;)

Regarding the second question, in 11 g of the matches of the behavior is changed. You can work around by using built-in SELECT_ALL. You can call it in click When starting at the level of the form.

Tags: Oracle Development

Similar Questions

  • Is there any application that searches all files on the disk or server which also indicates the total and available space?

    Is there any application that searches all files on the disk or server which also indicates the total and available space? And after a search, it can also be exported to excel for further analysis?

    Hello

    See if that helps you.

    This free program allows you to see what is taking place.

    http://www.Jam-software.com/treesize_free/

    Here's how to understand Treesize Screenshots:

    http://www.Jam-software.com/treesize_free/screenshots.shtml

  • Flash Player indicates that my version is obsolete, but I installed the latest version available for linux 64 bits.

    Sorry, your computer does not have the latest version of Flash Player installed.

    Please proceed to step 2. (Your last version11.2.202.577 Version21.0.0.182)

    Then, after following the instructions for step 2:

    NOTE: Adobe Flash Player 11.2 will be the last version of target Linux as a supported platform. Adobe will continue to provide backports of security Flash Player 11.2 for Linux.

    Version 11.2.202.577


    In my opinion, Flash Player does not make that my version is obsolete, when I have the latest being available for my platform.

    Hello

    I doubt that web sites use the widget 'Check now' to check the latest version of Flash Player.  Content providers more to define their content to use a specific version of Flash, especially if this version contains some features that they use in their game/application, not necessarily the most recent version.  One option is to use Google Chrome which incorporates Flash Player and use the latest major version (21).  PPAPI plugin is also supported on Ubuntu for Chrome browsers (Opera, for example).  If you use Ubuntu and are not opposed to the opera, it is another option.

    --

    Maria

  • Differences in behavior of XMLType storage

    Hello

    I have problem with the differences in behavior of type 'BINARY XML' of storage and cold storage (simple CLOB I guess) of the XMLType data type.

    Setup

    -Oracle Database 11 g Enterprise Edition Release 11.1.0.6.0 - 64 bit Production

    -XML file ("Receipt.xml") with a structure like:
    <?xml version="1.0" encoding="UTF-8"?>
    <ESBReceiptMessage xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <ESBMessageHeader>
              <MsgSeqNumber>4713</MsgSeqNumber>
              <MessageType>Receipt</MessageType>
              <MessageVersion>1.1</MessageVersion>
         </ESBMessageHeader>
         <Receipt>
              <ReceiptKey>1234567-03</ReceiptKey>          
              <ReceiptLines>
                   <ReceiptLine><Material><MaterialKey>00011-015-000</MaterialKey></Material><Qty>47.0</Qty></ReceiptLine>
                   <ReceiptLine><Material><MaterialKey>00021-015-000</MaterialKey></Material><Qty>47.0</Qty></ReceiptLine>
                   <ReceiptLine><Material><MaterialKey>00031-015-000</MaterialKey></Material><Qty>47.0</Qty></ReceiptLine>
    .....etc....etc.....etc...
                   <ReceiptLine><Material><MaterialKey>09991-015-000</MaterialKey></Material><Qty>47.0</Qty></ReceiptLine>
                   <ReceiptLine><Material><MaterialKey>10001-015-000</MaterialKey></Material><Qty>47.0</Qty></ReceiptLine>
                   <ReceiptLine><Material><MaterialKey>10011-015-000</MaterialKey></Material><Qty>47.0</Qty></ReceiptLine>
              </ReceiptLines>
         </Receipt>
    </ESBReceiptMessage>
    = > header element 1: 'Réception' and 'ReceiptLine' items exactly 1001.

    Problem:

    Test 1:
    drop table xml_ddb;
    CREATE TABLE xml_ddb (id number,xml_doc XMLType);
    INSERT INTO xml_ddb (id, xml_doc)  VALUES (4716,XMLType(bfilename('XMLDIR', 'Receipt.xml'),nls_charset_id('AL32UTF8')));
    
    select count(1) from (
     SELECT dd.id,ta.Receiptkey,li.materialkey,li.qty
       FROM xml_ddb dd,
            XMLTable('/ESBReceiptMessage/Receipt' PASSING dd.xml_doc
                     COLUMNS ReceiptKey VARCHAR2(28) PATH 'ReceiptKey',
                             ReceiptLine XMLType PATH 'ReceiptLines/ReceiptLine') ta,
            XMLTable('ReceiptLine' PASSING ta.ReceiptLine
                     COLUMNS materialkey VARCHAR2(14)  PATH 'Material/MaterialKey',
                             qty         NUMBER(10)    PATH 'Qty') li
                              )
                              ;
    
    
      COUNT(1)
    ----------
          1001
    
    1 row selected.
    The storage of the XMLType column has not been specified.

    = > All 1001 distinguish lines are selected.
    = > All right

    Test 2:
    drop table xml_ddb;
    CREATE TABLE xml_ddb (id number,xml_doc XMLType) XMLType xml_doc store AS BINARY XML; -- <---- Different storage type 
    INSERT INTO xml_ddb (id, xml_doc)  VALUES (4716,XMLType(bfilename('XMLDIR', 'Receipt.xml'),nls_charset_id('AL32UTF8')));
    
    select count(1) from (
     SELECT dd.id,ta.Receiptkey,li.materialkey,li.qty
       FROM xml_ddb dd,
            XMLTable('/ESBReceiptMessage/Receipt' PASSING dd.xml_doc
                     COLUMNS ReceiptKey VARCHAR2(28) PATH 'ReceiptKey',
                             ReceiptLine XMLType PATH 'ReceiptLines/ReceiptLine') ta,
            XMLTable('ReceiptLine' PASSING ta.ReceiptLine
                     COLUMNS materialkey VARCHAR2(14)  PATH 'Material/MaterialKey',
                             qty         NUMBER(10)    PATH 'Qty') li
                              )
                              ;
    
    
      COUNT(1)
    ----------
          1000
    
    1 row selected.
    Storage of XMLType column has been defined as "BINARY XML"

    = > Only 1000 lines are select
    = > A single line is missing.

    After a few tests: there seems to be a "hard edge" of 1000 lines that comes with the different type of data (so if you put 2000 lines in the XML file, you will get also only 1000 rear lines)

    Question

    As I am a newbie in XMLDB:

    -Is the "construction" with tables nested in the statement select-maybe not recommended / "allowed"?
    -Are there ways to recover "Head" + "Line" of the elements in a relational structure (even if there are more than 1000 lines)?

    Thanks in advance

    Good bye

    Stefan

    The incorrect behavior on XML binary is probably due to bug 9194655. This problem has been fixed in 11.2.0.1.

  • Strange behavior of startup and cannot access the tools-&gt; options menu

    Since this morning my LV8 installation does not display the normal startup dialog box (allowing you to open the existing screws or open a new one), but doesn't that immediately opens a new VI.  If I close this new NC and then instead of back to the Startup dialog box it opens a second new (empty) VI.    Furthermore, I can't open the tools-> option menu from a façade of VI.

    I tried to repair the installation of the LV and when that does not work I went for a complete deletion and don't reinstall - still no joy!

    I also check that it is not user specific, so that when I login as a different user on the same PC, I get the same behavior

    Help - please!

    Hi AMHurrel,

    This seems quite strange.

    Have you changed anything on your installation?

    When you say you did a complete removal and reinstall, how?

    Here are the steps I follow:

    The following procedure removes the software Instrument National:

    1. turn off the computer and physically remove or disconnect all devices that you have installed on your system.
    This includes everything-PCI, ISA, USB, 1394-, or based on ethernet.

    2 turn on the computer and go through Add/Remove Programs (START"SETTINGS" control PANEL"Add/Remove Programs)
    and remove all OR related. As a general rule, if you remember, it is best to uninstall things in
    the reverse order in which they were installed. For example, if you installed LabVIEW, then NOR-DAQ, then the
    Internet developers Toolkit for LabVIEW, you must uninstall the Internet firstly, developers kit
    NOR-DAQ, then last LabVIEW.

    3. once everything has been deleted (don't be concerned at this stage if an item still appears in the)
    Ajouter/suppression of programs list after you remove it), close all programs and restart your computer.

    4. go to the START button in your operating system, choose RUN and type 'regedit '. This will open up the registry
    The Editor window. Go to the registry Menu and choose Export registry file. Select 'All' to the export range,
    and select a file name. This creates a backup of the registry in case a mistake is made when you remove the key.

    5. remove the following components of the registry in the Windows registry:

    HKEY_CURRENT_USER\Software\National Instruments remove the entire tree!
    HKEY_LOCAL_MACHINE\Software\National Instruments remove the entire tree!
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Enum\PCI\ or \ISA and remove registry entries containing one
    keys with 1093 in them.
       
    Don't worry if one of these trees are not listed. Continue with the rest of the process.

    Note: You may need to change the security policies. In Windows 2000, 98, 95, NT, go to [regedt32] then
    Security > permissions. In Windows XP, you can change the security using Edit options > permissions in the
    Publisher of the registry (regedit).

    6. close regedit.

    7. make sure that you don't have your own screws or other files in the "C:\VXIpnp."
    "C:\Program NIUninstaller Instruments", or "C:\WINDOWS\nidaq" folders. If you do, copy them to a
    different location. If you are concerned about preserving old virtual tracks and your SCXI configuration.
    then save the file "C:\WINDOWS\niconfig.daq", too. Delete all folders and files mentioned above.

    Note: If you have Windows NT/2000, replace 'C:\Windows' with 'C:\WINNT' in the path listed above.

    8. save the attached file msiBlast.zip to your desktop.

    (a) extract the msiBlast.exe file from zip archive.
    (b) double click the downloaded msiBlast.exe file to run the executable.
    (c) choose the selection show only installers of NOR.

    (d) using select (Ctrl + left mouse click) of all National Instruments software that appears in MSIBlast.
    (e) press the button uninstall. This allows to uninstall all entries in register MSI of National Instruments.

    (f) Optional:
    The repair option will open the installer of National instruments and run the option fix in the installer.

    Maintenance mode will open the installer and allow the user to change the installation. To open the installation program indicate nothing in command line Arg? Dialog box.

    9. restart your computer.

    10. you should be ready to install your software. For the cleanest possible installation, first install all of your
    software application, such as LabVIEW, Measurement Studio development, etc. Perform a custom installation so that you can
    Install just the request WITHOUT DRIVERS EVERYTHING. Restart your PC after each installation request.
    Even if the installation program does not tell you to restart, it would probably be a good idea to do it anyway.
    Now install the software driver and follow the associated user manuals. Some older non-Plug-and-Play hardware
    must be installed before the pilot. Download the latest versions of the drivers that support your hardware
    She draws from our drivers and software updates (link below) and install them one by one, reset after each
    install.

    11. Lastly, stop and re - install your hardware. When you start back, he must be detected in MAX.

    NEITHER drivers link:- http://www.ni.com/softlib.nsf

    * Attached is msiBlast.

    You get an error message?

    Let me know what you think,

    Kind regards

  • I used to get a box with a small arrow icon to indicate the new email.

    I used to get a small box icon with an arrow indicating the new email. I no longer get it. I get the window that indicates when a new message arrives, but it is time I got the shots on goal for. If I don't see this window, I have to open TBird to see if I have new messages.

    I don't know what happened, but I'm now the tray icon. It's an envelope with and arrow.

  • BONES of Firefox permanently indicate the headphones are pluged

    Hello

    I have ZTE C open with Firefox OS 1.3.0.0.

    BONES permanently indicate the headphones are pluged. If I plug the headphones everythink is ok. But when I took out my phone stil send output and input for headphones (and I can't call).

    I suppose it may be a hardware problem but I don't know if this issue is included on all devices or yours specifically.

  • When I opened the window "save the Page under", the drop-down box file name indicates the files that have been saved a long time ago. It is not cleared by a function 'clear history' that I can find. How can I erase this?

    1. Question

    When I opened the window "save the Page under", the drop-down box file name indicates the files that have been saved a long time ago. It is not cleared by a function 'clear history' that I can find. How can I erase this?

    Hello.

    I think this is a related issue of Windows, because it is the Manager to save the windows file that we are talking about here (right?). You should contact Microsoft for help with this one, I think. You expect to be able to delete entries simply by touching delete on your keyboard when they are concentrated (that is how it goes for the removal of the form entries specific autocomplete in Firefox), but I have not tried.

    I'm sorry I can't be more helpful.

  • Re: Satellite L555 11 L: BIOS indicates the drive HARD is not installed, BOOT Manager said HDD

    Hello!

    I had problems with my Toshiba laptop.

    When I tried to boot my system after a regular stop it does not recognize the HARD drive more.
    BIOS indicates the drive HARD is not installed, the said BOOT Disk Manager failed.

    Tried the HARD drive to a desktop computer and it works fine. This is not a new HDD SATA is recognized.
    However, the boot sequence itself and other functions seem to be ok.

    Who is wrong?
    The laptop is 1.5 years old and didn't have any problems before.

    Any help is appreciated ;)

    Hello

    It seems that the HARD drive is damaged.
    In your case the drive HARD test would be recommended.

    Download the software called Drive Fitness Test. It the free tool that can be used for the test of HARD drive.
    If the HARD drive is not detected or you will get errors, then it means that you HARD drive needs to be replaced and OS need to be installed again.

  • How a detector of fuel level on the USB/serial port to indicate the level of the interface?

    Hello!
    Im working on a project that contains a fuel level (capacitive sensor) sensor. My task is to connect the sensor to a PC and indicate the level of fuel on a chart. The instrument works with 1-wire communication, but Ive built a USB converter for it. So I want to plug it into the USB port on the computer and use Labview to access the fuel level. Its important, I need indicate level constantly, because the probe will build in a bus to see his level of fuel. I've never used instrument in LV control, that is why now wrote im.

    Please can someone help me build a VI to do this?

    Thank you very much
    Regarding.

    G. masseteau


  • Is there a difference to install a language pack vs install the OS in this language?

    Language Packs vs OS install

    Is there a difference to install a language pack vs install the OS in this language? I got the task to set up a foreign operating system. Example of German form.

    Is there a difference to install the German language on an English installation pack or install the OS German a German of the Setup CD?

    Hello

    I suggest you to visit these links and check if it helps:

    http://Windows.Microsoft.com/en-us/Windows7/products/features/language-packs

    http://Windows.Microsoft.com/en-us/Windows/downloads/languages

    http://Windows.Microsoft.com/en-us/Windows/downloads/install-languages-with-Windows-Update

    http://Windows.Microsoft.com/en-us/Windows7/use-language-packs-to-change-display-language-in-Windows-7-ultimate

    It will be useful.

  • Help with the cluster in table for the cluster size difference, please!

    I will admit to still hurt with the berries of LabVIEW, and as usual, the behavior in the vi attached is meaningless to me!  The attached vi shows a cluster 6 element being converted into a table, then immediately to a cluster.  The reconstructed cluster has 9 elements, even if the table size indicator display properly 6.  How to maintain the initial cluster size when converting to and then since then, a table?

    The f

    Well, if you have worked with context-sensitive help running you would see:

    "With the right button of the function and select the Size of Cluster in the context menu to set the number of items in the cluster."

    The default is new. The maximum cluster size for this function is 256. »

    You must set the size. There is no way for the function to know how many elements in the table.

  • When Outlook Express 6 detects emails from a name in the right column indicates the folder in which it is in. How can you tell which folder this folder is located in?

    Column of Outlook Express folder in find

    When Outlook Express 6 detects emails from a name in the right column indicates the folder in which it is in. How can you tell which folder this folder is located in?

    OE does not have the capacity to tell you where the folder is located in the folder hierarchy.  You can select different trees under local folders to find what subfolder is and what kind of tree it is under.  Unless folders.dbx is corrupted (which happens a bit), then OE will not create folders for you.  If folders.dbx is corrupt or not, I would suggest that you backup the files and the registry (see www.oehelp.com/OETips.aspx#6) before things become corrupt, because you seem to have a complex organization from your e-mail folders.

    Steve

  • NO LIGHT TO INDICATE THE CAPS LOCK

    MY WIRELESS KEYBOARD has no light to indicate the caps lock, is it possible to see on my screen?

    See if it helps:

    Troubleshoot the State of Numlock, SCROLLLOCK, lock and CAPS LOCK keys.
    http://support.Microsoft.com/kb/894037?WA=wsignin1.0

  • lack of system restore - the animated icon appears to indicate the data collection, but then it stops

    When I try the system restore, I am able to choose a restore date. I then accept the details and press next to accept. The animated icon appears to indicate the data collection, but it then stops. Therefore, the system is not shut down and restart (which I think it is supposed to do). If you try to select another date that is the same thing. any ideas? I think that I was previously exposed to a system whose consequences restore virus had to hide all my files. I'm still not programe files on the start menu.

    Hello

    Method 1: I suggest you to run the Microsoft safety scanner to ensure that the system is free of infection by the virus:

    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    Note: you can lose data if the parser detects a corrupted data file.

    Method 2: Run the SFC scan and check if system files are intact:

    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7

    http://support.Microsoft.com/kb/929833

    Method 3: You can also try restoring the system to the Windows recovery environment (WinRE):

    What are the system recovery options in Windows Vista?

    http://Windows.Microsoft.com/en-us/Windows-Vista/what-are-the-system-recovery-options-in-Windows-Vista

Maybe you are looking for