EJB Issue with return empty children in join fetch query

I'm a newbie and still trying to learn all of the facets of EJB 3.0 (and other backend capabilities) however could not find this issue anywhere resolved.
I have a recursive table which has a 0,1-n relationship with itself. In this case, I want to query for all objects and fetch the resulting children.
To do this I have written the following query:
select o from Node o inner join fetch o.childrenNodeList order by o.nodeorder
If my database has the following entries:
Parent
Child
Grandchild
The above query will get all 3 and allow me to access the list of children through getChildrenNodeList, however, for Grandchild this returns "An attempt was made to traverse a relationship using indirection that had a null Session...." for Parent and Child however it works like it should and gets the fetched rows.
Is there a way for me to either:
1. Modify the query so that the getChildrenNodeList will return a 0 sized array (so I can test for no children)
2. Modify the getter such that I can check that the parent really has no children and not some issue with the query
Thanks for any help,
Kris

fixed

Similar Messages

  • Any known issues with SQL DB Link Synonyms joining on encrypted columns

    Are there any known issues with accessing encrypted columns via a database link that is masked by a synonym?
    We are experiencing unexpected results when the encrypted column is anti-joined through a not exists, to a local encrypted column of the same datatype The encrypted columns are person ids. If the expected person id is hard coded, the results return correctly. The local database is 10.2.0.4.0 and the link is to a 10.2.0.3.0 RAC.
    Both enrollments and person_ids, below, are synonyms to the linked tables.
    ... From table_1 d
    where ...
    AND NOT EXISTS (SELECT 1
    FROM enrollments x,
    person_ids p
    WHERE x.person_demo = p.person_demo
    AND x.rept_inst = d.rept_inst
    AND x.demo_time_frame = d.term_deg_grant
    AND p.person_id_encrypted = '999999999')
    vs.
    ... From table_1 d
    where ...
    AND NOT EXISTS (SELECT 1
    FROM enrollments x,
    person_ids p
    WHERE x.person_demo = p.person_demo
    AND x.rept_inst = d.rept_inst
    AND x.demo_time_frame = d.term_deg_grant
    AND p.person_id_encrypted = d.person_id_encrypted)

    milazzo74 wrote:
    I am having the same problem...
    http://www.milazzo.com.br/teste/projetos.php
    It works fine in Firefox but loads forever in explorer 8...
    The cause of the problem is not the same.
    In your case it takes forever to load the thumbnails from flickr.com; the SpryDataSets without the loading of the thumbnails works as expected.
    Remember that ALL of the thumbnails for each 60 odd projects are downloaded from flickr, that is about 1800 thumbnails.
    Gramps

  • Issue with Return Delivery for movement type 262

    Hi,
    I have got a strange issue, the user is trying to do a MIGO Return Delivery for a material document using movement type 262, this he claims has been doing it for many materials. However when i go to the MKPF table i see the transaction Code field to be MIGO_GI for all the material documents for which he claims to have done return delivery. But under this transaction code we have only 4 options - Display, Issue, Cancel and Remove from storage.
    Now when he tries to do the return delivery for movement type 262 he get an error message "Check table T156N: entry RL 262  does not exist" , but this has been very well maintained in the table.
    Can you please let me know -
    If it is possible to do a return delivery for a movement type 262?
    If yes how to address the above error encountered.
    Thanks in advance
    Sachin

    Hi Sachin,
    If you think of return delivery to vendor with or w/o PO reference you can use movement types 161, 122, 124 as default settings.
    Movement type 261 means withdrawal against production order and its reverse is MVT 262. The latter can be used e.g. via MB1A (or you can make storno of a confirmation by 261).
    Are you sure your user is using the correct terminology ('return delivery')? Please check the material documents he/she claims to have booked as return delivery. (in MB51 you can get a list of all material movements of MVT 261 that belong to 'your user' and after that you can open the material document and check through which transaction the booking was made.)
    BR
    Csaba

  • Issues with limit/filter on outer join table in BQY

    I'm converting a series of BQY's from Brio 6.6 to Hyperion 9.3. I have some questions about the "use ODBC outer join syntax on limits" option in the OCE. I sort of understand this option's purpose, but I don't completely understand the SQL I'm seeing. For example Brio 6.6 is generating the following SQL statement:
    SELECT * FROM tblA AL1 LEFT OUTER JOIN tblB AL38 ON (AL38.ParentID=AL1.ChildID AND
    AL38.Data='SomeData') WHERE ((NOT AL38.Action IS NULL))
    Now, Hyperion 9.3 generated the SQL statement as follows:
    SELECT * FROM tblA AL1 LEFT OUTER JOIN tblB AL38 ON (AL38.ParentID=AL1.ChildID AND
    AL38.Data='SomeData') AND (NOT AL38.Response IS NULL))
    My questions are:
    1) Why isn't the "NOT AL38.Action IS NULL" statement included in the outer join in Brio? My limited understanding of the "use ODBC outer join syntax on limits" seems to indicate that it should end up there. I want the SQL to look like this, but I don't know why Brio generates this SQL.
    2) How can I get Hyperion to generate the same SQL as Brio? And still use the OCE with "use ODBC outer join syntax on limits" selected?

    Setting the Cardinality of Department > Employee role to OptionalOne
    gives rise to cartesian join (which is a bigger issue).
    Therefore, the Cardinality of Department > Employee role should remain as
    OptionalMany (default).
    This means, the outer join problem still remains unsolved. I have, therefore,
    unmarked the above answer by me.
    The question is - why has Report Builder been designed in such a way that the primary entity is always the child entity when attributes are selected from both parent and child entities?
    Most people desire that all the rows of the parent entity be fetched irrespective of whether there are corresponding rows in the child entity or not. Report Builder tool should not dictate what the user wants to get, meaning it is not right to assume
    that the focus of the report is Employee when attributes are selected from both Department and Employee. Report Builder should not make the child entity (i.e., Employee) as the primary entity when the user selects attributes from the child entity after
    having selected attributes from the parent entity.
    I am sorry to say that clients may not accept the Report Builder tool as this does not fetch the records as desired.
    I hope there is someone who can suggest how the outer join problem can be solved by just tweaking the properties of the report model (SMDL).
    Besides, the end users are business users and are not tech savvy. They are not expected to modify queries. They would simply drag and drop attributes from entities to create adhoc reports.

  • Issue with using Multiple Tables in Join

    Post Author: dwessell
    CA Forum: .NET
    Hi, I'm using the Basic version of Crystal Reports that shipped with Visual Studio 2k5.I'm doing a report with three tables, CQ_HEADER, SO_HEADER and SALESPERSON. Both the CQ_HEADER and the SO_HEADER tables link to the SALESPERSON table via a SPN_AUTO_KEY field. However, I always receive duplicates in my result set, due to the joins made. Here's the query that's produced by CR.  SELECT "CQ_HEADER"."CQ_NUMBER", "CQ_HEADER"."ENTRY_DATE", "CQ_HEADER"."TOTAL_PRICE", "SALESPERSON"."SALESPERSON_NAME", "SO_HEADER"."ENTRY_DATE", "SO_HEADER"."TOTAL_PRICE" FROM   "CQ_HEADER" "CQ_HEADER" INNER JOIN ("SO_HEADER" "SO_HEADER" INNER JOIN "SALESPERSON" "SALESPERSON" ON "SO_HEADER"."SPN_AUTO_KEY"="SALESPERSON"."SPN_AUTO_KEY") ON "CQ_HEADER"."SPN_AUTO_KEY"="SALESPERSON"."SPN_AUTO_KEY" WHERE  ("CQ_HEADER"."ENTRY_DATE">={ts '2007-12-01 00:00:00'} AND "CQ_HEADER"."ENTRY_DATE"<{ts '2007-12-18 00:00:00'}) AND ("SO_HEADER"."ENTRY_DATE">={ts '2007-12-01 00:00:00'} AND "SO_HEADER"."ENTRY_DATE"<{ts '2007-12-18 00:00:00'}) ORDER BY "SALESPERSON"."SALESPERSON_NAME" There is no link between the SO_HEADER and the CQ_HEADER. Can anyone make a suggestion as to how I could go about structuring this such that it doesn't return duplicate values? ThanksDavid        

    Post Author: dwessell
    CA Forum: .NET
    Addendum: I've partially been able to solve it.. The information that I'm after is: Salesperson     # of Quotes   # of Sales    #Total Sales (Sum(Total_Price))  #Total Quoted Salesperson is what I group after, and I was able to get correct numbers for # of Quotes and # of sales by changing COUNT to DISTINCT COUNT. However, for the summations I'm still getting duplicate rows. ThanksDavid    

  • Issue with Returns created using BAPI_CUSTOMERETURN_CREATE

    I have been able to create customer returns using BAPI_CUSTOMERETURN_CREATE in a wed-dynpro java application. However, the issue is when I review the order in VA02 or VA03, the order quantity field is not populated. I input the order quantity in 'TARGET_QTY' field of the RETURN_ITEMS_IN table.
    Is the order quantity supposed to go in another field ? Dont see any fields like REQ_QTY in the RETURN_ITEMS_IN table.
    Thanks in advance for your response.

    Hi,
    I think that qty should be in RETURN_SCHEDULES_IN-REQ_QTY
    Plus ITM_NUMBER, SCHED_LINE, REQ_DATE have to be filled for schedule line and also RETURN_SCHEDULES_INX for corresponding fields.
    Br,
    Einar

  • Issue with how to compute additional column in query output.

    Hello PL/SQL Gurus/experts,
    I am using Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production version
    Currently i have the data in the following way -
    drop table T2;
    create table T2(Year, MastTot, BechTot, Tot) as select
    '2008', '20000', '450000', '470000' from dual union all select
    '2008', '50000', '324000', '374000'  from DUAL union all select
    '2009', '25000', '450000', '475000'  from dual union all select
    '2009', '250000', '324000', '574000' from DUAL union all select
    '2010', '120000', '450000', '570000' from dual union all select
    '2010', '52000', '324000', '376000'  from DUAL union all select
    '2011', '220000', '450000', '670000' from dual union all select
    '2011', '52000', '324000', '376000'  from DUAL ;I want the data to be presented in the following way (output)-
    Year     MastTot     %Change     BechTot     %Change     Tot     %Change     %Total
    2009     275000     292.86     774000     0     1049000     24.29     27
    2010     172000     -37.45     774000     0     946000     -9.82     24.35
    2011     272000     58.14     774000     0     1046000     10.57     26.92
    Total     789000     313.54     3096000     0     3885000     25.04     78.28I am using the following sql query -
    select decode(grouping(Year), 0, Year, 'Total') Year,
           To_Char(sum(MastTot), '999,999,999,999,999,999,999.99')  "MastTot",
           To_Char(sum(BechTot), '999,999,999,999,999,999,999.99')  "BechTot",
           To_Char(sum(Tot), '999,999,999,999,999,999,999.99')  "Tot",
           round((sum(Tot)/nullif(max(total_amount),0)) * 100, 2) "%Total"
      From
    select Year,
           sum(MastTot) MastTot,
           sum(BechTot) BechTot,
           sum(Tot) Tot,
           SUM(Tot) over() total_amount
      From t2
    group by Year,Tot
    where Year>'2008'
    group by grouping sets((Year),())
    order by YearBut i am not able to fetch the %Change column. Kindly help me with that.
    All efforts and help in this regard is highly appericated and i will be thankful to you ...

    Hello Purvesh K/jeneesh
    If data turn out to the be following -
    drop table T2;
    create table T2(Year, MastTot, BechTot, Tot) as select
    '2008', '20000', '450000', '470000' from dual union all select
    '2008', '50000', '324000', '374000'  from DUAL union all select
    '2009', '25000', '450000', '475000'  from dual union all select
    '2009', '250000', '324000', '574000' from DUAL union all select
    '2010', '120000', '0', '570000' from dual union all select
    '2010', '52000', '0', '376000'  from DUAL union all select
    '2011', '220000', '450000', '670000' from dual union all select
    '2011', '52000', '324000', '376000'  from DUAL ;and if i use the following sql -
    select year, sum(masttot), sum(change), sum(bechtot), sum(b_change), sum(tot), sum(t_change)
      from (
              select lead(year) over(order by year) year,
                     lead(masttot) over (order by year) masttot,
                     round((lead(masttot) over (order by year) - masttot)/nullif(masttot,0), 4) * 100 Change,
                     lead(bechtot) over (order by year) bechtot,
                     round((lead(bechtot) over (order by year) - bechtot)/nullif(bechtot,0), 4) * 100 B_Change,
                     lead(tot) over (order by year) tot,
                     round((lead(tot) over (order by year) - tot)/nullif(tot,0), 4) T_Change
                from (
                      select year, sum(masttot) masttot, sum(bechtot) bechtot, sum(tot) tot
                        from t2
                       group by year
                       order by year
           ) a
    where year is not null
    group by yearor
    with t
    as (
    select year,masttot,lag(masttot) over(order by year) prevm,
    BechTot,lag(BechTot) over(order by year) prevb,
    tot,lag(Tot) over(order by year) prevt,
    sum(tot) over(order by null) sm_t
    from(
    select Year,
    sum(MastTot) MastTot,
    sum(BechTot) BechTot,
    sum(Tot) Tot
    From t2
    group by Year
    select year,sum(masttot) masttot,
    sum(((masttot-prevm)/nullif(prevm,0))*100) Perc_m,
    sum(BechTot) bechtot,
    sum(((BechTot-prevb)/nullif(prevb,0))*100) Perc_b,
    sum(tot) tot,sum(((tot-prevt)/nullif(prevt,0))*100) Perc_t,
    sum((tot/nullif(sm_t,0))*100)  perc_total
    from t
    where year > 2008
    group by rollup(year);then it is not giving the correct result as in case of 2010 to 2011 in %B (Bechelor) total there is 100% change as from in year 2010 sum(bechtot)=0 and in year 2011 it is 774000.
    Whats wrong with this ..........
    Thanks in advance for your help/effort and valuable
    Edited by: user555994 on Oct 15, 2012 5:24 AM

  • Hgrid - Issue with an unusual scenario

    Hi All,
    I've a Hgrid component with two levels, one VO master and one VO details and a View Link that is created in runtime to join them. In my page, this Hgrid shows the results based on parameters from a search region (I'm not using query region since it doesn't fit with the requirements). Basically what I need now is to filter the details VO based on extra parameters passed in runtime. In order to meet this requirement I've tried to use createViewLinkBetweenViewObjects method as the example below:
    am.createViewLinkBetweenViewObjects("AnalyticShipLnToAllocsGridVL",
    "AnalyticAllocsGridVO",
    voShipLineGrid, shipLnLinkAttrs,
    voAllocsGrid, allocsLinkAttrs,
    "ITEM_CODE = :1 AND ORGANIZATION_ID = " + pOrganizationId); // VL attribute plus extra criteria
    I'm currently facing two issues with the above code:
    1. My query is grouped by ITEM_CODE and consequently I'm not selecting the ORGANIZATION_ID attribute, even though it is defined in the View I'm selecting. After executing the application with the above code, the following error comes out:
    Statement:
    SELECT * FROM (SELECT component_type,
    component_reference,
    item_code,
    SUM(estimated_amt) estimated_amt,
    SUM(actual_amt) actual_amt
    FROM inl_dashboard_overall_v
    GROUP BY item_code, component_type, component_reference) QRSLT
    WHERE ITEM_CODE = :1 AND ORGANIZATION_ID = 9246
    Error: java.sql.SQLException: ORA-00904: "ORGANIZATION_ID": invalid identifier
    2. To solve the first issue, I tried to use the VO method setNestedSelectForFullSql(false), but if I do so, the WHERE clause is built after the Group By and it results in a different error:
    Statement:
    SELECT component_type,
    component_reference,
    item_code,
    SUM(estimated_amt) estimated_amt,
    SUM(actual_amt) actual_amt
    FROM inl_dashboard_overall_v
    GROUP BY item_code, component_type, component_reference
    WHERE ITEM_CODE = :1 AND ORGANIZATION_ID = 9246
    Error: java.sql.SQLException: ORA-00933: SQL command not properly ended
    Can anybody please help me on how to solve and deal with such scenario?
    I'd appreciate any suggestion, idea or comments on this.
    Thanks and Regards,
    Eduardo

    Hi Kumar,
    Thanks for your answer but the "9246" in the organization_id is passed in runtime.. How can I handle this since this VO is the Detail in a View Link??
    And If I do this:
    SELECT component_type,
    component_reference,
    item_code,
    SUM(estimated_amt) estimated_amt,
    SUM(actual_amt) actual_amt
    FROM inl_dashboard_overall_v
    WHERE ITEM_CODE = :1 AND ORGANIZATION_ID = :2
    GROUP BY item_code, component_type, component_reference
    How can I use the View Link to set the binding parameter :2 ??
    Thanks,
    Eduardo

  • Having issues with localStorage

    Hi Guys,
    Apparently we are having issues with returning saved data from localStorage. Currently, we are able to store some data in the localStorage.
    However, when we close out of the DPS app and restart it, localStorage seems not to be loading the saved data/entires.
    We currently have the onAppear event in our code, to trigger storing and loading of localStorage data... maybe this event is causing some sort of issue with localStorage? Any suggestions?
    Does anyone know which events are currently working with localStorage without issues?
    It would be great if someone could provide a small working localStorage snippet as an example, this would really help us.
    Many thanks!
    Juan

    You can also use Dropbox. 2GB free. Put files in the Public folder and you can send them links of the files instead.
    You can use my referral link http://db.tt/MXNpy62 to create an account.

  • Performance issues with respect scheme registration,select & insert query

    I am facing performance issues with respect to schema registration,Select & insert query towards 10.2.0.3 version.It is taking around 45 minutes to register schema and it is taking around 5 min to insert a single document into xml db where as it was taking less than min to insert a single document into xml db of 9.2.0.6 version.Would like to know the issue and solution to resolve this issue.Please help me out on this as it is very urgent for me

    Since it appears that this is an XML DB specific question, you're probably better off posting in the XML DB. The folks over there have much more experience with the ins and outs of that particular product.
    Justin

  • PDF document inline view  Issue with Chrome

    I am facing an issue with the below procedure which should fetch and display PDF document in the browser.
    It displays properly on IE 9. But no luck in Chrome. Shows junk.
    What am I missing? Meanwhile report BLOB column link inline download is working fine with Chrome. I use this proc to popup a new window and display PDF in it.
    Any help is appreciated.
    declare
    v_mime VARCHAR2 (48);
    v_length NUMBER;
    v_file_name VARCHAR2 (2000);
    lob_loc BLOB;
    BEGIN
    SELECT mime_type, content, file_name, DBMS_LOB.getlength (content)
    INTO v_mime, lob_loc, v_file_name, v_length
    FROM lease_deeds
    WHERE lease_ID = :P56_LEASE_ID;
    OWA_UTIL.mime_header ('application/pdf', FALSE);
    HTP.p ('Content-length: ' || v_length);
    OWA_UTIL.http_header_close;
    WPG_DOCLOAD.download_file (lob_loc);
    END;
    -------------

    Has anybody experienced this issue and found a solution yet?

  • Comcast Issues with Mountain Lion Mail Client (v.6)

    I am having same issues receiving my e mail in Mail in my comcast account.  I did have google but deleted the e mail and even my entire google account to hopefully resolve problem.  Problem remains.  I have tried so many things and am waiting to hear from a tech.  Was on phone with Apple for hours on Sat. morning but no resolution yet.  I am wondering if it is an i cloud issue. 
    <Edited by Host>

    Hi,
    This thread was created by someone who had issues with their Google Mail not being fetched by the Mail app in Mountain Lion.
    Their presumption was that it was the Mail App.
    It turns out Google have had a problem and it not only effects Macs using Mountain Lion.
    This Google Issue should in no way effect the fetching or sending of Mail via your ISP (Comcast) Login.
    I don't see any info in your post that links your Comcast account to iCloud so it is difficult to follow your reasoning that iCloud is involved.
    This means you have a different issue to the Original Poster.
    Unfortunately it is not likely to get addressed here  (Broadly speaking the presumption is that a different question should have it's own thread)
    It can be difficult to judge sometimes if you have a different issue or not.
    I would suggest starting your own thread.
    8:08 PM      Tuesday; August 14, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • I have an issue with the Recycle Bin. It does not respond if I click on the Icon. I have to empty the bin via another programve an issue with the Recycle Bin. It does not respond if I click on the Icon. I have to empty the bin via another program

    I have an issue with the Recycle Bin. It does not respond if I click on the Icon. I have to empty the bin via another program

    "CCleaner" is a scam and it may well have corrupted the operating the system. Get rid of it according to the developer's instructions, then see below.
    If you don't already have a current backup, back up all data, then reinstall the OS.* You don't need to erase the startup volume, and you won't need the backup unless something goes wrong. If the system was upgraded from an older version of OS X, you may need the Apple ID and password you used.
    If you use FileVault 2, then before running the Installer you must launch Disk Utility and select the icon of the FileVault startup volume ("Macintosh HD," unless you gave it a different name.) It will be nested below another icon, usually with the same name. Click the Unlock button in the toolbar and enter your login password when prompted. Then quit Disk Utility to be returned to the main Recovery screen.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    If you installed the Java runtime distributed by Apple and still need it, you'll have to reinstall it. The same goes for Xcode. All other data will be preserved.
    *The linked support article refers to OS X 10.10 ("Yosemite"), but the procedure is the same for OS X 10.7 ("Lion") and later.

  • Strange issue with rights of account, used by SSIS (Foreach Loop Container does not return file names without Admin rights on server)

    Hello everyone.
    Faced very strange issue with account, which is used to run SSIS package.
    The specific package uses Foreach Loop Container to retrieve file names within the specified folder, and put them into Import file task.
    The package is set up to run under specific service account. This service account is given all permissions (Full control) to the folder where source files reside.
    So the issue is: SSIS package fails to execute this task (Foreach Loop Container and then Import), and shows that no files are found in the directory (although files ARE there).
    Once we're adding the service account into local Administrators group on the SQL Server, it works! Removing - does not work again. We cannot leave the service account as SQL server's admin as it's prohibited by our IT policies, and is just a bad practice.
    Any ideas, please? 
    MCP

    Here's the real log output:
    Date 16.04.2014 12:47:09
    Log Job History (RU-BW: Update)
    Step ID 1
    Server Server
    Job Name RU-BW: Update
    Step Name bw_import_cust_master_data
    Duration 00:00:02
    Sql Severity 0
    Sql Message ID 0
    Operator Emailed
    Operator Net sent
    Operator Paged
    Retries Attempted 0
    Message
    Executed as user: service_account Microsoft (R) SQL Server Execute Package Utility  Version 10.50.4286.0 for 64-bit  Copyright (C) Microsoft Corporation 2010. All rights reserved.    Started:  12:47:09  Error: 2014-04-16 12:47:11.45
        Code: 0xC0202070     Source: bw_import_cust_master_data Connection manager "Input"     Description: The file name property is not valid. The file name is a device or contains invalid characters.  End Error  Error:
    2014-04-16 12:47:11.47     Code: 0xC0202070     Source: bw_import_cust_master_data Connection manager "Input"     Description: The file name property is not valid. The file name is a device or contains invalid characters.  End
    Error  Error: 2014-04-16 12:47:11.48     Code: 0xC0202070     Source: bw_import_cust_master_data Connection manager "Input"     Description: The file name property is not valid. The file name is a device or contains invalid
    characters.  End Error  Error: 2014-04-16 12:47:11.48     Code: 0xC020207E     Source: Import file Flat File Source [1]     Description: The file name is not valid. The file name is a device or contains invalid characters.
     End Error  Error: 2014-04-16 12:47:11.48     Code: 0xC004701A     Source: Import file SSIS.Pipeline     Description: component "Flat File Source" (1) failed the pre-execute phase and returned error code 0xC020207E.
     End Error  DTExec: The package execution returned DTSER_FAILURE (1).  Started:  12:47:09  Finished: 12:47:11  Elapsed:  2.324 seconds.  The package execution failed.  The step failed.
    MCP

  • Unable to install IDM 11.1.1.6.0..Issue with  ASInstance ..not empty....

    Hello IDM experts, please help me. I have Oracle Linux 5.7 64 bit installed on Oracle Virtual box 4.1.10.
    I have valid IP address and Domain name and I am able to ping both.
    I have successfully installed database 11GR2 (11.2.0.1.0) for 64 bit linux. All issues with OS packages have been resolved. Nothing is ignored. All parameter setting has been followed as per the installation guide by Oracle.
    Installed JDK 1.7_03 version linux 64 bit ( I selected this as per the certification matrix ).
    Installed WLS 10.3.6 for 64 bit linux
    Ran RCU 11.1.1.6.0 and created all required schemas.
    Downloaded IDM 11.1.1.6.0 for linux 64 bit.
    While installing and configuring,
    I have looked into all other postings related to this error and I did not find anything missing in my configuration.
    Really appreciate your great help in resolving this issue. It is show stopper for me now.
    While runInstaller executing ASInstance step, I get in the log : "Error creating ASInstance asinst_1 "
    Caused by: java.lang.SecurityException: Can not initialize cryptographic mechanism
    at javax.crypto.JceSecurity.<clinit>(JceSecurity.java:86)
    ... 31 more
    Caused by: java.lang.SecurityException: The jurisdiction policy files are not signed by a trusted signer!
    at javax.crypto.JarVerifier.verifyPolicySigned(JarVerifier.java:289)
    Error creating ASInstance asinst_1.Cause:
    An internal operation has failed: java.lang.ExceptionInInitializerError
    Action:
    If I retry, I get error saying "Oracle instance not empty ... ...."
    Greatly appreciate your valuable suggestions.
    Edited by: 923360 on Mar 26, 2012 7:16 AM
    Edited by: 923360 on Nov 11, 2012 6:19 AM

    Hi Please find the steps to resolve this issue here. I resolved this completely.
    http://obieelive.wordpress.com/2012/05/25/obiee-11g-installation-failed-at-configuration-step-13-of-14/
    Regards,
    Sandep

Maybe you are looking for