Forms Modules under 10g and 11g not the same!

Hi
I 'am facing a prb with forms 10g at work, when I open a forms module with forms builder 10g, the items are all showing as radion button , but when I open the same forms module with forms builder 11g the items are all showing normaly as text item .
Could any one explain the prbs plz?
Thanks

Are you trying to open a form that you modified with Forms 11g? If so, Oracle Forms is not backward compatible; meaning, a Forms 11g file can only be opened by Forms 11g. Even different versions of the same release are not backward compatible; eg, Forms 10g (10.1.2.0.2) cannot open a 10.1.2.3.0 file.
Craig B-)
If someone's response is helpful or correct, please mark it accordingly.

Similar Messages

  • Installing 10g and 11g on the same system?

    I have Windows XP and have installed 10g database. Can I install 11g on the same system and I can switch to use either of database?
    Thanks in advance.

    Hi,
    I'm working in a linux machine and choose to use also two different users. Of course I'm using two different ORACLE_HOME directories.I think that the best approach.Just a question ,are you keeping the "GROUP" same or different?
    Anand

  • Oracle 10g and 11g on the same computer....

    Hi ,
    Just for confirmation.... i 'd like to ask if this is possible.....without migrating the existing Oracle 10g v.2 database to Oracle 11g......
    I want to keep them working both (not of course simultaneously.....)
    Thanks....
    Sim

    Assuming you load everything into separate 10.2 and 11.1 Oracle Homes, sure. You can even have both running at the same time if you'd like.
    Depending on your setup, you may want to spend a bit of time figuring out whether you want to run separate listeners or have one listener for both databases (in which case you'd probably want just the 11g listener running). And whether you want separate tnsnames.ora files or whether you want to use the TNS_ADMIN environment variable to point both Oracle Homes at a single file.
    Justin

  • Can I install OBIEE 10g and 11g on the same machine?

    While I'm waiting for new hardware, I wanted to get started on installing OBIEE 11g on my laptop. Can I do this if I already have 10g installed?
    I want to make sure if I install it that it will not impact my current 10g setup. I'm not sure if it overrides certain files and folders or if I can do a separate installation to have both.

    Hello everyone.
    I have OBIEE 10g on my Production box pointing to the Oracle Database 11g R1 which is also having OWB integrated in it.
    Now, I am planning to upgrade OBIEE 10g to 11g and Oracle Database from 11g R1 to 11g R2, so that OWB will also be upgarded, as it is integrated in 11gR2.
    I am confused about, how to run RCU on the database, as OBIEE 10g schemas and packages will already be there in the database.
    If I run RCU again, what will it do???
    Has anyone done this before? or any good document available ?
    Many Thanks,
    Ahsan.

  • Installing Both Oracle 10g and oracleXE on the same computer

    Hi,
    Good Morning to ALL,
    Can any of you tell me whether we can Install both the Oracle10g Version and OracleXE on the same computer. In my work computer, I have oracle and Toad installed. Now I wanna install OracleXE and Oracle SQL Developer to do some hands on practise when I find time at work.
    Could we Install both these versions on the same computer? Your answer will help me a lot. Please advice............
    Thanks a lot.............. Have a good day.

    Yes, you can. On my laptop, in a virtual machine with Oracle Linux 5, I have 10g, 11g and XE.
    BTW, 11g includes Sql Developer by default...

  • Synced times in ical between iphone and Macbook not the same

    I have tried syncing my ical to my iphone using itunes and the times on my iphone are not the same as my ical. for example 1.30 pm for an appointment in my ical reads as 4.00am and the next day on my iphone calendar. How do I fix this?

    Are both the iPhone and your Mac set to the same (local) time zone? Do you have Time Zone support turned on in iCal Preferences and in iPhone > Settings > Mail, Contacts, Calendar?

  • AES encrypt and decrypt not the same

    I use aes to encrypt and decrypt a file. Why is the resulting file not the same as the input?
    package mybeans;
    import java.io.*;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.Hashtable;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    public class Encrypt {
         public static void main(String args[]) throws Exception {
              Cipher cipher = Cipher.getInstance("AES/CBC/NoPadding");
              SecretKeySpec keySpec = new SecretKeySpec(
                        "05468345670abcde".getBytes(), "AES");
              IvParameterSpec ivSpec = new IvParameterSpec("f45gt7g83sd56210"
                        .getBytes());
              cipher.init(Cipher.ENCRYPT_MODE, keySpec, ivSpec);
              FileInputStream fis = new FileInputStream(new File("C:\\text.txt"));
              CipherInputStream cis = new CipherInputStream(fis, cipher);
              FileOutputStream fos = new FileOutputStream(new File(
                        "C:\\encrypted.txt"));
              byte[] b = new byte[8];
              int i;
              while ((i = cis.read(b)) != -1) {
                   fos.write(b, 0, i);
              fos.flush();
              fos.close();
    package mybeans;
    import java.io.*;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    public class Decrypt {
         public static void main(String args[]) throws Exception {
              Cipher cipher = Cipher.getInstance("AES/CBC/NoPadding");
              SecretKeySpec keySpec = new SecretKeySpec(
                        "05468345670abcde".getBytes(), "AES");
              IvParameterSpec ivSpec = new IvParameterSpec("f45gt7g83sd56210"
                        .getBytes());
              cipher.init(Cipher.DECRYPT_MODE, keySpec, ivSpec);
              FileInputStream fis = new FileInputStream(new File("C:\\encrypted.txt"));
              CipherInputStream cis = new CipherInputStream(fis, cipher);
              FileOutputStream fos = new FileOutputStream(new File(
                        "C:\\decrypted.txt"));
              byte[] b = new byte[8];
              int i;
              while ((i = cis.read(b)) != -1) {
                   fos.write(b, 0, i);
              fos.flush();
              fos.close();
              cis.close();
              fis.close();
    }Here is the data in the file:
    James,"smith",007
    mike,"smith",001
    the result is this:
    James,"smith",007
    mike,"smith",
    Edited by: iketurna on Jun 3, 2008 1:47 PM

    Thanks sabre!
    Very insightful.
    I used PKCS5Padding and the file has all of the data, but there are extra padding at the end of the second line
    Also,
    how would you store your key and iv?
    Currently I using this to create the iv and key:
    public class KeyClass {
    private SecretKeySpec keygeneration() {
    SecretKeySpec skeySpec=null;
    try {
      KeyGenerator kgen = KeyGenerator.getInstance("AES");
      kgen.init(128);
      SecretKey skey = kgen.generateKey();
      byte[] key = skey.getEncoded();
      skeySpec = new SecretKeySpec(key,"AES");
    }catch(Exception e) {
      System.out.println("error in keygen = "+e);
    return skeySpec;
    public void keyFile() {
    try{
    FileOutputStream fos=new FileOutputStream("c:\\keyFile.txt");
    DataOutputStream dos=new DataOutputStream(fos);
    SecretKeySpec skeySpec=keygeneration();
    byte[] key=skeySpec.getEncoded();
    BASE64Encoder base64 = new BASE64Encoder();
    String encodedString = base64.encodeBuffer(key);
    dos.write(encodedString.getBytes());
    }catch(Exception e1){
      System.out.println("error file write "+e1);
    public static void main(String args[]){
      KeyClass cKey = new KeyClass();
      cKey.keyFile();
    }Edited by: iketurna on Jun 5, 2008 7:29 AM

  • HT201077 Why are my photos on my iphone and ipad not the same?

    My camera roll and photo stream on my iphone 4 and ipad 2 are not the same.  I have the same apple id for both and both devices are running ios 7.0.4.
    Any ideas?

    The camera roll contains photos actually taken on your device, or saved from text messages, emails, websites, etc.  Because of this you shouldn't expect both devices to have the same photos in the camera roll.
    The my photo stream album is also usually differerent on your devices.  This happens because photo stream photos only remain in iCloud for 30 days (even though they stay on your devices longer).  When you enable photo stream on a device, it can only receive photo stream photos still in iCloud, which are those from the last 30 days.  A consequence of this is that unless you enabled photo stream on both devices within 30 days of each other, one is likely to end up with fewer photo stream photos than the other.

  • Help Needed!!!! Running Forms 6i, Reports 6i and WebDB on the same NT box...

    Hi All!
    I am in need of some help.
    I'm trying to set up the sample code for the Healthy Living WebSite.
    I need to have WebDB 2.2x, Forms 6i and Reports 6i all running on the same box. Does anyone know how to set this up....?
    Thanks,
    Matt
    [email protected]
    null

    Hi Matt,
    You didn't mention but do you also wish to install the database(8i) on the same machine ?
    I am also trying to install all these products(+8i and designer 6i) on the same box but I am concerned more about the min. resources needed before I get started.(I put up a question about it on the 6i Forum, but nobody has answered yet !)
    The correct install order should be Forms/Reports 6i then Forms/Reports 6i Server and then WebDb 2.2.
    Forms /reports server needs a http listener and installs en configures the WebDb listener for the job.(you are prompted for this during tho have the install process).This is handy if you are intending to use WebDb anyway. When you install Webdb it detects the already installed WebDb listener and does not reinstall.
    You do have the SYS password on the database you will use to stored the WDK and WebDb schema.
    About installing the demo.....
    I dont' think there are any special issues.I have never done it.
    If you are intending to install an 8i database on the same box there are some important things to consider with respect to the install order and what products in which Oracle home must be installed.
    1.Forms/Reports first in the default_oracle
    home.
    2.Then Oracle 8i in a 2nd oracle home call
    it ora81 for example.
    3.Then WebDb in the non oracle 8i home !!
    This is just a quick summary.
    If you run into any problems let me know
    Good Luck.
    Dave.

  • Messenger and Contacts not the same over different devices

    I upgraded to iOS8 on my 5S and iPad 4th gen.
    Then I updated my MBP to Yosemite Beta - just in case I need to  utilize iCoud Drive.  I'm not using it.
    On my phone, I noticed that my contacts got jacked up.  First noticed it in my Favorites, where names used to be, there's numbers.  I notice much of the same thing when I open Messenger on the phone.  On my computers and iPad, Messenger has all the contact info the same - the way it used to be.
    I've been around since the @mac.com days, so I have that id.  As well as a @me.com from that transition.  And of course, the @icloud.com id.  I did notice, that one of the device (don't remember which one) was using the iCloud id while the rest wear using the me.com id.  Figured that it wouldn't matter, since they're all Apple id's that have merged all my data over the years.
    thoughts?
    thanks

    What do you mean by "synched on the iPad and iPhone"? Are you using iCloud?

  • Mac • LR - Prints too dark and color not the same

    I a real problem where my prints are too dark about 2stops+ and color seem way off .
    How can I syc PS & LR so things print the same and the way that they should.
    Having to do work a rounds take up space that I can use, the time wast is ________ .
    Any and all hepl is welcome
    and
    Thank you
    Ric.

    RICHARD RODAMAR wrote:
    I a real problem where my prints are too dark about 2stops+ and color seem way off .
    How can I syc PS & LR so things print the same and the way that they should.
    So, printing an image from PS is OK, but from LR it's dark?
    Do both have the same printer ICC profile selected?
    Bob

  • Why are my ITunes playlists on my iPhone, iPad and Mac not the same?

    I don't understand the ITunes.  I have an Iphone, Ipad and new Mac Probook with Retina Display.  When I add songs to ITunes my playlists do not synchronize.  I have to manually delete the playlist on my Mac, create new ones, then synch with USB to each device.  Isn't there an easier way to manage the playlists?

    You can't drag and drop content onto smart playlists, only regular ones.
    tt2

  • Design and preview not the same

    I am a new Muse CC user so bear with me.
    I have deleted all graphics and navigation items from my three pages. All that is left is the page area.  I put text boxes in each of my pages.  I get about 3 inches of extra white space at the bottom of my page.  I stoked the page area so I can see its area.
    In design mode it looks fine.  In preview mode it gets about three inches longer.
    What have I done to make this happen?

    Hello,
    Please go to File -> Site Properties and disable "sticky footer" to see if that resolves the issue.
    Hope this helps.
    Cheers
    Parikshit

  • Im trying to activate my ipod but i dont know my icloud password or email, My apple ID and passwordsare not the same??

    I need help

    If you don't know your ID, you can try to find it as explained here: http://support.apple.com/kb/HT5625.  If you don’t know your password you can reset the password as explained here: http://support.apple.com/kb/PH2617.

  • Running Oracle database 10g and 11g on same 5 RAC nodes

    Hello Gurus,
    Could any body throw light if I can install and sucessfully run Oracle database 10g and 11g on the same Oracle RAC installation setup.My setup is below
    Number of nodes-5
    OS- windows 2003 or RHEL5
    storage- DELL EMC SAN
    Clusterware- oracle version11g
    File system-Automatic storage management(ASM)
    After I successfully setup clusterware,ASM on the nodes,I would want to install 11g database on all 5 nodes .
    Then Install 10g database on only 3 of the nodes using the same clusterware.
    What are your views on the same.
    Also FYI... as per metalink node 220970.1(RAC: Frequently Asked Questions) one can do such a setup.
    what iam looking for is practical experience if anyone has implemented this in production system,if yes any issues faced and how tough it is to support.
    Thanks,
    Imtiyaz

    You could run an 11g database and 10g database on the same cluster as long as you use Clusterware 11g.
    The administration aspect will drastically change according to the platform you run on. As of now, it appears you don't know whether it will be Linux or Windows.
    It would be practical to support the same database release.

Maybe you are looking for

  • Remote Client copy: Table does not exist in Nametab

    Hi! We executed a client copy between 2 SAP EHP4 systems. The both systems are SAP ERP EHP4  systems, but with different Support package. After the client copy we get the following errors: Table ADDRC_DELI_SERV  does not exist in Nametab Table ADDRC_

  • How can i set a column which would show me the name of the user

    how can i write a trigger which would show me the name of the user now make changes in the table.

  • Hard drive death and invisibility

    the other day, my hard drive seemed to die. i made a silly mistake - i had accidently gotten myself down to about 5gb free on my macbook pro's internal drive, and had then forgotten and started downloading more things. i guess i was downloading for a

  • Simple printer for my network (connected to windows pc)

    I'm looking for a printer to connect to a windows PC that will let me print through the network from my MacBook and iMac. I just want a simple and cheap printer, nothing too fancy. I've got a HP3650 now, but I cant get it too work like this (tried ev

  • Variables Not showing

    Hi All, I have added one variable to the query which is having already 4 variables, but when I tried to run it is showing two variables not even what I added.All variable including new one added is showing in the RSRT, but it is not showing in the Qu