Geocoding 11g Problems

Hello,
again some problems with the Geocoder.
I am using the Geocoder 11g and our own uploaded data which works great for Geocoding in 10g.
Reverse Geocoding works in 11g ok:
SELECT SDO_GCDR.REVERSE_GEOCODE('ML_GEOCODE',
SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(7.41815, 50.7784183, NULL), NULL, NULL),
'DE') FROM DUAL;
returns a valid result.
But when using
select SDO_GCDR.GEOCODE('ML_GEOCODE',SDO_KEYWORDARRAY('Sinzig'), 'DE', 'DEFAULT') from dual;
i run into JavaRuntime Messages:
ORA-29532: Java-Aufruf durch nicht abgefangene Java-Exception beendet: java.lang.ClassCastException
ORA-06512: in "MDSYS.SDO_GCDR", Zeile 679
ORA-06512: in "MDSYS.SDO_GCDR", Zeile 705
Using alter session set nls_numeric_characters='.,';
which did the job in 10g does not work in 11g.
The data is uploaded in the same schema, so the user should have access to the data.
Any hints about what to do ?
best regards
Markus

Here I have same sort of problem. We have a jspx page with some input fields and two buttons, and I have validation for one of the input field. Two buttons are ‘Save’ and ‘Choose’. ‘Choose’ button is for triggering a popup and from that popup we can select one set of values and those set of values will be populated in the first form. So the problem is we only want to throw the validation when we click on the ‘save’ button. We don’t want any validations to be thrown when we click on the ‘choose’ button. We solved that by setting immediate = “true” of ‘choose’ button. But the problem here is the form is not getting populated the values from the popup because we set immediate = “true” for ‘choose’ button. If any body chave faced same issue please revert.
Edited by: user10279910 on Jul 20, 2009 5:02 AM

