Oracle Forms not working on 6i after upgradation on 9i

Hi all
shayan here how are u?
Hope all of u are fine.....
I have a problem that is i made the forms in 6i.....now after some time i upgrade the forms in the 9i...just compile all the forms in 9i and it works fine in 9i now...
Now i want that i used the same form in running in 6i but it is not running.....
is there is any way to run it......?
Thanks in advance
Shayan
[email protected]

yes i have the FMBs..........but when open the form in forms 6i it is showing acwards......some audio files is showing,there is no placement etc and when i try to run the forms it gives error can not adjust for out put.......however the form is opening in 9i successfully :(
Regards

Similar Messages

  • Copy form Wrod document and Paste in Oracle Forms not working

    Hi
    In one Oracle Finacial instance Copy from other document (word or Excel) and Paste in Oracle Financial Forms not working. Any body know the reason for this?
    Eg. Copy Invoice Number form Excel and Paste it in Some of the payable forms or any other forms
    Regards
    Sunil

    Hi
    We have tried this but no output. ie the issue continues the same. This issue is there for all PC including Server. Is there any other solution avaliable. .
    Regards
    Sunil

  • Date Picker on Manual Tabular form not working on 4.1 upgrade from 4.0

    Hi
    my application is upgrade from Apex 4.0 to 4.1 .
    Oracle DB is 11g.
    I have a manual tabular form with a date field:- apex_item.text(12,null,15,15,'class="datepicker3"') as end_date, After upgrade to 4.1 it's not working .
    I changed the code to:- apex_item.date_popup2(12,null,15,15) as end_date, still not working .
    I have to use apex_item.date_popup2 .
    Thanks in advance !!!
    -Amu

    Hi Diana,
    Is this you are trying to achieve:
    piepdate = startdate + typeduration
    The id attribute of the items in normal or APEX_ITEM based tabular form are of the type:
    fxx_xxxx
    For example: f10_0001, f10_0002, ..., f10_0010.
    So, correct the vRow variable accordingly
    >
    // get row
    var vRow = pThis.id.substr(pThis.id.indexOf('_')+1);
    >
    Hope it helps!
    Regards,
    Kiran

  • Simple Query working on 10G and not working on 11gR2 after upgrade

    Hi Folks,
    This is the first time i am posting the query in this Blog.
    I have a small issue which preventing the UAT Sigoff.
    Simple query working fine on 10.2.0.1 and after upgrade to 11.2.0.1 its error out
    10.2.0.4:
    =====
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1;
    COUNT(*)
    1
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=00001;
    COUNT(*)
    1
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1;
    ATTRIBUTE1
    00001
    11.2.0.1:
    =====
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1
    ERROR at line 1:
    ORA-01722: invalid number
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=00001
    ERROR at line 1:
    ORA-01722: invalid number
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='1';
    no rows selected
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='00001';
    COUNT(*)
    1
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='00001';
    ATTRIBUTE1
    00001
    ++++++++++++++++++++++++++++++++++++++++++++++
    SQL > desc APPS.HZ_PARTIES
    Name Type
    ======== ======
    ATTRIBUTE1 VARCHAR2(150)
    ++++++++++++++++++++++++++++++++++++++++++++++
    Changes:
    Recently i upgraded the DB from 10.2.0.4 to 11.2.0.1
    Query:
    1.If the type of that row is VARCHAR,why it is working in 10.2.0.4 and why not working in 11.2.0.1
    2.after upgrade i analyzed the table with "analyze table " query for all AP,AR,GL,HR,BEN,APPS Schemas--Is it got impact if we run analyze table.
    Please provide me the answer for above two questions or refer the document is also well enough to understand.Based on the Answer client will sigoff to-day.
    Thanks,
    P Kumar

    WhiteHat wrote:
    the issue has already been identified: in oracle versions prior to 11, there was an implicit conversion of numbers to characters. your database has a character field which you are attempting to compare to a number.
    i.e. the string '000001' is not in any way equivalent to the number 1. but Oracle 10 converts '000001' to a number because you are asking it to compare to the number you have provided.
    version 11 doesn't do this anymore (and rightly so).
    the issue is with the bad code design. you can either: use characters in the predicate (where field = 'parameter') or you can do a conversion of the field prior to comparing (where to_num(field) = parameter).
    I would suggest that you should fix your code and don't assume that '000001' = 1I don't think that the above is completely correct, and a simple demonstration will show why. First, a simple table on Oracle Database 10.2.0.4:
    CREATE TABLE T1(C1 VARCHAR2(20));
    INSERT INTO T1 VALUES ('1');
    INSERT INTO T1 VALUES ('0001');
    COMMIT;A select from the above table, relying on implicit data type conversion:
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    C1
    1
    0001Technically, the second row should not have been returned as an exact match. Why was it returned, let's take a look at the actual execution plan:
    SELECT
    FROM
      TABLE(DBMS_XPLAN.DISPLAY_CURSOR(NULL,NULL,NULL));
    SQL_ID  g6gvbpsgj1dvf, child number 0
    SELECT   * FROM   T1 WHERE   C1=1
    Plan hash value: 3617692013
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |       |       |     2 (100)|          |
    |*  1 |  TABLE ACCESS FULL| T1   |     2 |    24 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter(TO_NUMBER("C1")=1)
    Note
       - dynamic sampling used for this statementNotice that the VARCHAR2 column was converted to a NUMBER, so if there was any data in that column that could not be converted to a number (or NULL), we should receive an error (unless the bad rows are already removed due to another predicate in the WHERE clause). For example:
    INSERT INTO T1 VALUES ('.0001.');
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    SQL> SELECT
      2    *
      3  FROM
      4    T1
      5  WHERE
      6    C1=1;
    ERROR:
    ORA-01722: invalid numberNow the same test on Oracle Database 11.1.0.7:
    CREATE TABLE T1(C1 VARCHAR2(20));
    INSERT INTO T1 VALUES ('1');
    INSERT INTO T1 VALUES ('0001');
    COMMIT;
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    C1
    1
    0001
    SELECT
    FROM
      TABLE(DBMS_XPLAN.DISPLAY_CURSOR(NULL,NULL,NULL));
    SQL_ID  g6gvbpsgj1dvf, child number 0
    SELECT   * FROM   T1 WHERE   C1=1
    Plan hash value: 3617692013
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |       |       |     2 (100)|          |
    |*  1 |  TABLE ACCESS FULL| T1   |     2 |    24 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter(TO_NUMBER("C1")=1)
    Note
       - dynamic sampling used for this statement
    INSERT INTO T1 VALUES ('.0001.');
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    SQL> SELECT
      2    *
      3  FROM
      4    T1
      5  WHERE
      6    C1=1;
    ERROR:
    ORA-01722: invalid numberAs you can see, exactly the same actual execution plan, and the same end result.
    The OP needs to determine if non-numeric data now exists in the column. Was the database characterset possibly changed during/after the upgrade?
    Charles Hooper
    Co-author of "Expert Oracle Practices: Oracle Database Administration from the Oak Table"
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Oracle drivers not found by servlets after upgrade of JDK

    I am using jakarta-tomcat 4.0.1 with WIN2K.
    After a recent upgrade to jdk 1.4.0_02 from jdk1.3.1, servlets that try to use oracle crash with this error:
    java.lang.NoClassDefFoundError: oracle/jdbc/driver/OracleDriver
         at ProductLookup.loadJDBCDriver(ProductLookup.java:23)
    the code at line 23 is:
    DriverManager.registerDriver ( new oracle.jdbc.driver.OracleDriver());
    This all worked prior to the upgrade of jdk.
    The code at line 23 does work using the command line.
    I did check the ENVIRONMENT VARIABLES - in my limitted knowledge they look OK. But I am sure there MUST be something missing &/or incorrect.
    During execution, the servlet is just not finding "something".
    I am relatively new to JAVA and especially new to servlets.
    What should I look for to solve this problem?
    TIA
    WalkGood

    The oracle drivers are in a file called classes12.zip.
    Make sure that you unzip these files to where the
    servlets can find them.
    %TOMCAT_HOME%\common\classes
    or
    %TOMCAT_HOME%\classes
    or
    %TOMCAT_HOME\webapps\{app name}\WEB-INF\classesIs %TOMCAT_HOME% an environment variable? I have one called CATALINA_HOME. It is set the jakarta folder "C:\jakarta-tomcat-4.0.1"
    Something I noticed: If I execute tomcat "startup.bat" in a command prompt window, I see echo'd messages. One says "Using CLASSPATH: C:\jakarta-tomcat-4.0.1\bin\bootstarp.jar;C:\jakarta-tomcat-4.0.1\lib\tools.jar" but this NOT match the Environment Variable "classpath" which does specify the path to the classes12.zip folder. Should the "catalina.bat" file assemble the classpath to include the same Environment Variable "classpath" in addition to bootstrap.jar and tools.jar?
    Where can I find specific documentation on how to setup the environment for jakarta-tomcat to find the ORACLE drivers during execution of a servlet?
    TIA
    WalkGood

  • Web Query (.iqy) not working in Excel after upgrade to 11.1.1.6

    After upgrade 11.1.1.5 to 11.1.1.6, the Web Query (.iqy) does not work. After open the .iqy file in Excel, entered the user and password, it only pulls in "PK" in one cell, instead of the expected analysis report. This was working in 11.1.1.5 before upgrade.
    Does anyone know how to correct this issue? Is this a bug in 11.1.1.6, or required some new configuration settings?
    Thanks in advance.
    DX

    A bug has been registered.
    Bug 14040587 - OBIEE 11.1.1.6: OPENING WEB QUERY (.IQY) FILE IN EXCEL SHOWS JUNK CHARACTERS.

  • Send button not working on sms after upgrade

    My send is no longer working on sms after i upgraded. I have done factory setting and still not working . Any ideas of anything else i can try ? frustrated

    I have same problem. Can open message. As if keyboard is frozen.
    Unable to type then send. Also, tried shutting off preview.

  • Calender not working in 4s after upgrading to IOS 8 and and after synching with my new iphone 6  , calender not working in 6  as well. Please help.

    Hi my old phone 4s after upgrading to IOS 8, Calender is not working. Just a blank page and it quits automatically. I bought a new iphone 6+ and after synching , it also showing the same issue.

    There's no way a software update causes a hardware issue.  This is just coincidental.  Bring your phone to Apple for evaluation and possible replacement.

  • Fullscreen mode not working in aperture after upgrading to Lion

    I recently upgraded to Lion and Aperture is not working at all in Full screen mode. I have followed the ideas in the forum (unchecking the preferences for spaces) and nothing has worked. I have reinstalled the Aperure update and this did not work either. Any other ideas?
    regards, Jim

    Jim,
    Try this:
    if Aperture is running, quit;
    control click Aperture's icon in the dock;
    in the menu that pops up, navigate to the Options sub-menu;
    make sure "None" is selected in the "Assign To" section at the bottom.
    Mine was originally set to "This Desktop", probably as a hold-over from Snow Leopard, where I had Aperture assigned to its own Space. After I updated to Lion, Aperture was misbehaving in full screen mode until I changed it to "None".
    I hope this helps...
    - Bob

  • BINARY SEARCH does not work as before after upgrade

    We recently upgraded from HRSP 26 to HRSP 40 as well as similar upgrades in non-HR areas on our ECC 6.04 system.  We've been in SAP since 1998, and have a lot of old custom programs which were written when we were still new at ABAP.  In a few, we put records into an internal table sorted the table, maybe added a few more records to the table, and did a READ BINARY SEARCH.  Granted, this is not correct, adding records to a table after it is sorted.  But these programs have worked for more than 10 years and now, since our upgrade, the READ BINARY SEARCH does not always find a record where it did before the upgrade.
    So this is mostly just a heads-up.  If you are missing data in reports after upgrading, this might be the issue.  Also I am wondering if anyone has experienced this.
    Heads-up!
    Janice Ishee

    Hi Janice,
    you did not give any context. Please note that it is a popular error to think that a SELECT statement will fetch data in order of the primary key of the table - although it happens quite frequently. So always first sort, then binary search.
    Probably not related to upgrade.
    Regards,
    Clemens

  • Ipod not working in car after upgrade

    After an upgrade ipod touch shows unreadable in my volvo s80 2010

    cjwj, downgrading the iOS is not supported by Apple and the method you outlined does not work. When restoring an iPod, iTunes contacts Apple and will only allow restoring using the latest available update file.
    flcolvin7, Contact Volvo and get them to issue a firmware update for the car.

  • IPhone does not work in car after upgrading to os5

    After upgrading to os5 my build in hands free device does not work properly anymore, lot of noise, disconnects, connects in general not usable anymore.
    How to fix this?

    Does your aftermarket solution connect to the Nano's headphone jack or to the dock connector?
    If it connects to the headphone jack I would suggest buying an iPhone headphone adapter. I'm expecting mine to arrive via FedEx tomorrow so that I can use my iPhone in the car with a cassette adapter.
    Hope this helps.

  • Google Talk not working with Messages after upgrade to Mountain Lion

    After upgrading to Mountain Lion, I'm no longer able to use Google Talk with the new Messages App.  It worked fine on iChat, but now I cannot enable the account.  When I try to check the enable box, it immediately unchecks itself and nothing happens.  Any suggestions?

    Welcome to Apple Communities
    Open Finder, press Option key and select Go > Library. Open Preferences and delete com.apple.imessage.bag.plist and com.apple.imservice.iMessage.plist

  • Sound effects not working with SoundSticks after upgrade to 10.4.4

    After upgrading to 10.4.4, the sound effects of OS X, such as emptying trash, iChat effects, etc, doesn't come out from the SoundSticks (first generation, connected via USB), even though I've turned it (effects) to the highest level, and selected to have it come out of the SoundSticks.
    The effects are fine if I select Built-in Audio as sound output.

    The names are updated to the following (although the documentation doesn't reflect this):
    addDataSourceConnectionPool == createJDBCConnectionPool
    addManagedDataSource == createManagedDataSource
    addNativeDataSource == createNativeDataSource
    testDataSourceConnectionPool == testConnectionPool
    Hope it helps ...
    Cheers!
    Nimesh

  • Fn-key not working on NB305 after upgrade of Win7

    FN-key stopped showing flashcrads on a NB305-N410WH after an upgrade of Win7 Ultimate was applied to the standard Win7 Starter.
    I reinstled with latest flashcards utility (2.00.43) and TVAP (1.2.33) but the problem persists. The only possibility to operate flashcards is with mouse but I'd like to get the fn-functionality working. Any idea what I am missing? Thank you.

    Reinstalling the keyboard driver (Microsoft 21.06.2006, 6.1.7600.16385) did not help either.
    Perhaps someone can post a list of the correct driver versions for this NB305-N410WH. Since it is a relatively new product I did not find anything on the internet.
    When searching the download section by OS Win7 32 bit, I only get 12 files for download:
    Toshiba 3G Connection Manager for Windows XP/7 (32/64)(v2.1.90; 01-26-2010; 56.14M)
    Toshiba 3G Connection Manager for Windows XP/Vista/7 (32/64)(v2.1.69; 10-19-2009; 29.11M)
    Sierra 3G driver for Windows XP/7 (32/64)(v1.1.18; 01-26-2010; 25.67M)
    Sierra 3G driver for Windows XP/7 (32/64)(v1.1.10; 11-02-2009; 25.65M)
    Toshiba Web Camera Application for Windows XP/Vista/7 (32/64)(v1.1.1.9; 11-20-2009; 28.79M)
    Bluetooth Stack for Windows XP/Vista/7 (32/64) by Toshiba(v7.10.01(T); 11-06-2009; 76.53M)
    Toshiba Disc Creator for Windows XP/Vista/7 (32)(v2.1.0.2; 10-29-2009; 9.67M)
    Toshiba USB Sleep and Charge Utility for Windows XP/Vista/7 (32/64)(v1.3.2.0; 10-28-2009; 6.67M)
    Toshiba HDD/SSD Alert for Windows XP/Vista/7 (32)(v3.1.0.3; 10-26-2009; 36.65M)
    Toshiba Service Station for Windows XP/Vista/7 (32/64)(v2.1.40; 10-09-2009; 12.81M)
    Intel Matrix Storage Manager for Windows XP/Vista/7 (32/64)(v8.9.0.1023; 10-23-2009; 4.25M)
    Bluetooth Monitor for Windows XP/Vista/7 (32/64)(v4.04; 10-18-2009; 9.54M)
    I assume that these are not all files that are needed such as the TVAP is not listed unless there has not been an update since the notebnook was manufactured.

Maybe you are looking for

  • Adobe Reader 'Attach to Email' is not working

    I have a client that is running Windows 7 and when opening a PDF with Adobe Reader is unable to use the "Attach to Email" function. We tried this with Adobe X, Adobe 9.3, Adobe 9.4.2. None of these will work. An error occurs: "Acrobat is unable to co

  • Oracle9i reinstallation on Windows XP Pro

    Hello, I am having a problem of re-installing Oracle9i on my PC running WinXP Pro. Using the Oracle Universal Installer (OUI), at the Installation Types step, I select the Enterprise Edition and then the progress bar appear up to 31% then the OUI dro

  • Problem accessing clicksoft webservice in SAP System

    Hi All, We are currently integrating SAP system with Clicksoft. For that, we have received WSDL file from Clicksoft and we are trying to create consumer proxy in SAP system. But, getting error " Attribute "Transport" in <SOAPbind:binding> has incorre

  • Can I sync iphone with another computer

    Can I sync iphone with another computer?

  • Error in outbound processing:ALE/IDOC

    Dear all, I am getting an error in outbound processing as follows(I have extended the BD12 IDOC for customer master). The issue is that there is no hierarchie of segments in IDOC transaction we05.(Thogh the hierarchie can be observed in WE30) EDI: Sy