SAProuter.sar patch for windows x86 32bit

Hi friends,
I am unable to find SAPRouter.sar patch (Release Kernal 700) for windows x86 32bit. And also tel me the steps for config at system level, as I have done all the req steps at service market.
Does SAPRouter to be connected in the internal network?
While creating RFC connnection to SAPOSS I am geting an error.
If anyone have an idea reg SAPRouter, just msg it.
Regards,
nagesh

Hi Andrews,
I have seen tht path but I am unable to view for win 32 bit. These are for different OS found in the SAPRouter link.
SAPROUTER 7.00
AIX 32bit
AIX 64bit
HP-UX on IA64 64bit
HP-UX on PA-RISC 32bit
HP-UX on PA-RISC 64bit
Linux on IA32 32bit
Linux on IA64 64bit
Linux on Power 64bit
Linux on x86_64 64bit
Linux on zSeries 64bit
OS/400
OS/400 V5R2M0
Solaris on SPARC 32bit
Solaris on SPARC 64bit
Solaris on x64_64 64bit
TRU64 64bit
Windows Server on IA32 32bit
Windows Server on IA64 64bit
Windows Server on x64 64bit
z/OS 32bit
z/OS 64bit
I will be thankful if u send me a message reg this.
Regards,
Nageshwar

Similar Messages

  • Bug on Oracle 11.2.0.1 on Windows x86 32bit

    Hello,
    I have a very strange behavior on a database Oracle 11.2.0.1 on a Windows x86 32bit machine.
    I have 2 simple query on a small table with different condition.
    If I run the 2 query separately, they extract 2 data correcty, but if I run a unique query with the 2 previous condition in OR, the result is the same as if I run the query with AND operator.
    Here is the example from DOS :
         C:\Users\bianchi>sqlplus zcssysman/****@sm11
         SQL*Plus: Release 11.2.0.1.0 Production on Lun Nov 8 10:58:00 2010
         Copyright (c) 1982, 2010, Oracle. All rights reserved.
         Connesso a:
         Oracle Database 11g Release 11.2.0.1.0 - Production
         SQL> --
         SQL> -- Crea tabella di test
         SQL> --
         SQL> create table SARBI
         2 (
         3 PP CHAR(10),
         4 DFIN DATE
         5 );
         Tabella creata.
         SQL> --
         SQL> -- Aggiunge records
         SQL> --
         SQL> insert into SARBI (PP, DFIN)
         2 values ('0 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('1 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('2 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('3 ', to_date('31-12-2010', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('4 ', to_date('31-12-2008', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> commit;
         Commit completato.
         SQL> --
         SQL> -- Data maggiore/uguale di sysdate
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI a WHERE
         3 ( DFIN >= SYSDATE );
         ROWID PP DFIN
         AAAlEYAAEAAFlZ7AAD 3 31-DIC-10
         SQL> --
         SQL> -- Data uguale a 17/11/2009
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI A WHERE
         3 ( DFIN = TO_DATE('20091117','YYYYMMDD'));
         ROWID PP DFIN
         AAAlEYAAEAAFlZ7AAA 0 17-NOV-09
         AAAlEYAAEAAFlZ7AAB 1 17-NOV-09
         AAAlEYAAEAAFlZ7AAC 2 17-NOV-09
         SQL> --
         SQL> -- Entrambe le condizioni in OR
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI A WHERE
         3 ( DFIN >= SYSDATE OR
         4 DFIN = TO_DATE('20091117','YYYYMMDD'));
         ROWID PP DFIN
         AAAlEYAAEAAFlZ7AAD 3 31-DIC-10
         SQL>
    Here is the same query on a DB Oracle 10.2.example from DOS :
         C:\Users\bianchi>sqlplus zcssysman/******@sm10
         SQL*Plus: Release 11.2.0.1.0 Production on Lun Nov 8 11:00:45 2010
         Copyright (c) 1982, 2010, Oracle. All rights reserved.
         Connesso a:
         Oracle Database 10g Release 10.2.0.4.0 - Production
         SQL> --
         SQL> -- Crea tabella di test
         SQL> --
         SQL> create table SARBI
         2 (
         3 PP CHAR(10),
         4 DFIN DATE
         5 );
         Tabella creata.
         SQL> --
         SQL> -- Aggiunge records
         SQL> --
         SQL> insert into SARBI (PP, DFIN)
         2 values ('0 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('1 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('2 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('3 ', to_date('31-12-2010', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('4 ', to_date('31-12-2008', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> commit;
         Commit completato.
         SQL> --
         SQL> -- Data maggiore/uguale di sysdate
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI a WHERE
         3 ( DFIN >= SYSDATE );
         ROWID PP DFIN
         AAAlC6AAIAACneNAAD 3 31-DIC-10
         SQL> --
         SQL> -- Data uguale a 17/11/2009
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI A WHERE
         3 ( DFIN = TO_DATE('20091117','YYYYMMDD'));
         ROWID PP DFIN
         AAAlC6AAIAACneNAAA 0 17-NOV-09
         AAAlC6AAIAACneNAAB 1 17-NOV-09
         AAAlC6AAIAACneNAAC 2 17-NOV-09
         SQL> --
         SQL> -- Entrambe le condizioni in OR
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI A WHERE
         3 ( DFIN >= SYSDATE OR
         4 DFIN = TO_DATE('20091117','YYYYMMDD'));
         ROWID PP DFIN
         AAAlC6AAIAACneNAAA 0 17-NOV-09
         AAAlC6AAIAACneNAAB 1 17-NOV-09
         AAAlC6AAIAACneNAAC 2 17-NOV-09
         AAAlC6AAIAACneNAAD 3 31-DIC-10
         SQL>
    Can you help me ? I look for 11.2.0.2 patch set, but it seems that was not yet avaliable ...
    Thanks to all

    Doesn't happen with VARCHAR column :
    SQL> connect hemant
    Enter password:
    Connected.
    SQL> create table X (col_1  number, col_2 varchar2(5));
    Table created.
    SQL> insert into X values (1,'A');
    1 row created.
    SQL> insert into X values (2,'J');
    1 row created.
    SQL> insert into X values (3,'P');
    1 row created.
    SQL> insert into X values (4,'T');
    1 row created.
    SQL> insert into X values (5,'Z');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select col_1, col_2 from X where col_2 > 'Q';
         COL_1 COL_2
             4 T
             5 Z
    SQL> select col_1, col_2 from X where col_2 = 'P';
         COL_1 COL_2
             3 P
    SQL> select col_1, col_2 from X where
      2  (col_2 > 'Q' OR col_2 = 'P');
         COL_1 COL_2
             3 P
             4 T
             5 Z
    SQL> show parameter optimizer_featu
    NAME                                 TYPE        VALUE
    optimizer_features_enable            string      11.2.0.1
    SQL>
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - ProductionIs it the SYSDATE ?
    SQL> create table y (col_1 number,  col_2 date);
    Table created.
    SQL> insert into y values (1, to_date('01-JAN-2000','DD-MON-YYYY');
    insert into y values (1, to_date('01-JAN-2000','DD-MON-YYYY')
    ERROR at line 1:
    ORA-00917: missing comma
    SQL> insert into y values (1,to_date('01-JAN-2000','DD-MON-YYYY'));
    1 row created.
    SQL> insert into y values (2,to_date('01-JAN-2001','DD-MON-YYYY'));
    1 row created.
    SQL> insert into y values (3,to_date('01-JUL-2003','DD-MON-YYYY'));
    1 row created.
    SQL> insert into y values (4,to_date('15-NOV-2010','DD-MON-YYYY'));
    1 row created.
    SQL> insert into y values (5,to_date('12-MAR-2015','DD-MON-YYYY'));
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select col_1, col_2 from y where col_2=to_date('15-NOV-2010','DD-MON-YYYY');
         COL_1 COL_2
             4 15-NOV-10
    SQL> select col_1, col_2  from y where col_2 > to_date('01-APR-2010','DD-MON-YYYY');
         COL_1 COL_2
             4 15-NOV-10
             5 12-MAR-15
    SQL> select  col_1, col_2 from y where col_2=to_date('01-JUL-2003','DD-MON-YYYY');
         COL_1 COL_2
             3 01-JUL-03
    SQL> select col_1, col_2 from y where
      2  (col_2 > to_date('01-APR-2010','DD-MON-YYYY') OR col_2 = to_date('01-JUL-2003','DD-MON-YYYY'));
         COL_1 COL_2
             3 01-JUL-03
             4 15-NOV-10
             5 12-MAR-15
    SQL> select col_1, col_2 from y where
      2  (col_2 > sysdate OR col_2 = to_date('01-JUL-2003','DD-MON-YYYY'));
         COL_1 COL_2
             4 15-NOV-10
             5 12-MAR-15
    SQL>
    SQL> select col_1, col_2 from y where
      2  (col_2 > sysdate);
         COL_1 COL_2
             4 15-NOV-10
             5 12-MAR-15
    SQL> select col_1, col_2 from y where
      2  col_2 = to_date('01-JUL-2003','DD-MON-YYYY');
         COL_1 COL_2
             3 01-JUL-03
    SQL> select col_1, col_2 from y where
      2  (col_2 = to_date('01-JUL-2003','DD-MON-YYYY') OR col_2 > sysdate);
         COL_1 COL_2
             3 01-JUL-03
             4 15-NOV-10
             5 12-MAR-15
    SQL>Hemant K Chitale
    http://hemantoracledba.blogspot.com
    Edited by: Hemant K Chitale on Nov 9, 2010 10:50 PM

  • Oracle 10.2.0.3 Full Client for Windows 2003 32bit

    Hello,
    I know this is a stupid question, but I cannot seem to find the download for the full client for 10.2.0.3 for Windows 2003 32bit server. I have found the instant client, but not the full client.
    Thanks in advance.
    Brian

    Hi Zekmoe,
    do you have the PATCHES tab in Metalink (metalink.oracle.com)?
    If not, please check your PROFILE in metalink - if PATCHES and UPDATES says: NO, then please contact your administrator (mentioned also in your PROFILE) to enable the patch download.
    If you'll have the PATCHES tab then go to QUICK LINKS in the patch screen and choose Windows 32bit and 10.2.0.3
    Hope this helps - kind regards
    Mike

  • Installing EM12c for Windows x86-64 fail when Plugins prerequisite check

    Hi,
    I am installing EM12c for Windows x86-64 but fail when plugins prerequisite check,
    the configplugin_prereq_check_DATE.log as below:
    2012-05-14 17:22:31,474 [main] WARN pluginca.PluginCADriver -
    2012-05-14 17:22:31,474 [main] WARN pluginca.PluginCADriver - ---------------------------------------------------------------
    2012-05-14 17:22:31,474 [main] WARN pluginca.PluginCADriver - ---Plugins On Which Action "Prereq check" Is To Be Performed---
    2012-05-14 17:22:31,474 [main] WARN pluginca.PluginCADriver - oracle.sysman.db=12.1.0.2.0
    2012-05-14 17:22:31,474 [main] WARN pluginca.PluginCADriver - oracle.sysman.xa=12.1.0.2.0
    2012-05-14 17:22:31,474 [main] WARN pluginca.PluginCADriver - oracle.sysman.emas=12.1.0.2.0
    2012-05-14 17:22:31,474 [main] WARN pluginca.PluginCADriver - oracle.sysman.mos=12.1.0.2.0
    2012-05-14 17:22:31,474 [main] WARN pluginca.PluginCADriver - ---------------------------------------------------------------
    2012-05-14 17:22:31,474 [main] WARN pluginca.PluginCADriver -
    2012-05-14 17:22:31,630 [main] WARN deploymentservice.EMPluginDeploymentUtil - No OMS name property passed. Assuming there is only one entry in emInstanceMapping.properties.
    2012-05-14 17:22:32,831 [main] WARN deploymentservice.EMPluginDeploymentUtil - No OMS name property passed. Assuming there is only one entry in emInstanceMapping.properties.
    2012-05-14 17:22:32,894 [main] WARN pluginca.PluginCABackup - No connection passed. Not storing any backup info in repo.
    2012-05-14 17:22:32,894 [main] WARN pluginca.PluginCABackup - No connection passed. Not storing any backup info in repo.
    2012-05-14 17:22:32,894 [main] WARN pluginca.PluginCABackup - No connection passed. Not storing any backup info in repo.
    2012-05-14 17:22:33,689 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.mos:12.1.0.2.0:0
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,689 [main] ERROR pluginca.PluginCADriver - ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    oracle.sysman.core.common.extensibility.pluginca.PluginCAException: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:702)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.preDeployCustomConfig(PluginCAHelper.java:567)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.preDeploy(PreConfigModuleStep.java:165)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.run(PreConfigModuleStep.java:87)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleExecutor.run(PreConfigModuleExecutor.java:46)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.preqreqCheck(PluginCA.java:790)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.configure(PluginCA.java:326)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.initPluginCA(PluginCADriver.java:1798)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.beginConfig(PluginCADriver.java:978)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.main(PluginCADriver.java:1997)
    Caused by: oracle.sysman.emInternalSDK.core.extensibility.pluginca.PluginCustomConfigException: Patches for the following bugs need to be applied before attempting plugin deployment: [13242773]
         at oracle.sysman.config.MosPluginCustomConfig.doPreDeployConfig(MosPluginCustomConfig.java:106)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:692)
         ... 9 more
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.emas:12.1.0.2.0:20120427
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    oracle.sysman.core.common.extensibility.pluginca.PluginCAException: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:702)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.preDeployCustomConfig(PluginCAHelper.java:567)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.preDeploy(PreConfigModuleStep.java:165)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.run(PreConfigModuleStep.java:87)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleExecutor.run(PreConfigModuleExecutor.java:46)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.preqreqCheck(PluginCA.java:790)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.configure(PluginCA.java:326)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.initPluginCA(PluginCADriver.java:1798)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.beginConfig(PluginCADriver.java:978)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.main(PluginCADriver.java:1997)
    Caused by: oracle.sysman.emInternalSDK.core.extensibility.pluginca.PluginCustomConfigException: Patches for the following bugs need to be applied before attempting plugin deployment: [13242773]
         at oracle.sysman.as.pluginpreconfig.AsPluginCustomConfig.doPreDeployConfig(AsPluginCustomConfig.java:113)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:692)
         ... 9 more
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.db:12.1.0.2.0:20120427
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    oracle.sysman.core.common.extensibility.pluginca.PluginCAException: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:702)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.preDeployCustomConfig(PluginCAHelper.java:567)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.preDeploy(PreConfigModuleStep.java:165)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.run(PreConfigModuleStep.java:87)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleExecutor.run(PreConfigModuleExecutor.java:46)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.preqreqCheck(PluginCA.java:790)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.configure(PluginCA.java:326)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.initPluginCA(PluginCADriver.java:1798)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.beginConfig(PluginCADriver.java:978)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.main(PluginCADriver.java:1997)
    Caused by: oracle.sysman.emInternalSDK.core.extensibility.pluginca.PluginCustomConfigException: Patches for the following bugs need to be applied before attempting plugin deployment: [13242773]
         at oracle.sysman.db.patch.DbPluginCustomConfig.doPreDeployConfig(DbPluginCustomConfig.java:105)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:692)
         ... 9 more
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Pre config module failed for some plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error are:
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.mos:12.1.0.2.0:0
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.emas:12.1.0.2.0:20120427
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.db:12.1.0.2.0:20120427
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Check Pre config module log for more details.
    2012-05-14 17:22:33,720 [main] ERROR pluginca.PluginCADriver - Prereq Check unsuccessful.
    2012-05-14 17:22:33,720 [main] ERROR pluginca.PluginCADriver - PREREQ_CHECK_UNSUCCESSFUL
    oracle.sysman.core.common.extensibility.pluginca.PluginCAException: PREREQ_CHECK_UNSUCCESSFUL
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.preqreqCheck(PluginCA.java:827)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.configure(PluginCA.java:326)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.initPluginCA(PluginCADriver.java:1798)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.beginConfig(PluginCADriver.java:978)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.main(PluginCADriver.java:1997)
    2012-05-14 17:22:33.720 [ PluginCAUtil - Emergency log ]
    oracle.sysman.core.common.extensibility.pluginca.PluginCAException: PREREQ_CHECK_UNSUCCESSFUL
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.preqreqCheck(PluginCA.java:827)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.configure(PluginCA.java:326)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.initPluginCA(PluginCADriver.java:1798)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.beginConfig(PluginCADriver.java:978)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.main(PluginCADriver.java:1997)
    2012-05-14 17:22:33,720 [main] DEBUG pluginca.PluginCADriver - 2012-05-14 17:22:33.720
    the configplugin_prereq_check_DATE.trc as below:
    2012-05-14 17:22:32,894 [main] INFO pluginca.PluginCADriver - =============PRE CUSTOM CONFIURATION STARTS ============
    2012-05-14 17:22:33,689 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.mos:12.1.0.2.0:0
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,689 [main] ERROR pluginca.PluginCADriver - ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    oracle.sysman.core.common.extensibility.pluginca.PluginCAException: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:702)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.preDeployCustomConfig(PluginCAHelper.java:567)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.preDeploy(PreConfigModuleStep.java:165)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.run(PreConfigModuleStep.java:87)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleExecutor.run(PreConfigModuleExecutor.java:46)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.preqreqCheck(PluginCA.java:790)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.configure(PluginCA.java:326)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.initPluginCA(PluginCADriver.java:1798)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.beginConfig(PluginCADriver.java:978)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.main(PluginCADriver.java:1997)
    Caused by: oracle.sysman.emInternalSDK.core.extensibility.pluginca.PluginCustomConfigException: Patches for the following bugs need to be applied before attempting plugin deployment: [13242773]
         at oracle.sysman.config.MosPluginCustomConfig.doPreDeployConfig(MosPluginCustomConfig.java:106)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:692)
         ... 9 more
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.emas:12.1.0.2.0:20120427
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    oracle.sysman.core.common.extensibility.pluginca.PluginCAException: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:702)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.preDeployCustomConfig(PluginCAHelper.java:567)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.preDeploy(PreConfigModuleStep.java:165)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.run(PreConfigModuleStep.java:87)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleExecutor.run(PreConfigModuleExecutor.java:46)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.preqreqCheck(PluginCA.java:790)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.configure(PluginCA.java:326)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.initPluginCA(PluginCADriver.java:1798)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.beginConfig(PluginCADriver.java:978)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.main(PluginCADriver.java:1997)
    Caused by: oracle.sysman.emInternalSDK.core.extensibility.pluginca.PluginCustomConfigException: Patches for the following bugs need to be applied before attempting plugin deployment: [13242773]
         at oracle.sysman.as.pluginpreconfig.AsPluginCustomConfig.doPreDeployConfig(AsPluginCustomConfig.java:113)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:692)
         ... 9 more
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.db:12.1.0.2.0:20120427
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    oracle.sysman.core.common.extensibility.pluginca.PluginCAException: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:702)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.preDeployCustomConfig(PluginCAHelper.java:567)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.preDeploy(PreConfigModuleStep.java:165)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep.run(PreConfigModuleStep.java:87)
         at oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleExecutor.run(PreConfigModuleExecutor.java:46)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.preqreqCheck(PluginCA.java:790)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.configure(PluginCA.java:326)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.initPluginCA(PluginCADriver.java:1798)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.beginConfig(PluginCADriver.java:978)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.main(PluginCADriver.java:1997)
    Caused by: oracle.sysman.emInternalSDK.core.extensibility.pluginca.PluginCustomConfigException: Patches for the following bugs need to be applied before attempting plugin deployment: [13242773]
         at oracle.sysman.db.patch.DbPluginCustomConfig.doPreDeployConfig(DbPluginCustomConfig.java:105)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCAHelper.performCustomConfig(PluginCAHelper.java:692)
         ... 9 more
    2012-05-14 17:22:33,705 [main] INFO pluginca.PluginCADriver - =============PRE CUSTOM CONFIURATION ENDS ============
    2012-05-14 17:22:33,705 [main] INFO pluginca.PluginCADriver - Back from pre custom config
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Pre config module failed for some plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error are:
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.mos:12.1.0.2.0:0
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.emas:12.1.0.2.0:20120427
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Error while performing Pre config module for plugin oracle.sysman.db:12.1.0.2.0:20120427
    Error is: ERROR_IN_CUSTOM_CONFIG( Exception while performing custom config )
    Aborting config for the plugin and all other dependent plugins.
    2012-05-14 17:22:33,705 [main] ERROR pluginca.PluginCADriver - Check Pre config module log for more details.
    2012-05-14 17:22:33,720 [main] DEBUG pluginca.PluginCADriver - oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleStep - start - 2012-05-14 17:22:33.720
    2012-05-14 17:22:33,720 [main] DEBUG pluginca.PluginCADriver - oracle.sysman.core.common.extensibility.pluginca.PreConfigModuleExecutor - end - 2012-05-14 17:22:33.720
    2012-05-14 17:22:33,720 [main] ERROR pluginca.PluginCADriver - Prereq Check unsuccessful.
    2012-05-14 17:22:33,720 [main] ERROR pluginca.PluginCADriver - PREREQ_CHECK_UNSUCCESSFUL
    oracle.sysman.core.common.extensibility.pluginca.PluginCAException: PREREQ_CHECK_UNSUCCESSFUL
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.preqreqCheck(PluginCA.java:827)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCA.configure(PluginCA.java:326)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.initPluginCA(PluginCADriver.java:1798)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.beginConfig(PluginCADriver.java:978)
         at oracle.sysman.core.common.extensibility.pluginca.PluginCADriver.main(PluginCADriver.java:1997)
    2012-05-14 17:22:33,720 [main] DEBUG util.PluginCAUtil - Connection: null Step ID: -1
    2012-05-14 17:22:33,720 [main] DEBUG util.PluginCAUtil - Not updating job step
    Anyone has experience for this problems? and someone install this version success?
    I am appreciate for your help.

    Hi Colin
    Since we were debugged this issue offline and we found the root cause of the problem. I am updating this thread with more detail for the benefit of others :
    We looked in your environment and log files for more details and we found below error ( updating it so that we can know the complete picture)
    ÐÅÏ¢: Applying opatch for the oneoffs 13242773,13707704 ...
    ÐÅÏ¢: D:\oracle\oem\oms/OPatch/opatch.bat napply -silent -local -oh D:\oracle\oem\oms -phBaseFile D:\oracle\oem\oms/patch.txt
    ÐÅÏ¢: ERROR STREAM: java.lang.NoClassDefFoundError: DB
    ÐÅÏ¢: ERROR STREAM: Caused by: java.lang.ClassNotFoundException: DB
    ÐÅÏ¢: ERROR STREAM: at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    ÐÅÏ¢: ERROR STREAM: at java.security.AccessController.doPrivileged(Native Method)
    ÐÅÏ¢: ERROR STREAM: at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    ÐÅÏ¢: ERROR STREAM: at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    ÐÅÏ¢: ERROR STREAM: at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    ÐÅÏ¢: ERROR STREAM: at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    ÐÅÏ¢: ERROR STREAM: Could not find the main class: DB. Program will exit.
    It fails to apply the one of the patches , as Opatch get the CLASSPATH environment variable that has spaces.
    The workaround for this to unset the CLASSPATH environment variable and then begin the installation process. Its doced in the release note and install guide.

  • SQL Studio 7.8 Windows x86 32bit

    SAP MaxDB Database Studio 7.8 for Windows (x86, 32 bit).abst seems to lead to the licence aggreement of the 64bit  and then its download
    any suggestions?

    despite nobody seems to be interested in that software the link would  be this one:
    https://downloads.sdn.sap.com/maxdb/maxdb-tools/maxdb-studio-win-32bit-i386-7_8_01_18.exe

  • Requested extension com.adobe.Vibration is not supported for Windows-x86 Problem with Cs6,air3.4.

    While compiling my application on Flash CS6 with Air for iOS 3.4, I am getting the error given below:
    The content cannot be loaded because there was a problem loading an extension: Error: Requested extension com.adobe.Vibration is not supported for Windows-x86.
    I am using vibration.ane file which got it from Adobe (http://www.adobe.com/devnet/air/native-extensions-for-air/extensions/vibration.html)
    Anybody out there who knows how to solve this problem!
    Thanks.

    1) The vibration ANE from Adobe does not support Windows.
    2) The iOS simulator (adl) is not a virtual machine but rather it is a native Windows app, thus the platform your app runs on is Windows not iOS.
    What Adobe needs to do to avoid confusing everyone is one of two things:
    1) Include a stub for Windows (and MacOS) in the Vibration ANE.
    2) Make it possible to deploy an app to a platform where the ANE is not supported, but produce a runtime error upon an attempt to use the ANE. The developer could then put logic in the app to detect the underlying platform and make adjustments.

  • Qosmio F60-11F - Drivers for Windows 7 32bit

    Hi .
    I have Qosmio F60-11F and I install windows 7 ultimate 32bit , and I am facing a problem with all drivers.
    I search in support driver section in site of Toshiba, but I found only bluetooth, also I need power managment for Windows 7 32bit.
    thanx

    Hey,
    As far as I know Qosmio F60 is preinstalled with Windows 7 64bit...
    That means you have installed 32bit version of Windows 7 but why? Normally 64bit OS is the future and supports only 4GB or more RAM. 32bit is pretty outdated for such a new high performance notebook
    I think this is the reason why you cant get all drivers on official Toshiba page because its designed for 64bit OS only
    If you really want 32bit you must search for drivers yourself on external websites.

  • Any Oracle database personal edition certified for Windows 7/32bit?

    Is any Oracle database Personal edition certified for Windows 7/32bit? I spent an hour at least searching for this but no chance.
    Thank you.

    Currently, only 11gR2 and 10.2.0.5 are certified on Win 7 Professional or higher - Home versions are not supported.
    HTH
    Srini

  • Security Update 2007-001 patch for Windows

    Hi, I am having no luck in finding the Security Update 2007-001 for Quicktime security patch for Windows XP.
    Can someone please direct me to either the link to directly download the Windows version of the 2007-001 security patch, or a link to the Software Update tool in order to download this patch.

    http://docs.info.apple.com/article.html?artnum=304989
    If Software Update was not installed during your QuickTime Player install you'll need to uninstall it, re-install and include Software Update software.
    Is that enough install?

  • Difficulty installing Rescue and Recovery 4.2 patch for Windows Vista

    Which between System Update Installation History and Post-Installation Status Report should I believe, when they tell a different story?
    When I run thinkVantage System Update, the post-intallation status report indicates that the following fails to install:
    * Rescue and Recovery 4.2 patch for Windows Vista
    * ThinkVantage Client Security Solution for Vista SP1
    * Lenovo Wireless WAN Activation Patch
    However, when I open the ThinkVantage System Update History Log, I read that the above updates have been installed.
    Which one should I believe?
    I'm willing to believe that the update has been installed, but whenever I run System Update, I keep getting the same message that the above three need to be installed.
    Should I keep ignoring the message? If not, what else could I try?
    I have a T60 running Vista with SP1 installed. 

    Hi privard,
    Thanks for your feedback. Anyhow, let me see how i could help to sort this out for you.
    Cleo 
    WW Social Media
    T61, T410, x240, Z500, Flex 14
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    How to send a private message? --> Check out this article.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Can somebody helpme apply Oracle Olap 9.2.0.1.0.a patch for Windows

    Everything on the system is a fresh installation.
    1.Oracle 9iR2 Database, I chose the data warehousing option.
    After installation I checked to make sure that everything could be started.
    2. I then proceeded to install the Oracle OLAP patch 9.2.0.1.0a patch for windows.After navigating to the 2499827 directory.
    I typed OPatch\opatch apply as stated.
    It started then said "Peforming Pre patch installation checks"
    At the end of this
    I recieved a message saying
    "The following required components were not located or have the wrong versions
    oracle.options.olap"
    I guess it was to right to assume that the patch process failed, particularly as don't see any olap\admin directory in my %ORACLE_HOME%. The olap directory is there.
    Can somebody please give me some pointers. Is there something I have missed with regards to setting up Oracle 9iR2 thats preventing me from patching it.
    Thank you
    Richard Smith

    If you are missing the admin directory under your olap directory your initial Oracle9i Database Release 2 installation appears to be the culprit. Again, be sure to install the Enterprise Edition with the Data Warehouse database configuration. Also, make sure your Global Database Name and SID are all set up and running fine. Perhaps you installed over a previous ORACLE_HOME? Be sure to follow these steps for a proper Oracle removal:
    1. Terminate the Oracle9i Database and its processes
    Go to the Services applet in Control Panel and Stop all running Oracle processes
    2. Run OUI to uninstall your previous version of Oracle9i with OLAP Option, then Exit
    Choose 'Deinstall Products...'
    Select the products you need to remove, then click 'Remove...'
    Then click 'Exit' when done
    3. For a clean installation remove the following directories and registry entries (if they still exist):
    Directories:
    <your_drive>:\oracle\ora92
    <your_drive>:\oracle\oradata
    <your_drive>:\oracle\admin
    <your_drive>:\Program Files\Oracle
    Registry Entries:
    [HKEY_CURRENT_USER\Software\ORACLE]
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OracleOraHome92Agent]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OracleOraHome92ClientCache]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OracleOraHome92HTTPServer]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OracleOraHome92PagingServer]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OracleOraHome92SNMPPeerEncapsulator]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OracleOraHome92SNMPPeerMasterAgent]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OracleOraHome92TNSListener]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OracleServiceMY_SID]

  • CPU patch for windows

    Hi ,
    Is the oracle CPU patchs released separately for windows platform (like how they release it for UNIX flavours ).... or is it only Bundle patches for windows . I did some metalink search and google search and my understaing is there is no CPU patches for windows ... we may need to use only Bundle patches for windows platfrom . If so , does Bundle patch include CPU patches ?

    Hi;
    You need to check below link and you need to find patch number from notes and you need to check patch from metalink. If the patch is not avaliable for Windows platform than you need to rise SR and get patch from support
    http://www.oracle.com/technetwork/topics/security/alerts-086861.html
    Regard
    Helios

  • Latest 9i Patch set for Windows X86

    Hello All,
    Could you please inform me what is the latest patch set available for oracle 9i in
    Windows 32 bit platforms.
    Thanks and regards
    Satish V Chandran

    Thanks Fzheng,
    Could you please tell me where can I get the software from. I couldnot find it in Oracle site. This particular version was available only for Stratus x86.
    Regards
    Satish

  • Current Patches for Windows (32bit) 9.2.0.8

    We have recently upgraded to Windows 32-bit Oracle 9.2.0.8.  Note 539921  lists the patchset for Windows 32-bit as follows:
    NT_I386 32-bit
    /Oracle/Oracle 32-Bit/Oracle 9.2.0. 32-Bit/Oracle 9.2.0.8. 32-bit/
    NT_I386/Patchset_9208_WINNT.zip
    The patch set is installed with the runInstaller - see README.html
    For more information about installing patch sets, see Note 578683.
    *In addition, use opatch to install patch 12 for 9.2.0.8.
    /Oracle/Oracle 32-Bit/Oracle 9.2.0. 32-Bit/Oracle 9.2.0.8. 32-bit/
    NT_I386/9208_Patch12_WINNT.zip*
    So, after an upgrade to Windows 32-bit 9.2.0.8 you should then immediately apply patch 12?  The problem is reading note 1107601 - CPU Patches October 2007 (Oracle Critical Update Program)
    states the following:
    *The CPU patches are not a patch set, but rather a collection of patches. If
    there is a critical problem, you may have to install a separate fix, which
    conflicts with the CPU patch. In this case, you must uninstall the CPU
    patch.*
    But there is nothing specific for 9.2.0.8 (it implies there are no conflicts for 9.2.0.8):
    For Oracle 9.2.0.7, note the following:
    Unfortunately, the CPU patches for Oracle 9.2.0.7 conflict with patches
    that have already been installed and that are important for an SAP system.
    Therefore, there will be no further release of the patches for Oracle
    9.2.0.7. *We therefore recommend that you upgrade the database to Oracle
    9.2.0.8 and use the CPU patches for Oracle 9.2.0.8 instead.*
    So I'm assuming that after installing patchset 9.2.0.8 for Windows 32-bit I should apply patch 12 (which is CPU October 2007).  There are some patches listed under "Oracle Other" that seem to be generic patches listed under the download section for oracle 9.2.0.8.  Do these patches cause a conflict with patch 12?  I haven't seen a note that says to install them.
    I haven't found a note that says to install anything other than patchset 9.2.0.8 and then patch 12.  Is this right?  I need to find out pretty quick so any help  is appreciated!

    Hi,
    do following as of note 539921
    first apply patch set 9.2.0.8
    /Oracle/Oracle 32-Bit/Oracle 9.2.0. 32-Bit/Oracle 9.2.0.8. 32-bit/
                                            NT_I386/Patchset_9208_WINNT.zip
    than apply cpupatch CPUOct2007 patch 12 for  9.2.0.8  if you found critical problem with CPU it's optional
    use opatch to install patch 12 for 9.2.0.8.
         /Oracle/Oracle 32-Bit/Oracle 9.2.0. 32-Bit/Oracle 9.2.0.8. 32-bit/
                                              NT_I386/9208_Patch12_WINNT.zip
    regards,
    kaushal

  • Portege R700 - Need drivers for Windows 7 32bit

    Hi there
    I have the new R700 that I am developing a Windows 7 Enterprise build for and I cannot find the driver files or correct install programs for the 32bit version of the TOSHIBA Fingerprint Utility. I found the download for the R700 on the US site, and while this installs, it does not have the 32bit driver for the Fingerprint Scanner in the R700. Can someone either direct me to the correct download, or post the x86 download on the NZ site?
    BTW - the x64 download works fine if I install Windows 7 Ent x64 and install it.
    Model number = PT311A-00J00Q
    Component = Authen Tec Inc. AES1660
    PCI Device ID = USB\VID_08FF&PID_168B
    Thanks

    Yeah I checked the European site too, and it had the exact same files as the US site. The AUS\NZ sites have nothing except a BIOS update (as you saw), and the x86 TFPU from the US and UK sites does not work - it does not have the correct PCI\VEN device id in the driver inf file.
    In the meantime, while I was fiddling with the x64 build I noticed the x64 driver package has an x86 folder, and in there is the correct driver for the x86 build - which is just bizzare in my opinion. Why put the x86 driver in the x64 download package?
    So I installed that on the Win 7 x86 build, and viola - the drivers are installed and everything works.
    Now my problem is that I cannot silently install the TFPU without it rebooting. If you just run the setup, it installs then prompts for a reboot. If you use the /silent install switch it reboots automatically. Are there any other install switches I can use before I repackage this app to work correctly?
    Thanks

Maybe you are looking for

  • What keyscrambler software is the upgraded version of Mozilla comptible with? My QFX is no longer working, many thanks jian

    What keyscrambler softward is the upgraded version of Mozilla compatible with? My QFX is now no longer working since the update. Many thanks jian

  • Time Machine to Apple Network Share

    I've got a Mac Mini and an iMac on a gigabit network. The Mac Mini has a USB 3.0 HDD attached to it which is the Time Machine backup for the Mac Mini. I've shared it via File Sharing and have access to that HDD on my iMac. I've also set it up as the

  • Delete row in report........

    i have report, i have to delete row without page loading. i have wrote the application process(on demand). but i dont know how to write the javascript for htmldb items... my req is when i click the delete button the checked row(using check box) shoul

  • [Sims 3] Brightness a bit dark

    Hi. I run on Arch x86_64 with bin32-wine 1.1.40 (because with the 1.1.41, I can't launch the installer) and I've a little problem with the sims3. When I launch it in fullscreen mode, the screen become dark, and it do that only with the sims 3, my oth

  • Customs MIRO multiple line items

    Hi, In import Scenario, i have made imports duties as an item level condition. Suppose i have 10 material in a PO and 7 duty components. When i do Customs MIRO it shows 70 line items. It becomes very tidious process to fill all the line items manuall