Similar Messages

  • JDeveloper 10.1.3.2.0 and database 11g, problem in JDBC ?

    We developed our j2ee application (using hibernate) for some time. Now we came to newer Oracle database 11g and have problem - endless waiting for fetched data. I think, that problem is in JDBC version.
    Adding new JDBC into project as new library and placing it 'before' the old one doesn't help. Btw. hibernate gets connection from applicationContext_dataSource.xml file and is defined for example like this
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>
    <property name="url" value="jdbc:oracle:thin:@host:port:SID"/>
    <property name="username" value="name"/>
    <property name="password" value="password"/>
    </bean>
    It has nothing to do with defined conections.
    My question is this:
    - Can I upgrade JDBC in our 10.1.3.2.0 JDeveloper to new version or latest version of JDeveloper is needed ?
    Thanks.
    Message was edited by:
    jnejedly

    The OC4J server embedded in JDeveloper 11g does not support JDBC 4.0.
    Java applications using the JDBC 4.0 driver may be developed in JDeveloper 11g.

  • Oracle 11g - Problem in referring ROWNUM in the SQL

    Hello All,
    We are facing a strange problem with Oracle 11g (11.2.0.1.0).
    When we issue a query which refers the rownum, it returns a invalid record ( which is not exists in the table).
    The same sql is working fine once we analyze the table
    Note: The same sql is working fine with oracle 10g (Before analyze also).
    The script to reproduce the issue:
    DROP TABLE BusinessEntities;
    CREATE TABLE BusinessEntities
    business_entity_id VARCHAR2(25) PRIMARY KEY,
    business_entity_name VARCHAR2(50) NOT NULL ,
    owner_id VARCHAR2(25) ,
    statutory_detail_id NUMBER ,
    address_id NUMBER NOT NULL
    DROP TABLE BusEntityRoles;
    CREATE TABLE BusEntityRoles
    business_entity_id VARCHAR2(25) NOT NULL,
    role_id VARCHAR2(10) NOT NULL,
    PRIMARY KEY (business_entity_id, role_id)
    INSERT
    INTO businessentities ( business_entity_id , business_entity_name, owner_id , statutory_detail_id , address_id)
    VALUES
    ( 'OWNER', 'OWNER Corporation Ltd', NULL , 1, 1 );
    INSERT
    INTO businessentities ( business_entity_id , business_entity_name, owner_id , statutory_detail_id , address_id)
    VALUES
    ( 'ALL_IN_ALL', 'ALL IN ALL Corporation Ltd', 'OWNER' , 2, 2 );
    INSERT INTO busentityroles(business_entity_id, role_id) VALUES ('TEST' , 'OWNER');
    INSERT INTO busentityroles (business_entity_id,role_id) VALUES ('TEST','VENDOR');
    INSERT INTO busentityroles(business_entity_id, role_id) VALUES ('ALL_IN_ALL' , 'VENDOR');
    SELECT *
    FROM
    (SELECT raw_sql_.business_entity_id, raw_sql_.business_entity_name, raw_sql_.owner_id, raw_sql_.address_id,
    rownum raw_rnum_
    FROM
    (SELECT *
    FROM BusinessEntities
    WHERE (business_entity_id IN
    (SELECT business_entity_id
    FROM BusinessEntities
    WHERE business_entity_id = 'OWNER'
    OR owner_id = 'ALL_IN_ALL'
    AND business_entity_id NOT IN
    (SELECT business_entity_id FROM BusEntityRoles
    ORDER BY business_entity_id ASC
    ) raw_sql_
    WHERE rownum <= 5
    WHERE raw_rnum_ > 0;
    OUTPUT Before Analyzing
    BUSINESS_ENTITY_ID: OWNER
    BUSINESS_ENTITY_NAME: NULL
    OWNER_ID: OWNER
    ADDRESS_ID: NULL
    RAW_RNUM_: 1
    Note: There is no record in the table with the value business_entity_id as 'OWNER' and OWNER_ID as 'OWNER' and the address_id as NULL
    OUTPUT : After analyzed the table Using the below mentioned command
    ANALYZE TABLE "BUSENTITYSUPPLYCHAINROLES" ESTIMATE STATISTICS
    ANALYZE TABLE "BUSINESSENTITIES" ESTIMATE STATISTICS
    BUSINESS_ENTITY_ID: OWNER
    BUSINESS_ENTITY_NAME: OWNER Corporation Ltd
    OWNER_ID: NULL
    ADDRESS_ID: 1
    RAW_RNUM_: 1
    Any clue why Oracle 11g is behaving like this.

    Hi,
    it's a good practice to give aliases for tables, as well as name query blocks. Here it is (and formatted for convinience):
    select --/*+ gather_plan_statistics optimizer_features_enable('10.2.0.4') */
      from (select /*+ qb_name(v2) */
                   raw_sql_.business_entity_id
                  ,raw_sql_.business_entity_name
                  ,raw_sql_.owner_id
                  ,raw_sql_.address_id
                  ,rownum raw_rnum_
              from (select /*+ qb_name(v1) */ *
                      from businessentities b1
                     where (b1.business_entity_id in
                           (select /*+ qb_name(in) */ b2.business_entity_id
                               from businessentities b2
                              where business_entity_id = 'OWNER'
                                 or owner_id = 'ALL_IN_ALL'
                                and business_entity_id not in
                                   (select /*+ qb_name(not_in) */ r.business_entity_id from busentityroles r)))
                     order by business_entity_id asc) raw_sql_
             where rownum <= 5)
    where raw_rnum_ > 0;You are facing some bug - definitely - and, possibly, it is caused by [join elimination|http://optimizermagic.blogspot.com/2008/06/why-are-some-of-tables-in-my-query.html]. As a workaround you should rewrite the query to eliminate unnecessary join manually; or you may include a hint to not eliminate join (it's not documented):
    SQL>
    select -- /*+ gather_plan_statistics optimizer_features_enable('10.2.0.4') */
      from (select /*+ qb_name(v2)  */
                   raw_sql_.business_entity_id
                  ,raw_sql_.business_entity_name
                  ,raw_sql_.owner_id
                  ,raw_sql_.address_id
                  ,rownum raw_rnum_
              from (select /*+ qb_name(v1) no_eliminate_join(b1) */ *
                      from businessentities b1
                     where (b1.business_entity_id in
                           (select /*+ qb_name(in) */ b2.business_entity_id
                               from businessentities b2
                              where business_entity_id = 'OWNER'
                                 or owner_id = 'ALL_IN_ALL'
                                and business_entity_id not in
                                   (select /*+ qb_name(not_in) */ r.business_entity_id from busentityroles r)))
                     order by business_entity_id asc) raw_sql_
             where rownum <= 5)
    20   where raw_rnum_ > 0;
    BUSINESS_ENTITY_ID        BUSINESS_ENTITY_NAME                               OWNER_ID                  ADDRESS_ID  RAW_RNUM_
    OWNER                     OWNER Corporation Ltd                                                                 1          1Strange thing is executing a transformed query gives correct result too:
    SELECT "from$_subquery$_001"."BUSINESS_ENTITY_ID" "BUSINESS_ENTITY_ID",
           "from$_subquery$_001"."BUSINESS_ENTITY_NAME" "BUSINESS_ENTITY_NAME",
           "from$_subquery$_001"."OWNER_ID" "OWNER_ID",
           "from$_subquery$_001"."ADDRESS_ID" "ADDRESS_ID",
           "from$_subquery$_001"."RAW_RNUM_" "RAW_RNUM_"
      FROM  (SELECT /*+ QB_NAME ("V2") */
                    "RAW_SQL_"."BUSINESS_ENTITY_ID" "BUSINESS_ENTITY_ID",
                    "RAW_SQL_"."BUSINESS_ENTITY_NAME" "BUSINESS_ENTITY_NAME",
                    "RAW_SQL_"."OWNER_ID" "OWNER_ID","RAW_SQL_"."ADDRESS_ID" "ADDRESS_ID",
                    ROWNUM "RAW_RNUM_"
               FROM  (SELECT /*+ QB_NAME ("V1") */
                            "SYS_ALIAS_1"."BUSINESS_ENTITY_ID" "BUSINESS_ENTITY_ID",
                            "SYS_ALIAS_1"."BUSINESS_ENTITY_NAME" "BUSINESS_ENTITY_NAME",
                            "SYS_ALIAS_1"."OWNER_ID" "OWNER_ID",
                            "SYS_ALIAS_1"."STATUTORY_DETAIL_ID" "STATUTORY_DETAIL_ID",
                            "SYS_ALIAS_1"."ADDRESS_ID" "ADDRESS_ID"
                       FROM "TIM"."BUSINESSENTITIES" "SYS_ALIAS_1"
                      WHERE ("SYS_ALIAS_1"."BUSINESS_ENTITY_ID"='OWNER'
                          OR "SYS_ALIAS_1"."OWNER_ID"='ALL_IN_ALL' AND  NOT
                             EXISTS (SELECT /*+ QB_NAME ("NOT_IN") */ 0
                                       FROM "TIM"."BUSENTITYROLES" "R"
                                      WHERE "R"."BUSINESS_ENTITY_ID"="SYS_ALIAS_1"."BUSINESS_ENTITY_ID")
                      ORDER BY "SYS_ALIAS_1"."BUSINESS_ENTITY_ID") "RAW_SQL_"
             WHERE ROWNUM<=5) "from$_subquery$_001"
    26   WHERE "from$_subquery$_001"."RAW_RNUM_">0
    27  /
    BUSINESS_ENTITY_ID        BUSINESS_ENTITY_NAME                               OWNER_ID                  ADDRESS_ID  RAW_RNUM_
    OWNER                     OWNER Corporation Ltd                                                                 1          1

  • BUG: 11g problem when using orabpel.jar for tasklist page

    Hi,
    Using 11g i created a BC view object to show a BPEL/Workflow tasklist. Using the SOAP_CLIENT method i got this working. When i test my view object with the business component tester it works. When i create a taskflow with a page fragment that has a table based on the view object it is not working. I need to deploy (among others) the orabpel.jar library with the application because my view object implementation depends on it. As soon as i run the application however with the orabpel.jar deployed the browser keeps showing the Loading image but refuses to continue to load. I also do not get any error in the console or the domain and server log files. It looks like there is a problem with some classes in the orabpel.jar that get in the way of weblogic adf libraries.
    Does anybody have experience with 10.1.3 orabpel.jar library in combination with the new 11g weblogic stack? Can i somehow configure class loading in a way that weblogic classes have preference over orabpel.jar classes if they exist? Is there a way to increase logging so i can trace at what point the problem occurs? Any help would be greatly appreciated.
    Kind Regards,
    Andre
    Edited by: AJochems (Redora) on Nov 18, 2008 2:08 PM

    Hi,
    Traced the problem to be related to the use of ADF XML menus. When i remove them the problem disappears. So i have traced the problem although i still do not exactly know what is causing it. Since there are a lot of redundant (probably altered versions) of classes in the orabpel.jar library one of them gets in the way with a weblogic class that is used while rendering the ADF Menu. The problem should be reproducible if you create a menu based on the model of an adf menu and add the orabpel.jar to your deployment.
    Kind Regards,
    Andre

  • Obiee 11g . problem with set default as columnname in interaction tab

    Hi Obiee gurus ,
    I have small problem with set default option in interaction tab in column properties. actually my problem is , i changed one column bold save as set default option bold and how to revert back to my column option. when i create new analysis with same name . it takes set default option for that column.
    can Please give some suggestion for this problem.
    regards
    Srinivas

    Hi Srinivas,
    i guess this will be same for 11G
    Refer
    http://blogs.oracle.com/siebelessentials//2008/08/remove_systemwide_default_sett.html
    thanks,
    Saichand.v

  • New Jdeveloper 11g problem

    Hi ,
    I intalled the new Jdeveloper 11g preview version and tried craeting a simple page using my database connection.Its does everything fine but when i run the page it generates following log:
    :\Documents and Settings\deolk\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config>
    C:\JDev11g\jdk\bin\javaw.exe -client -classpath C:\JDev11g\j2ee\home\oc4j.jar;C:\JDev11g\jdev\lib\jdev-oc4j-embedded.jar -Xverify:none -XX:MaxPermSize=512m -Ddisable.checkForUpdate=true -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false "-Djava.security.policy=C:\Documents and Settings\deolk\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\java2.policy" oracle.oc4j.loader.boot.BootStrap -config "C:\Documents and Settings\deolk\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\server.xml"
    [waiting for the server to complete its initialization...]
    Feb 8, 2008 11:32:01 AM oracle.j2ee.xml.XMLMessages warningException
    WARNING: Exception Encountered
    C:\JDev11g\jdk\bin\javaw.exe -jar C:\JDev11g\j2ee\home\admin.jar ormi://10.30.139.243:23891 fmwadmin **** -updateConfig
    Feb 8, 2008 11:32:12 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    08/02/08 11:32:24 WARNING: ApplicationServer.enableOC4JDocumentChangeNotifier Alternate DocumentChangeNotifier in use!
    08/02/08 11:32:24 JMS server will listen on port 9227.
    08/02/08 11:32:26 oracle.j2ee.jms.oc4j.JMSServer startup complete
    Feb 8, 2008 11:32:27 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 8, 2008 11:32:28 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 8, 2008 11:32:33 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 8, 2008 11:32:33 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 8, 2008 11:32:34 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 8, 2008 11:32:34 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 8, 2008 11:32:34 AM oracle.j2ee.util.AnnotatedLogger logWithThrowable
    WARNING: J2EE JNDI-00002
    Feb 8, 2008 11:32:34 AM oracle.j2ee.util.AnnotatedLogger log
    WARNING: No javax.jms.ConnectionFactory found at null
    Feb 8, 2008 11:32:34 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 8, 2008 11:32:35 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 8, 2008 11:32:38 AM oracle.j2ee.jmsrouter.util.JmsRouterMessages logException
    WARNING: oracle.j2ee.jmsrouter.RouterException: JMS Destination, {0}, does not exist
    Ready message received from Oc4jNotifier.
    Embedded OC4J Server startup time: 39078 ms.
    Target URL -- http://127.0.0.1:8988/test-ViewController-context-root/faces/untitled1.jspx
    The target URL creates the page with HTTP Error
    Status : 504 Gateway Time-Out
    Description : Unable to connect to origin Web server.
    Thanks
    Kamal

    Well, I have exactly the same problem "System user not available..."
    I am doing something VERY simple: create a JavaEE app, create a single Session bean, everything deafult and then simply "Run..." that bean.
    This problem remains even after I have successfully changed the OC4J path to "c:\kkk2".
    Any other ideas?
    Another question: in the previous JDeveloper, local and remote interfaces to EJB-s were hidden in the pp explorer. Can I still activate this feature?
    Regards: Á

  • JDeveloper 11g: Problem with search page sample

    Hello all!
    I realized the detailed search page in Oracle JDeveloper 11g Handbook ".
    Before, it runned without problem. But for a while, I have the following exception when I run a search:
    *Unexpected exception: java.lang.ArrayIndexOutOfBoundsException, e = 0.*
    I searched the forums, the answers that I had alluded to the types of data in the entity, and in the view. But I checked and the different types of entities are those views.
    The error always returns.
    I also increased by Size Range in the definition of the page.
    But there is nothing. Can anyone help me?
    Thank's
    Nystan

    Hi,
    you want at least to give us the page number that has the example you reference. Chances are that some of the experts on OTN own the book and could have a look. When you say "Before, it runned without problem. But for a while, I have the following exception when I run a search:", what did it make change ?
    Frank

  • OSB 11g - problem in workshop

    Hello,
    I have a problem with new OSB 11g in my workshop - it doesn't start properly - log:
    !ENTRY com.bea.workshop.wls.core 1 2000 2011-01-07 12:10:36.178
    !MESSAGE Server watcher[Oracle WebLogic Server 11g v10.3 at localhost]:running Weblogic detected, validating...
    !ENTRY com.bea.workshop.wls.core 1 2000 2011-01-07 12:10:36.191
    !MESSAGE Cannot load com.bea.plateng.domain.DomainInfoHelper: java.lang.ClassNotFoundException: com.bea.plateng.domain.DomainInfoHelper
    !ENTRY com.bea.workshop.wls.core 1 2000 2011-01-07 12:10:36.192
    !MESSAGE Cannot load com.bea.plateng.domain.DomainInfoHelper: java.lang.ClassNotFoundException: com.bea.plateng.domain.DomainInfoHelper
    !ENTRY com.bea.workshop.wls.core 4 4 2011-01-07 12:10:39.647
    !MESSAGE Cannot establish connection to deployment manager.Anonymous attempt to get to a JNDI resource
    To avoid security lockout, Server watcher will NOT attempt to reconnect the server. If you change username/password, please restart Eclipse.
    !ENTRY com.bea.workshop.wls.core 4 4000 2011-01-07 12:10:39.748
    !MESSAGE Another server (or another process) is running on the same TCP/IP port '7011'.
    !ENTRY org.eclipse.wst.server.core 4 0 2011-01-07 12:10:40.175
    !MESSAGE Server Oracle WebLogic Server 11g v10.3 at localhost failed to start.
    ... workshop then thinks, that WLS didn't start, but in fact it is running on the background.
    (Nothing else is running on the port 7011 and I've also tried some else ports.)
    I've got: wls 1033, osb 11.1.1.3.0, workshop 10.3
    Thank you very much for any help.

    Windows 7 64bit I was expecting this answer. On windows 7, to start eclipse, right click on eclipse.exe and select "Run as Administrator" option
    Regards,
    Anuj

  • Migrating forms to 11g - problems with absolete built-ins

    Sorry if it's the wrong section, but nerves are kicking in and I'm lost.
    I've been trying to migrate an old, probably 8i database with its tools and forms into 11g. All software seems to run fine, but when I try to run the forms I either get "this form was made using an old forms builder" error, or worse - some enigmatic FRM and ORA (exception 6508) errors apparently connected to lack of some procedure called in the form triggers.
    Now you'd probably say "just recompile those forms". But I can't - I get tons of compilation errors, mostly comming in from absolete built-ins or trying to select from system views. That happens when trying to recompile libraries referenced by those forms, which is probably why i get those procedure lacking errors.
    Since the ammount and nature of those overwhelmed me I tried using Forms Migration Assistant...talk about betting on the wrong horse. First I had to change the 'start in' property of the assitants shortcut to where i stored the forms/libraries or else it kept throwing the libs out of said forms. Then I got a bundle of pld files and the most important libraries unchanged, with no mention of any problem in the assistants log. Needless to say my forms still get those procedure lack errors.
    I'm pretty sure I can somehow handle correcting the forms if the libraries were ok, but I just can't cope with those problems:
    -what to do about system view selects in triggers and library procedures? The compiler just treats them as unknown identifiers. I had the same problem elsewhere and it was about privileges, but this time I can't identify the user from whom those privs are read (in fact, isn't it whoever is using the form at the time?) so far I've noticed it try to use dba_users and dba_roles
    -what to do to correct a library (which can have dependencies on other libraries) to be compatible or at least compile'able with the new Forms Builder without spending a year on it all?
    I've tried applying changes mentionned in the assistants log (like changing RUN_PRODUCT calls to RP2RRO.RP2RRO_RUN_PRODUCT), but it didn't do any good

    Well for me the forms were ok to open with 11g, just had to correct differences and recompile to run.
    That there script is a ton of help!..well you forgot to mention the Output_File parameter, but I could find that myself now that I knew what to look at. Now if I could also set it not to produce .err files when everything went fine and to set the output names so that the old compiled forms get overwritten..
    the SRW.* calls turned out to be things used in Reports, so it was hopeless to compile in forms..but also not needed
    as for ENABLE_ITEM and DISABLE_ITEM I found these to use as their definitions in a library, that proved sufficient.
    procedure enable_item
    ( p_menuName in varchar2
    , p_menuItemName in varchar2
    ) is
    v_menuItem menuitem;
    begin
    v_menuItem := find_menu_item(p_menuName||'.'||
    p_menuItemName);
    if (not id_null(v_menuItem))
    and (get_menu_item_property(v_menuItem,visible) = 'TRUE')
    then
    set_menu_item_property(v_menuItem, enabled, property_true);
    end if;
    end;
    procedure disable_item
    ( p_menuName in varchar2
    , p_menuItemName in varchar2
    ) is
    v_menuItem menuitem;
    begin
    v_menuItem := find_menu_item(p_menuName||'.'||
    p_menuItemName);
    if (not id_null(v_menuItem))
    and (get_menu_item_property(v_menuItem,visible) = 'TRUE')
    then
    set_menu_item_property(v_menuItem, enabled, property_false);
    end if;
    end;Some forms still playing with me, but the compilation issues there don't seem to be connected with this topic..and now I got issues with reports >.< but that requires a topic elsewhere. Thanks all!

  • Desktop Integration 11g - problem with Office 2007

    Hi
    I'm trying to install DI 11g (64b) on an computer with windows 7 64b and Office 2007. The installation goes without problems, but in all office programs it doenst appear the Oracle panel.
    When i went to the suppllements panel of any office program i see that appears Oracle Microsoft Office integration but it is desactivated. I try to activate it but it gives the message: Not loaded. A runtime error occured during the load of the COM supplement.
    I tryed reinstalling several times (cleaning the registry in the process) and tryied to activate the instruaction: VSTO_SUPPRESSDISPLAYALERTS=0 (via command console) to try to see what is the error behind the problem (the runtime error), but it didnt work.
    Has anyone encountered the same problem?
    Is there any requirements that i have to install before installing DI?
    Thx for the Atention
    Sérgio P.

    Hi
    1. OPEN any MS-Office WORD
    2. CLICK Office icon (top left corner)
    3. CLICK Word Options (bottom)
    4. NAVIGATE to Add-ins option
    5. SELECT " Disabled Items" in Manage drop down (bottom)
    6. CLICK GO
    7. SELECT Oracle UCM Microsoft Office Integration
    8. CLICK Enable
    9. CLICK OK & APPLY
    10. CLOSE Word document
    11. REOPEN MS-Office Word
    12. VERIFY Oracle UCM tab is available
    Thanks
    Srinath

  • Generate sample CFC Service for Oracle 11g problem

    Hello,
       i am facing problem with Generating cfc from RDS datasource for oracle database 11g , i can borows the tables and fields
    in the RDS Dataview but i cant Generate the CFC using the option of Generate from RDS datasoures , if i chose it it takes long time
    and the flash builder is frazed and not responding if i try to select the table wich i want to create that CFC for . i have the correct
    Oracle jdbc driver for that database version and also if i generate from template and try to create the return datatype it dosent
    give me the correct datatype of the oracle table .. please help
    thanks

    The main problem that i am not able to select the table from the table lists to start generate the CFC
    No there is no database objects in oracle starts with numbers , but most of thim having the ($) charactier in there names , i am not getting the correct datatypes , the num
    bers datatype in oracle is presenting with Object datatype in flex .
    i mean if you have a field with Number(6.2) in oracle the flash builder use Object datatype
    and i am using the latest nightbuild of flash builder do i have to download something else ?

  • Opening fmb (11g) - problem sending the command

    Hello everyone,
    I have installed Forms Builder 11g (11.1.2.0.0) on my Windows 7 32-bit machine.
    My problem is: when double-clicking the .fmb file (without opening the Forms builder first) the Forms Builder opens but I receive the error "there was a problem sending the command to the program" and the form does not get loaded. The second time I double-click the .fmb file it gets loaded because I already have the builder opened.
    Has anyone faced the same problem?
    Thanks in advance.

    Do you get the message if you open Firefox from the Start Menu or other shortcut?
    Do you get the message if Firefox is already running when you click on this shortcut?

  • 11g Problem

    Hi all,
    my Linux Red Hat 5 server has 11g installed into it. Now when i want to access that 11g user interface (sql deveoper) from a windows client i am thorwn an error saying-
    Network Access Message: The page cannot be displayed
    Technical Information (for Support personnel)
    Error Code: 502 Proxy Error. The specified Secure Sockets Layer (SSL) port is not allowed. ISA Server is not configured to allow SSL requests from this port. Most Web browsers use port 443 for SSL requests. (12204)
    IP Address: xxxx
    Now what is more peculiar that i was able to access the same a few days back. But suddenly what happened, i have no idea....
    Can anyone pls hep me in resolving the problem??
    Thanks in advance....

    Hi fge, thanks for your reply... let me tell you, the same 11g UI can be accessed from other machines without any problem. If there were a firewall issue on RH there those client would not have access to the same UI. And no, nothing is running on that port.... Any more idea fge??
    Thanks...
    Edited by: user8718763 on 2010/02/03 2:17 AM

  • Union report in obiee 11g problem

    HI,
        I build union report in obiee 11g.In that report i have one column i.e Financial month.I have excluded Financial month column in table view.
        Now my requirement is I have to show results based Financial month at dashboard.For example if i select particular month in dashboard prompt,that month data has to reflect on dashboard.
        For getting results I created one dashboard prompt i.e Financial month and kept 'is prompted' at report level.But am not getting results means if i select any value from Financial month prompt then the report on         dashboard will not reflect.Please help me how to get data based on Financial month.
    Regards,
    Kumar.

    Hi,
    you said about writing query in DB.......whether U meant of trying checking the query in toad..or something else..........
    Since im giving only one join from dim to fact in the physical diagram........
    But more than one join exist between those dim and fact, but im giving only one join mainly the primary key column of the dimension table to the fact table....Whether i need to give all the joins that exist(even if it has 2 or 3 joins between those fact and dim) tables....
    If i give count distinct means it is giving count for every nation as 1....like i mentioned below
    NATIONALITY<----------------------------------------------------->NATION COUNT
    INDIA---------------------------------------------------------------------1
    AUS------------------------------------------------------------------------1
    CAN------------------------------------------------------------------------1
    Since you said to check about depts of the particular column....i couldn't able to understand about "depts" that you meant????
    Whether i made any logical mistake...........
    thanks,
    Harry...
    Edited by: HariPrasad on Oct 10, 2010 9:55 PM

  • OWB 11g Problem in running Process flow

    I’ve build a process flow as described in “Getting Started with Oracle Warehouse Builder 11g”. But if I run the process flow I get a warning message “You have to deploy this object before running” followed by the error RTC-5170: The selected objects do not require deployment as they are all up to date in the Control Center.
    Therefore I’m not able to run the process flow. What’s wrong? It looks so easy in Getting Started but it doesn’t work.
    I’ve found two threads regarding this error from last year in this forum. But there is no solution for OWB 11g.
    Has anyone an advice for me?

    I've successfully installed OWF as described in Installation guide (all components are on the sam server).
    But when I deploy a workflow in OWB I get some errors. In the job details
    I find ORA-00942 and RPE-02053. It seems that the workflow repository is missing.
    Are there additional steps for creating a workflow repository?
    Or what is wrong? All installation logs (wf.log and workflow.log) are without errors and with success messages.
    Any idea?

Maybe you are looking for

  • Uninstalling reader 9.1.3 failure;  installation failure reader 10.1.1with unable to contact tracker

    I would like to update to adobe reader 10.1.1 and when I attempted download/install with Internet Explorer it produced:  unable to contact trackers.  The it opened another web page and produced: Adobe Reader did not install successfully You can troub

  • My plugin does not appear on MacOS

    I developped a plugin for adobe after effects 6.5 and 7.0. I compiled and successfully runned it on windows XP. I want to develop the Mac OS X version. I use xCode 3, I changed the template of CS3 sdk to fit 6.5. I succeded to compile... but I had th

  • Why I won't be upgrading to Creator 2

    I used the Creator 2 Wizard to import my App from Creator 2004. No errors were reported. However it seems impossible to modify any data tables created with the earlier version. They lose the database bindings and any attempt to re-bind to the databas

  • DPM 2012 R2 UR4 Console Constantly Crashing

    I have a case open with Microsoft regarding this and despite working on it for a week straight, they haven't been able to figure out the problem.  I'm in the process of escalating it, but in the meantime I thought I'd see if anyone can help point us

  • PCI Device error on bootup/ and startup

    I have a Toshiba Satellite U405D-S2850 running on Windows Vista Home premium; 32-bit.  Everytime I turn on my laptop on bootup I hear two VERY loud beeping sounds and a black screen appears which shows the following text: Phoenix Trusted (tm) NB Copy