Error creating related syncBOs

Hello,
we are trying to create two related syncbo's.
When the related syncbo exists (has been synchonized),
the creation of the relating syncBO works fine.
But when we create a new related syncBO and a new relating one, the synchronization fails with:
"Sync key xxxxxxx for related sync bo YYYYYY missing"
We have checked that the order of the SyncBo defined in
the metadata (meRepMeta.xml) is right: The related syncBO
is on top of the relating one.
We are using MI 2.5 SP14.
Has anyone found this error?
Thanks in advance and best regards,
Angel

hello angel,
is this client specific error?
are you getting any exceptions too?
if you are creating both of the syncbos
(the related and the relating syncbos),
then you have to consider your syncbo's
upload order. the related syncbo instance
(the instance being referenced) should be
uploaded first, prior to the relating syncbo
(the instance referencing the other) upload.
hope this helps.
regards
jg

Similar Messages

  • Error creating work order for new notification - Related SyncBO not present

    Hi,
    We are working with MAM3.0 standard application.
    We age getting an  error while creating work order for a NEW notification.
    In this scenario both notification and corresponding work order are also not created.
    Here is the error for MAM30001 Sync BO in MEREP_MONI:_
    Reading inbox record (mobile ID=0000001444, seq, no.=29, rcd_cntr=1, data=TOP0001000000
    External format successfully converted to internal format: ldata=TOP0001000000000000000
    Related SyncBO MAM30_010 with Sync key 0000000028 is not present on the device.
    Return code 1 (DOWNLOADER)                                                   
       Here is the error for MAM30010 Sync BO in MEREP_MONI:_
    Return code from RFC BAPI Wrapper call:Order NEW does not exist
    Return code from RFC BAPI Wrapper call:The order/network type  is not defined
    Return code from RFC BAPI Wrapper call:Order NEW does not exist
    Return code 0 (UPDATE MEREP_506-STATUS)                                      
    Can any body please tell me what is the sollutions for this error
    your help in this regard is appreciable.
    Regards,
    Murthy

    Hi Murthy,
    II have no idea what patch level you are on. A while back we had similar issues with some clients. There are several patches around that area available. Perhaps you should have a look into patch 959732.
    Hope that helps.
    Regards,
    Oliver

  • Error while creating Relational DB connection in webanalysis

    Hi,
    I am facing issue while creating Relational DB connection in webanalysis. It is giving test connection failed error.
    DataBase connection string is correct :- jdbc:oracle:thin:@ugdwpi1.cos.abc.com:1521:GDWDB
    where Port no.- 1521 , Server Name - ugdwpi1.cos.abc.com
    JDBC Username & JDBC Password are also correct.
    CLASSPATH is - E:\oracle\product\10.2.0\client_1\jdbc\lib\ojdbc14.jar
    JDBC Driver is : oracle.jdbc.driver.OracleDriver
    Please tell me where am i wrong. CLASSPATH is correct or not? or there is an issue with JDBC Driver.
    Thanks
    Edited by: user649490 on Jan 28, 2009 10:24 PM

    Hi Mohit,
    Thanks for ur response and it helps me to explore more. But, still after adding the oracle jar file in E:\Hyperion\deployments\Tomcat5\WebAnalysis\webapps\WebAnalysis\WEB-INF\lib(this path does reside on my remote), it giving the same error.
    I think following details will help u to judge the exact scenario :
    DataBase connection string is correct :- jdbc:oracle:thin:@ugdwpi1.cos.abc.com:1521:GDWDB
    where Port no.- *1521* , Server Name - ugdwpi1.cos.abc.com
    JDBC Username & JDBC Password are also correct.
    CLASSPATH is - E:\oracle\product\10.2.0\client_1\jdbc\lib\ojdbc14.jar
    JDBC Driver is : oracle.jdbc.driver.OracleDriver
    TNS enrty is :
    GDWDEV =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ugdwpi1.cos.abc.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = GDWDB)
    Please suggest me, if i am wrong anywhere. Quick response is highly appreciated.
    Thanks

  • Create Relational View got error: ORA-19276: XPST0005 - XPath step specifie

    Hi expert,
    I am using Oracle 11.2.0.1.0 XML DB.
    I am successfully registered schema and generated a table DOCUMENT.
    I have succfully inserted 12 .xml files to this table.
    SQL> SELECT OBJECT_VALUE FROM document;
    OBJECT_VALUE
    <?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="http://www.accessdata.fda.gov/spl/stylesheet/spl.xsl" type="text/xsl"?>
    <document xmlns="urn:hl7-org:v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:hl7-org:v3 http://localhost:8080/home/DEV/xsd/spl.xsd">
    <id root="03d6a2cd-fdda-4fe1-865d-da0db9212f34"/>
    <code code="51725-0" codeSystem="2.16.840.1.113883.6.1" displayName="ESTABLISHMENT REGISTRATION"/>
    </component>
    </document>
    then I tried to create a create Relational View base on one inserted .xml file I got error:
    ERROR at line 3:
    ORA-19276: XPST0005 - XPath step specifies an invalid element/attribute name: (document)
    is there anyone know what was wrong?
    Thanks a lot!
    Cow
    Edited by: Cow on Feb 15, 2011 8:58 PM
    Edited by: Cow on Feb 21, 2011 6:59 AM

    These kinds of issues, you will have to solve by joining multiple resultsets or passing fragments to the next XMLTABLE statement and building redundancy via the ORDINALITY clause (which results a NUMBER datatype)
    For example
    A "transaction" can have multiple "status"ses which can have multiple "reason"s
    WITH XTABLE
    AS
      (SELECT xmltype('<TRANSACTION>
                        <PFL_ID>123456789</PFL_ID>
                        <PMI_ID>1</PMI_ID><PII_ID>1</PII_ID>
                        <ID>1</ID>
                        <INSTR_ID>MARCO_003</INSTR_ID>
                        <E_TO_E_ID>MARCO_004</E_TO_E_ID>
                        <INSTD_AMT>10</INSTD_AMT>
                        <INSTD_AMT_CCY>EUR</INSTD_AMT_CCY>
                        <STATUS>
                            <PFL_ID>123456789</PFL_ID>
                            <PMI_ID>1</PMI_ID><PII_ID>1</PII_ID>
                            <TXI_ID>1</TXI_ID>
                            <ID>1</ID>
                            <PMT_TX_STS_UTC_DT>2011-02-15</PMT_TX_STS_UTC_DT>
                               <REASON>
                                  <ID>1000</ID>
                                  <STS_RSN_PRTRY>MG001</STS_RSN_PRTRY>
                               </REASON>
                               <REASON>
                                  <ID>2000</ID>
                                  <STS_RSN_PRTRY>IS000</STS_RSN_PRTRY>
                               </REASON>
                         </STATUS>
                      </TRANSACTION>') as XMLCOLUMN
      FROM DUAL
    SELECT STS_ID             as STATUS_ID,
           STS_PFL_ID,
           STS_PMI_ID,
           STS_TXI_ID,
           RSN_ID             as REASON_ID,
           RSN_STS_RSN_PRTRY,
           RSN_XML_POS        as POSITION
    FROM  XTABLE
    ,     XMLTABLE ('/TRANSACTION/STATUS'
                    PASSING XMLCOLUMN
                    COLUMNS
                        STS_PFL_ID         NUMBER(10)    path 'PFL_ID'
                      , STS_PMI_ID         NUMBER(10)    path 'PMI_ID'
                      , STS_TXI_ID         NUMBER(10)    path 'TXI_ID'
                      , STS_ID             VARCHAR2(10)  path 'ID'
                      , XML_REASONS        XMLTYPE       path 'REASON'
                      ) sts
    ,     XMLTABLE ('/REASON'
                    PASSING sts.XML_REASONS
                    COLUMNS
                        RSN_XML_POS        FOR ORDINALITY
                      , RSN_ID             VARCHAR2(10)  path 'ID'
                      , RSN_STS_RSN_PRTRY  VARCHAR2(10)  path 'STS_RSN_PRTRY'
                      ) rsnWill give you the following output (in your case DON"T forget to buildin the namespace references)
    SQL> WITH XTABLE
      2  AS
      3   (SELECT xmltype('<TRANSACTION>
      4             <PFL_ID>123456789</PFL_ID>
      5             <PMI_ID>1</PMI_ID><PII_ID>1</PII_ID>
      6             <ID>1</ID>
      7             <INSTR_ID>MARCO_003</INSTR_ID>
      8             <E_TO_E_ID>MARCO_004</E_TO_E_ID>
      9             <INSTD_AMT>10</INSTD_AMT>
    10             <INSTD_AMT_CCY>EUR</INSTD_AMT_CCY>
    11            <STATUS>
    12              <PFL_ID>123456789</PFL_ID>
    13              <PMI_ID>1</PMI_ID><PII_ID>1</PII_ID>
    14              <TXI_ID>1</TXI_ID>
    15              <ID>1</ID>
    16              <PMT_TX_STS_UTC_DT>2011-02-15</PMT_TX_STS_UTC_DT>
    17                <REASON>
    18                  <ID>1000</ID>
    19                  <STS_RSN_PRTRY>MG001</STS_RSN_PRTRY>
    20                </REASON>
    21                <REASON>
    22                   <ID>2000</ID>
    23                   <STS_RSN_PRTRY>IS000</STS_RSN_PRTRY>
    24                </REASON>
    25              </STATUS>
    26           </TRANSACTION>') as XMLCOLUMN
    27   FROM DUAL
    28   )
    29  SELECT STS_ID             as STATUS_ID,
    30         STS_PFL_ID,
    31         STS_PMI_ID,
    32         STS_TXI_ID,
    33         RSN_ID             as REASON_ID,
    34         RSN_STS_RSN_PRTRY,
    35         RSN_XML_POS        as POSITION
    36  FROM  XTABLE
    37  ,     XMLTABLE ('/TRANSACTION/STATUS'
    38                  PASSING XMLCOLUMN
    39              COLUMNS
    40                  STS_PFL_ID         NUMBER(10)    path 'PFL_ID'
    41                , STS_PMI_ID         NUMBER(10)    path 'PMI_ID'
    42                , STS_TXI_ID         NUMBER(10)    path 'TXI_ID'
    43                , STS_ID             VARCHAR2(10)  path 'ID'
    44                , XML_REASONS        XMLTYPE       path 'REASON'
    45            ) sts
    46  ,     XMLTABLE ('/REASON'
    47                  PASSING sts.XML_REASONS
    48              COLUMNS
    49                  RSN_XML_POS        FOR ORDINALITY
    50                , RSN_ID             VARCHAR2(10)  path 'ID'
    51                , RSN_STS_RSN_PRTRY  VARCHAR2(10)  path 'STS_RSN_PRTRY'
    52            ) rsn
    53 ;
    STATUS_ID  STS_PFL_ID STS_PMI_ID STS_TXI_ID REASON_ID  RSN_STS_RS   POSITION
    1           123456789          1          1 1000       MG001               1
    1           123456789          1          1 2000       IS000               2
    2 rows selected.If I wouldn't have done that then I would have got your result which fails with your error:
    - ORA-19279 - XQuery dynamic type mismatch: expected singleton sequence - got multi-item sequence
    SQL> WITH XTABLE
      2  AS
      3   (SELECT xmltype('<TRANSACTION>
      4             <PFL_ID>123456789</PFL_ID>
      5             <PMI_ID>1</PMI_ID><PII_ID>1</PII_ID>
      6             <ID>1</ID>
      7             <INSTR_ID>MARCO_003</INSTR_ID>
      8             <E_TO_E_ID>MARCO_004</E_TO_E_ID>
      9             <INSTD_AMT>10</INSTD_AMT>
    10             <INSTD_AMT_CCY>EUR</INSTD_AMT_CCY>
    11            <STATUS>
    12              <PFL_ID>123456789</PFL_ID>
    13              <PMI_ID>1</PMI_ID><PII_ID>1</PII_ID>
    14              <TXI_ID>1</TXI_ID>
    15              <ID>1</ID>
    16              <PMT_TX_STS_UTC_DT>2011-02-15</PMT_TX_STS_UTC_DT>
    17                <REASON>
    18                  <ID>1000</ID>
    19                  <STS_RSN_PRTRY>MG001</STS_RSN_PRTRY>
    20                </REASON>
    21                <REASON>
    22                   <ID>2000</ID>
    23                   <STS_RSN_PRTRY>IS000</STS_RSN_PRTRY>
    24                </REASON>
    25              </STATUS>
    26           </TRANSACTION>') as XMLCOLUMN
    27   FROM DUAL
    28   )
    29  SELECT STS_ID             as STATUS_ID,
    30         STS_PFL_ID,
    31         STS_PMI_ID,
    32         STS_TXI_ID,
    33         RSN_ID             as REASON_ID,
    34         RSN_STS_RSN_PRTRY
    35  FROM  XTABLE
    36  ,     XMLTABLE ('/TRANSACTION/STATUS'
    37                  PASSING XMLCOLUMN
    38              COLUMNS
    39                  STS_PFL_ID         NUMBER(10)    path 'PFL_ID'
    40                , STS_PMI_ID         NUMBER(10)    path 'PMI_ID'
    41                , STS_TXI_ID         NUMBER(10)    path 'TXI_ID'
    42                , STS_ID             VARCHAR2(10)  path 'ID'
    43                , RSN_ID             VARCHAR2(10)  path 'REASON/ID'
    44                , RSN_STS_RSN_PRTRY  VARCHAR2(10)  path 'REASON/STS_RSN_PRTRY'
    45           ) rsn;
                  </REASON>
    ERROR at line 24:
    ORA-19279: XQuery dynamic type mismatch: expected singleton sequence - got
    multi-item sequenceHTH
    Edited by: Marco Gralike on Feb 16, 2011 12:12 PM

  • Error creating new user in Weblogic console using RDBMSAuthentication

    Hi,
    I have tried to configure RDBMSAuthenticator in Weblogic 8. I created related tables in the schema i.e. user_security, etc. But its still not working with my WebApp.
    Can someone please help me to configure my application with this Oracle DBMS authentication provider to login to this application...?
    1. When I am trying to use these userid/password to login to my application its not able to login getting error as:
    ####<Nov 21, 2009 11:27:52 AM GMT+05:30> <Debug> <RDBMSAuthenticator> <PDC2A-01-096> <cgServer> <ExecuteThread: '13' for queue: 'weblogic.kernel.Default'> <<anonymous>> <> <000000> <Provider: getLoginModuleConfiguration()>
    ####<Nov 21, 2009 11:27:53 AM GMT+05:30> <Debug> <RDBMSAuthenticator> <PDC2A-01-096> <cgServer> <ExecuteThread: '13' for queue: 'weblogic.kernel.Default'> <<anonymous>> <> <000000> <Authentication Failed: User "null" denied>
    ####<Nov 21, 2009 11:27:53 AM GMT+05:30> <Debug> <RDBMSAuthenticator> <PDC2A-01-096> <cgServer> <ExecuteThread: '13' for queue: 'weblogic.kernel.Default'> <<anonymous>> <> <000000> <Authentication Failed: User "null">
    I am trying to use this DBMS Authentication mechanism in my WebApp i.e. in web.xml I configured the <security-constraint> <login-config> and <security-role> i.e.
    <security-constraint>
    <display-name>ABCD web security</display-name>
    <web-resource-collection>
    <web-resource-name>portal file</web-resource-name>
    <description>Protects the ABCD enterpise portal web resources</description>
    <url-pattern>/*</url-pattern>
    <url-pattern>/index.jsp</url-pattern>
    <url-pattern>/*.do</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <description>ABCD Users</description>
    <role-name>abcduser</role-name>
    </auth-constraint>
    <user-data-constraint>
    <transport-guarantee>NONE</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>pages/login.jsp</form-login-page>
    <form-error-page>pages/error.jsp</form-error-page>
    </form-login-config>
    </login-config>
    <security-role>
    <description>ABCD User</description>
    <role-name>abcduser</role-name>
    </security-role>
    Also I have made necessary change in Weblogic.xml
    I can see the users in this table in my Weblogic console. But I cannot modify them I cant delete any user from Weblogic console, neither can i assign any gropu to them getting error as below while doing this...
    1. When trying to delete any uset getting error as:
    ####<Nov 21, 2009 11:41:50 AM GMT+05:30> <Debug> <RDBMSAuthenticator> <localhost> <cgServer> <ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'> <weblogic> <> <000000> <List of currently-available cursors: {RDBMSNameCursor201305690=[email protected]32b09}>
    ####<Nov 21, 2009 11:41:50 AM GMT+05:30> <Debug> <RDBMSAuthenticator> <localhost> <cgServer> <ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'> <weblogic> <> <000000> <delegate.close("RDBMSNameCursor201305690")>
    ####<Nov 21, 2009 11:41:56 AM GMT+05:30> <Debug> <RDBMSAuthenticator> <localhost> <cgServer> <ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'> <weblogic> <> <000000> <Removing user becuser1234>
    ####<Nov 21, 2009 11:41:57 AM GMT+05:30> <Debug> <RDBMSAuthenticator> <localhost> <cgServer> <ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'> <weblogic> <> <000000> <Caught SQLException from delegate, removing from pool and retrying
    java.sql.SQLException: Fail to convert to internal representation
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:227)
         at oracle.jdbc.driver.CharCommonAccessor.getLong(CharCommonAccessor.java:239)
         at oracle.jdbc.driver.OracleResultSetImpl.getLong(OracleResultSetImpl.java:514)
         at com.bea.p13n.security.providers.authentication.RDBMSAtnDelegate.removeUser(RDBMSAtnDelegate.java:474)
         at com.bea.p13n.security.providers.authentication.RDBMSAuthenticatorImpl$2.run(RDBMSAuthenticatorImpl.java:414)
         at com.bea.p13n.security.providers.authentication.RDBMSAuthenticatorImpl.retry(RDBMSAuthenticatorImpl.java:982)
         at com.bea.p13n.security.providers.authentication.RDBMSAuthenticatorImpl.removeUser(RDBMSAuthenticatorImpl.java:404)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at javax.management.modelmbean.RequiredModelMBean.invoke(RequiredModelMBean.java:1304)
         at weblogic.management.commo.CommoModelMBean.invoke(CommoModelMBean.java:640)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:990)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:948)
         at weblogic.management.console.utils.Security.deleteUser(Security.java:1564)
         at weblogic.management.console.actions.security.DoDeleteUserAction.perform(DoDeleteUserAction.java:153)
         at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:182)
         at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:86)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6981)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    >
    ####<Nov 21, 2009 11:42:00 AM GMT+05:30> <Debug> <RDBMSAuthenticator> <localhost> <cgServer> <ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'> <weblogic> <> <000000> <Caught SQLException from delegate, removing from pool and retrying
    java.sql.SQLException: Fail to convert to internal representation
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:227)
         at oracle.jdbc.driver.CharCommonAccessor.getLong(CharCommonAccessor.java:239)
         at oracle.jdbc.driver.OracleResultSetImpl.getLong(OracleResultSetImpl.java:514)
         at com.bea.p13n.security.providers.authentication.RDBMSAtnDelegate.removeUser(RDBMSAtnDelegate.java:474)
         at com.bea.p13n.security.providers.authentication.RDBMSAuthenticatorImpl$2.run(RDBMSAuthenticatorImpl.java:414)
         at com.bea.p13n.security.providers.authentication.RDBMSAuthenticatorImpl.retry(RDBMSAuthenticatorImpl.java:982)
         at com.bea.p13n.security.providers.authentication.RDBMSAuthenticatorImpl.removeUser(RDBMSAuthenticatorImpl.java:404)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at javax.management.modelmbean.RequiredModelMBean.invoke(RequiredModelMBean.java:1304)
         at weblogic.management.commo.CommoModelMBean.invoke(CommoModelMBean.java:640)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:990)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:948)
         at weblogic.management.console.utils.Security.deleteUser(Security.java:1564)
         at weblogic.management.console.actions.security.DoDeleteUserAction.perform(DoDeleteUserAction.java:153)
         at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:182)
         at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:86)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6981)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    Edited by: user12209056 on Nov 20, 2009 10:38 PM

    I could resolve the issue...The main points that needed to be done were
    1. Keep the 'DefaultAuthentication' to 'Optional/SUFFICIENT' from 'Required'.
    2. Create a 'Sequencer' table, if your jar is using it.

  • After adding a flashfile .swf into a dreamweaver page and trying to run it, I get an error message related to Javascript

    after adding a flashfile .swf into a dreamweaver page and trying to run it, I get an error message related to Javascript
    I have no trouble viewing other websites with (most likely), flashfiles.
    Here is the the PopUp message:
    "Adobe-warning Adobe Flash PLayer has stopped a potentrially unsafe operation......"

    In newer versions of Flash Pro, you can export to HTML5 Canvas, that's probably what they're talking about: Flash Professional Help | Creating and publishing an HTML5 Canvas document
    .FLV and .SWF are Flash formats that won't show up on iOS (or an ever increasing number of other mobile devices). Mobile Flash was killed by Adobe a couple years ago, so the number of mobile devices that can see it is dwindling rapidly, don't use those formats if you want your viewers on mobile devices to see your content.

  • FM for creating relations bewtween 2 BP (IS-U)

    Hi,
    how i can create relation between 2 bp?
    thank you.
    Lechoo

    RESOLVED:
    CODE FROM SWO1 METHOD DEFINITION:
    BEGIN_METHOD CREATE_BP_FROM_CIC CHANGING CONTAINER.
    DATA: db_update      TYPE REGEN-DB_UPDATE,
          EXIT_TYPE      TYPE REGEN-EXIT_TYPE,
          muster_kun     TYPE EKUND-MUSTER_KUN,
          TYPE           TYPE BUS000FLDS-TYPE,
          bpkind         TYPE BUS000FLDS-BPKIND,
          GROUP          TYPE TB001-BU_GROUP,
          PARTNER        TYPE BUT000-PARTNER,
          ROLETYPE       TYPE TBZ0-RLTYP OCCURS 0,
          upd_onl        TYPE REGEN-KENNZX,
          no_xinit       TYPE REGEN-KENNZX,
          xinit          type regen-kennzx,
          p              type isu01_partner_data,
          NAME_FIRST     TYPE BUT000-NAME_FIRST,
          NAME_LAST      TYPE BUT000-NAME_LAST,
          TEL_NUMBER     TYPE ADR2-TEL_NUMBER,
          EMAIL          TYPE ADR6-SMTP_ADDR,
          SOC_SECURE     TYPE EKUN-SOC_SECURE,
          rec_partner    type bapiisubpd,
          rec_partner_x  type bapiisubpdx,
          r_partner_new  type bapibppara-partner,
          rec_return     type bapiret2,
          rec_address    type bapiisubpa,
          rec_address_x  type bapiisubpax,
          rec_adruse     type bapiisubpau,
          rec_adruse_x   type bapiisubpaux,
          rec_bank       type bapiisubpb,
          rec_bank_x     type bapiisubpbx,
          rec_ccard      type bapiisubpc,
          rec_ccard_x    type bapiisubpcx,
          rec_email_on_a type bapiadsmtp,
          rec_extension  type bapiparex,
          rec_rltypes    type bapiisubpr,
          rec_tel_on_a   type bapiadtel,
          rec_tax        type bapibus1006tax,
          tab_adruse     like rec_adruse     occurs 0 with header line,
          tab_adruse_x    like rec_adruse_x   occurs 0 with header line,
          tab_address     like rec_address    occurs 0 with header line,
          tab_address_TMP like rec_address    occurs 0 with header line,
          tab_address_x   like rec_address_x  occurs 0 with header line,
          tab_bank        like rec_bank       occurs 0 with header line,
          tab_bank_x      like rec_bank_x     occurs 0 with header line,
          tab_ccard       like rec_ccard      occurs 0 with header line,
          tab_ccard_x     like rec_ccard_x    occurs 0 with header line,
          tab_email_on_a  like rec_email_on_a occurs 0 with header line,
          tab_extension   like rec_extension  occurs 0 with header line,
          tab_rltypes     like rec_rltypes    occurs 0 with header line,
          tab_tax         like bapibus1006tax occurs 0 with header line,
          tab_tel_on_a    like rec_tel_on_a   occurs 0 with header line,
          ls_auto         type isu01_partner_auto,
    LS_ADDRESS LIKE LINE OF LS_AUTO-T_ADDRESS,
          rltypes         like bup_partnerroles occurs 0 with header line,
          t_rltyp         like tbz0-rltyp occurs 0 with header line.
      SWC_GET_ELEMENT CONTAINER 'ReferenceCustomer'   muster_kun.
      SWC_GET_ELEMENT CONTAINER 'Type'                TYPE.
      SWC_GET_ELEMENT CONTAINER 'BusinessPartnerKind' bpkind.
      SWC_GET_ELEMENT CONTAINER 'Group'               GROUP.
      SWC_GET_ELEMENT CONTAINER 'Partner'             PARTNER.
      SWC_GET_ELEMENT CONTAINER 'FirstName'           NAME_FIRST.
      SWC_GET_ELEMENT CONTAINER 'LastName'            NAME_LAST.
      SWC_GET_ELEMENT CONTAINER 'EMailAddress'        email.
      SWC_GET_ELEMENT CONTAINER 'Telephone'           tel_number.
      SWC_GET_TABLE   CONTAINER 'RoleType'            t_rltyp[].
      SWC_GET_ELEMENT CONTAINER 'UpdateOnline'        upd_onl.
      SWC_GET_ELEMENT CONTAINER 'NoFirstScreen'       no_xinit.
      SWC_GET_ELEMENT CONTAINER 'SS' soc_secure.
    if no_xinit = 'X'.
      clear xinit.
    else.
      xinit = 'X'.
    endif.
    refresh rltypes.
    loop at t_rltyp.
      rltypes-rolecategory = t_rltyp.
      append rltypes.
    endloop.
    * provide business partner data
    CLEAR: LS_aUTO, rec_partner, rec_partner_X.
          call function 'ISU_S_PARTNER_PROVIDE'
            exporting
              x_partner                      = PARTNER
              x_wmode                        = '1'
              x_no_dialog                    = 'X'
           importing
             y_auto                          = ls_auto
          exceptions
           not_found                       = 1
           partner_in_role_not_found       = 2
           foreign_lock                    = 3
           not_authorized                  = 4
           invalid_wmode                   = 5
           different_type                  = 6
           general_fault                   = 7
           others                          = 8.
    if sy-subrc = 0 and not ls_auto is initial.
    rec_partner-bpkind = LS_AUTO-ACT-BPKIND.
    rec_partner_x-bpkind = 'X'.
    rec_partner-name_first = NAME_FIRST.
    rec_partner_x-name_first = 'X'.
    rec_partner-name_last  = NAME_last.
    rec_partner_x-name_last  = 'X'.
    rec_partner-soc_secure = soc_secure.
    rec_partner_x-soc_secure = 'X'.
    CLEAR: TAB_ADDRESS_TMP, TAB_ADDRESS, TAB_ADDRESS_X.
    REFRESH: TAB_ADDRESS_TMP, TAB_ADDRESS, TAB_ADDRESS_X.
    *APPEND LINES OF LS_AUTO-T_ADDRESS TO TAB_ADDRESS_TMP.
    LOOP AT LS_AUTO-T_ADDRESS INTO LS_ADDRESS.
    tab_address_x-XDFADR     = 'X'.
    tab_address-XDFADR       = 'X'.
    tab_address_x-CITY1      = 'X'.
    tab_address-CITY1        = LS_ADDRESS-CITY1.
    tab_address_x-POST_CODE1 = 'X'.
    tab_address-POST_CODE1   = LS_ADDRESS-POST_CODE1.
    tab_address_x-STREET     = 'X'.
    tab_address-STREET       = LS_ADDRESS-STREET.
    tab_address_x-HOUSE_NUM1 = 'X'.
    tab_address-HOUSE_NUM1   = LS_ADDRESS-HOUSE_NUM1.
    tab_address_x-COUNTRY    = 'X'.
    tab_address-COUNTRY      = LS_ADDRESS-COUNTRY.
    tab_address_x-TEL_NUMBER = 'X'.
    tab_address-TEL_NUMBER   = tel_number.
    tab_address_x-E_MAIL     = 'X'.
    tab_address-E_MAIL       = EMAIL.
    APPEND TAB_ADDRESS.
    APPEND tab_address_x.
    CLEAR: LS_ADDRESS, TAB_ADDRESS, TAB_ADDRESS_X.
    ENDLOOP.
    endif.
    *upd_onl = 'X'.
    type = '1'.
    group = '0001'.
    *   ==============================================
        call function 'BAPI_ISUPARTNER_CREATEFROMDATA'
    *   ==============================================
             exporting
    *                    PARTNER      =
                        type         = type
                        group        = group
                        refcustomer  = 'SDKUNDE'
                        partnerdata  = rec_partner
                        partnerdatax = rec_partner_x
    *                   TESTRUN      =
                        accept_error = 'X'
             importing  return       = rec_return
                        new_partner  = r_partner_new
             tables  taddress              = tab_address
                     taddressx             = tab_address_x
                     tbankdata             = tab_bank
                     tbankdatax            = tab_bank_x
                     tccarddata            = tab_ccard
                     tccarddatax           = tab_ccard_x
                     rltypes               = tab_rltypes
                     extensionin           = tab_extension
                     ttaxdata              = tab_tax
                     telefondatanonaddress = tab_tel_on_a
                     e_maildatanonaddress  = tab_email_on_a
                     tadruse               = tab_adruse
                     tadrusex              = tab_adruse_x.
    if not rec_return-type = 'E'.
    call function 'BAPI_TRANSACTION_COMMIT'
         exporting
           wait = 'X'.
      CALL FUNCTION ' BAPI_BUPR_RELATIONSHIP_CREATE'
        EXPORTING
          businesspartner1               = partner
          businesspartner2               = r_partner_new
          relationshipcategory           = 'ZDISP2'
    *     RELATIONSHIPTYPE               =
    *     VALIDFROMDATE                  = SY-DATLO
    *     VALIDUNTILDATE                 = '99991231'
    *     DIFFERENTIATIONTYPEVALUE       =
    *     XDFREL                         =
    *   TABLES
    *     RETURN                         =
    call function 'BAPI_TRANSACTION_COMMIT'
         exporting
           wait = 'X'.
        call function 'ISU_S_PARTNER_CHANGE'
          exporting
            x_partner            = r_partner_new
    *        X_VALDT              =
            x_upd_online         = 'X'
    *        X_NO_DIALOG          =
    *        X_AUTO               =
    *        X_OBJ                =
    *        X_NO_OTHER           =
    *        X_REL_KZ             = 'X'
    *        X_MUSTER_KUN         =
    *        X_TESTRUN            =
    *      IMPORTING
    *        Y_DB_UPDATE          =
    *        Y_EXIT_TYPE          =
    *        Y_NEW_PARTNER        =
    *      TABLES
    *        XT_RLTYPES           =
    *      EXCEPTIONS
    *        NOT_FOUND            = 1
    *        FOREIGN_LOCK         = 2
    *        NOT_AUTHORIZED       = 3
    *        CANCELLED            = 4
    *        INPUT_ERROR          = 5
    *        GENERAL_FAULT        = 6
    *        OTHERS               = 7
    commit work and wait.
    else.
    endif.
    ** call change service function (no commit)
    *call function 'ISU_S_PARTNER_CREATE'
    *     exporting
    **          x_partner       = partner
    **          x_upd_online    = upd_onl
    *          x_upd_online    = SPACE
    *          x_type          = type
    *          x_group         = group
    **          x_first_screen  = xinit
    *          x_muster_kun    = muster_kun
    *          x_bpkind        = bpkind
    **           X_NO_DIALOG     =
    *           X_AUTO          = ls_auto
    **           X_WINDOW        =
    *          x_rel_kz        = 'X'
    *    importing
    **         y_db_update     = db_update
    *         y_exit_type     = exit_type
    *         y_new_partner   = p
    **    tables
    **         xt_rltypes      = rltypes
    *      exceptions
    *           existing        = 1
    *           foreign_lock    = 2
    *           not_authorized  = 3
    *           input_error     = 5
    *           general_fault   = 6
    *           others          = 7.
    *if sy-subrc <> 0.
    *  if sy-subrc = 1.
    **     existing
    *    exit_return 1000 sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    *  elseif sy-subrc = 2.
    **     foreign lock
    *    exit_return 1001 sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    *  elseif sy-subrc = 3.
    **     not authorized
    *    exit_return 1002 sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    *  else.
    **     other error
    *    swc_refresh_object self.
    **   set initial objectkey
    *    clear object-key.
    *    swc_set_objectkey object-key.
    *    exit_return 1003 text-s00 space space space.
    *  endif.
    *endif.
    if exit_type = 'CANC'.
    *   cacelled
      exit_cancelled.
    endif.
    swc_set_objectkey r_partner_new.
    * put export parameters to container
      SWC_SET_ELEMENT CONTAINER 'DatabaseUpdate' db_update.
      SWC_SET_ELEMENT CONTAINER 'Exit_type' EXIT_TYPE.
      SWC_SET_ELEMENT CONTAINER 'Partner' r_partner_new.
    * attributes may have changed, force new read from DB
    swc_refresh_object self.
    END_METHOD.
    IF YOU LIKE MY CODE, PLEASE GIVE ME STAR

  • Create relation between two blocks which are based on different procedure

    Hiii
    How to create relation between two blocks which are based on different stored procedures in Oracle form??
    Pradhyumn Sharma

    hiii,
    I selected the common key deptno in both procedure.
    I created a relation between both procedure. but when i compile the form it give an error in ON-CHECK-DELETE-MASTER. My procedure are
    ==================================
    PACKAGE emp_pkg AS
    TYPE emprec IS RECORD(
    empno asg_emp.empno%type,
    ename asg_emp.ename%type,
    job asg_emp.job%type,
    sal asg_emp.sal%type,
    deptno asg_emp.deptno%type);
    TYPE emptab IS TABLE OF emprec INDEX BY BINARY_INTEGER;
    PROCEDURE empquery(block_data IN OUT emptab, p_deptno IN NUMBER);
    end;
    ====================================
    PACKAGE dept_rec IS
    type rec is record(dname asg_dept.dname%type,
         loc     asg_dept.loc%type,
         deptno asg_dept.deptno%type);
    type deptrec is table of rec index by binary_integer;
    PROCEDURE dept_rec1(block1 in out deptrec);
    END;
    ===================================
    In ON-CHECK-DELETE-MASTER
    CURSOR BLOCK9_cur IS
    SELECT 1 FROM dept_rec.dept_rec1 d
    WHERE d.DEPTNO = :BLOCK6.DEPTNO;
    identifier dept_rec.dept_rec1 must be declared.
    Regards
    Pradhyumn

  • Failure: Error creating DaemonSession thread

    Hi All,
    I am getting failure: Error creating DaemonSession thread errior when I start the web-server instance as follows
    bash-3.00$ ./start
    Sun ONE Web Server 6.1SP2 B04/07/2004 17:28
    info: CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.4.1.05] from [Hewle
    tt-Packard Company]
    info: WEB0100: Loading web module in virtual server [https-myWebServer] at [/sea
    rch]
    info: HTTP3072: [LS ls1] http://hpux-lab:8000 ready to accept requests
    failure: Error creating DaemonSession thread
    startup: server started successfully
    bash-3.00$
    Please reply with a solution

    This was related to kernel level settings
    The attribute max_thread_proc was set to 64 which was not enough. So increase that to 2048 and the Web-Server Instance wil start.

  • Failed (why else would I post). Error creating an image of Drive D:, rc = 2. Return Code -2147467259 0x80004005. "Not enough storage is available to process this command".

    Seems a common set of Return Codes to post so apologies that's not specific.
    To me appears the issue is related to the "Not enough storage is available to process this command" log entry. Looked into it and some SCCM 2007 issues that were related to too many sessions to the site server, but even after rebooting my MDT server
    I get the same issue.
    The server I am attempting to capture has a 60gb VHD with around 30gb actually used. The MDT Server has over 100GB free space.
    Here is from BDD.log:
      Console > Turning on VERIFY option for network share
    ZTIBackup 10/10/2014 12:56:30 PM
    0 (0x0000)
      Console > Scanning files and directories...
    ZTIBackup 10/10/2014 12:56:30 PM
    0 (0x0000)
      Console > Error imaging drive [D:\]
    ZTIBackup 10/10/2014 12:56:30 PM
    0 (0x0000)
      Console > Not enough storage is available to process this command.
    ZTIBackup 10/10/2014 12:56:31 PM
    0 (0x0000)
    Return code from command = 2 ZTIBackup
    10/10/2014 12:56:31 PM 0 (0x0000)
    Error creating an image of drive D:, rc = 2
    ZTIBackup 10/10/2014 12:56:31 PM
    0 (0x0000)
    Event 41036 sent: Error creating an image of drive D:, rc = 2
    ZTIBackup 10/10/2014 12:56:31 PM
    0 (0x0000)
    ZTIBackup COMPLETED.  Return Value = 2
    ZTIBackup 10/10/2014 12:56:32 PM
    0 (0x0000)
    ZTI ERROR - Non-zero return code by ZTIBackup, rc = 2
    ZTIBackup 10/10/2014 12:56:32 PM
    0 (0x0000)
    Event 41002 sent: ZTI ERROR - Non-zero return code by ZTIBackup, rc = 2
    ZTIBackup 10/10/2014 12:56:32 PM
    0 (0x0000)
    Command completed, return code = -2147467259
    LiteTouch 10/10/2014 12:56:33 PM
    0 (0x0000)
    Litetouch deployment failed, Return Code = -2147467259  0x80004005
    LiteTouch 10/10/2014 12:56:33 PM
    0 (0x0000)
    Event 41014 sent: Litetouch deployment failed, Return Code = -2147467259  0x80004005
    LiteTouch 10/10/2014 12:56:33 PM
    0 (0x0000)
    I'll post below full logs.

    imagex reported:
      Console > Error imaging drive [D:\]
      Console > Not enough storage is available to process this command.
    obvious question is: do you have enough free space on
    "\\arcadmin3\deploymentshare$\Captures\SIMSERVER.wim"
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Metalink Doc on FRM-41810 "Error Creating Menu" in oracle form

    Hi,
          Can any one please send me the " RM-41810 "Error Creating Menu" , From the Metalink Document
    Thank you

    Hi Srini,
               Sorry for late update ,
    Srini_Chavali wrote:
    Pl post EBS related questions in the EBS forums.
    Pl provide details of your EBS, OS and database versions, along with details of what the issue is. The mmb files are part of the the EBS install and should be available in $AU_TOP
    It is an Oracle Apps Forms Question and where i can post? Can u plz suggest ? I mean when i post in the EBS forums is this correct position?
    My Window Xp OS version is 5.1 and DB Version is TOAD 9.5 ..
    Thank you

  • Create Relational View in AW

    Hi Everyone,
    I am currently trying to create a relational view in the awm to use in the administration tool in BIEE. However, everytime i click on the plug in- create relational view all my dimension is greyed out except measures. and when i click on the create view button i get the following error,
    MAY-01-2008 10:25:09: ** ERROR: Unable to create view over cube FINSTMNT_REP_CUBE6428.
    MAY-01-2008 10:25:09: User-Defined Exception
    has anyone encounted this problem please let me know when you can
    regard
    cbeins

    Hi Everyone,
    I am currently trying to create a relational view in the awm to use in the administration tool in BIEE. However, everytime i click on the plug in- create relational view all my dimension is greyed out except measures. and when i click on the create view button i get the following error,
    MAY-01-2008 10:25:09: ** ERROR: Unable to create view over cube FINSTMNT_REP_CUBE6428.
    MAY-01-2008 10:25:09: User-Defined Exception
    has anyone encounted this problem please let me know when you can
    regard
    cbeins

  • Can't start first instance...ORA-27504: IPC error creating OSD context

    Oracle11gR1 RHEL4 AS - 64bit - 2 node RAC
    I am having trouble starting the database from the first node. I can start the second node without any problems. When I go to start the first node I get the following error:
    [oracle@vtl-rac1 db_1]$ sqlplus "/as sysdba"
    SQL*Plus: Release 11.1.0.6.0 - Production on Thu May 1 15:50:50 2008
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORA-27504: IPC error creating OSD context
    HA Resource Target State
    ora.VMRACDEV.VMRACDEV1.inst ONLINE OFFLINE
    ora.VMRACDEV.VMRACDEV2.inst ONLINE ONLINE on vtl-rac2
    ora.VMRACDEV.db ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.ASM1.asm ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.LISTENER_VTL-RAC1.lsnr ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.gsd ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.ons ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.vip ONLINE ONLINE on vtl-rac1
    ora.vtl-rac2.ASM2.asm ONLINE ONLINE on vtl-rac2
    ora.vtl-rac2.LISTENER_VTL-RAC2.lsnr ONLINE ONLINE on vtl-rac2
    ora.vtl-rac2.gsd ONLINE ONLINE on vtl-rac2
    ora.vtl-rac2.ons ONLINE ONLINE on vtl-rac2
    ora.vtl-rac2.vip ONLINE ONLINE on vtl-rac2
    No alerts are being generated in the alert log. And I have looked at this errror in the docs and it says that it is related to OS/cluster interconnect but those are also fine as indicated in the alert log. I saw some metalink notes but they are specific to other OS's.
    Any help would be appreciated.
    Thank you.

    Presuming that no other changes were made to this
    configuration and it stopped working , you might want
    to attempt these steps :
    a) You have already mentioned this but recheck the
    alert.log file for this instanceThere is nothing in the alertlog.
    to verify if there are any errors reported.
    Check the udump / bdump locations for any trace files
    which might give
    us any clues on where to look further.This is all I found in a trace file:
    libskgxpd.so called
    libskgxp9.so should reference real implementation
    IPC OS error without diagnostic information
    Dump of memory from 0x0000007FBFFF8FF8 to 0x0000007FBFFF90D0
    7FBFFF8FF0 00000000 20435049 [....IPC ]
    7FBFFF9000 74696E69 00000000 00000000 0000002A [init........*...]
    7FBFFF9010 BFFF9130 0000007F 5F487518 676B7300 [0........uH_.skg]
    7FBFFF9020 69637078 0000696E 696C00CE 676B7362 [xpcini....libskg]
    7FBFFF9030 2E647078 63206F73 656C6C61 696C0A64 [xpd.so called.li]
    7FBFFF9040 676B7362 2E397078 73206F73 6C756F68 [bskgxp9.so shoul]
    7FBFFF9050 65722064 65726566 2065636E 6C616572 [d reference real]
    7FBFFF9060 706D6920 656D656C 7461746E 0A6E6F69 [ implementation.]
    7FBFFF9070 00000000 00000001 096AD150 00000000 [........P.j.....]
    7FBFFF9080 00000001 00000001 5F487518 00000001 [.........uH_....]
    7FBFFF9090 BFFFA258 0000007F 00000030 00000000 [X.......0.......]
    7FBFFF90A0 000006FA 00000000 00000000 00000000 [................]
    7FBFFF90B0 00000000 00000000 00000000 00000000 [................]
    7FBFFF90C0 096AD0E0 00000000 00000001 00000041 [..j.........A...]
    struct ksxpp * ksxppg_ [0x96c5fb0, 0x2a965ed800) = 0x2a965ed7f8
    Does the same problem persist if the problematic Node
    is rebooted.- Nope, that didn't change anything either.
    d) You might want to strace the Sqlplus startup
    process and depending on
    where the assert is raised , it might provide
    some pointers.- Here is the end of the strace output:
    read(9, "\f\0\4\4\0\0P\0\5\4\0\0g\0\6\4\0\0~\0\7\4\0\0\245\0\10\4\0\0\274\0"..., 512) = 512
    close(9) = 0
    lseek(4, 16384, SEEK_SET) = 16384
    read(4, "\f\0\261\2\0\0P\0\264\2\0\0\177\0\265\2\0\0\265\0\266\2\0\0\f\1\275\2\0\0/\1"..., 512) = 512
    write(1, "Connected to an idle instance.\n", 31) = 31
    write(1, "\n", 1) = 1
    mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2a9829b000
    munmap(0x2a9829b000, 143360) = 0
    access("login.sql", F_OK) = -1 ENOENT (No such file or directory)
    mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2a9829b000
    munmap(0x2a9829b000, 143360) = 0
    access("/opt/app/oracle/product/11.1.0/db_1/sqlplus/admin/glogin.sql", F_OK) = 0
    statfs("/opt/app/oracle/product/11.1.0/db_1/sqlplus/admin/glogin.sql", {f_type="EXT2_SUPER_MAGIC", f_bsize=4096, f_blocks=7210695, f_bfree=1791712, f_bavail=1425430, f_files=3662848, f_ffree=3395776, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
    open("/opt/app/oracle/product/11.1.0/db_1/sqlplus/admin/glogin.sql", O_RDONLY) = 9
    brk(0x61f000) = 0x61f000
    read(9, "--\n-- Copyright (c) 1988, 2005, "..., 57344) = 342
    read(9, "", 57344) = 0
    brk(0x611000) = 0x611000
    close(9) = 0
    write(1, "SQL> ", 5) = 5
    fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 1), ...}) = 0
    mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2a9829b000
    read(0, "startup\n", 1024) = 8
    write(10, "\0U\0\0\6\0\0\0\0\0\3\212\6\376\377\377\377\377\377\377\377\0\1\0\0\0\0\0\0\376\377\377"..., 85) = 85
    read(11, "\0\33\0\0\6\0\0\0\0\0\10\1\0\0\0\0\0\0\0\0\t\1\0\0\0\0\0", 8208) = 27
    write(10, "\0\35\0\0\6\0\0\0\0\0\0030\7\0\0\0\0005\0\0\0\376\377\377\377\377\377\377\377", 29) = 29
    read(11, "\0\275\0\0\6\0\0\0\0\0\4\1\0\0\0\0\0\1\0\0\0\0pk\0\0\0\0\0\0\0\0"..., 8208) = 189
    write(1, "ORA-27504: IPC error creating OS"..., 42) = 42
    write(1, "SQL> ", 5) = 5
    read(0, "exit\n", 1024) = 5
    write(10, "\0\r\0\0\6\0\0\0\0\0\3\t\10", 13) = 13
    read(11, "\0\21\0\0\6\0\0\0\0\0\t\1\0\0\0\0\0", 8208) = 17
    lseek(4, 15872, SEEK_SET) = 15872
    read(4, "\n\0\243\2\0\0D\0\244\2\0\0_\0\245\2\0\0\206\0\246\2\0\0\277\0\252\2\0\0\371\0"..., 512) = 512
    write(1, "Disconnected\n", 13) = 13
    write(10, "\0\n\0\0\6\0\0\0\0@", 10) = 10
    close(10) = 0
    close(11) = 0
    close(8) = 0
    close(7) = 0
    close(5) = 0
    close(3) = 0
    close(4) = 0
    munmap(0x2a97ff1000, 143360) = 0
    brk(0x610000) = 0x610000
    brk(0x609000) = 0x609000
    exit_group(0) = ?
    I have Oracle Support stumped on this one too.
    Thanks.

  • ORA-27504: IPC error creating OSD context

    Hi
    We have a Linux based ORACLE rac server (version-10.2.0.4.0). Suddenly dbs are went down and while we are trying to up the dbs it will shows the following error
    ORA-27504: IPC error creating OSD context
    ORA-27300: OS system dependent operation:check if cable failed with status: 0
    ORA-27301: OS failure message: Error 0
    ORA-27302: failure occurred at: skgxpcini1
    ORA-27303: additional information: requested interface eth1 interface not runnin
    g set disableinterface_checking = TRUE to disable this check for single instan
    ce cluster. Check output from ifcon
    Any one have idea about this?
    Thanks
    Anbu

    Use this forum to report broken links or general feedback about Oracle documentation. This forum is not monitored by Oracle support or product teams and so Oracle product and technology related questions will not be answered.
    It seems you are not in the right forum. Despite of this because of the error stack you have a - possibly hardware related - connection problem between the nodes of the cluster. Pay special attention to ORA-27303, I think this message gives you valuable hints. And check the interconnect on hardware level.
    Werner

  • SPNego fails: Error creating GSS context - java.lang.NullPointerException

    Hi,
    I have successfully configured SPNego logon to the first portal in our landscape, however, on the next portal I've got to the SPNego logon is failing.
    When using the diagtool to analyse the problem tests 1-5 and 7 are passing successfully, however, test 6 is failing.
    I am configuring against the following software components:
    SAP J2EE - 7.00 SP13
    Sun JDK version: 1.4.2_14
    diagtool version 1.7.2
    MS Active Directory is configured as the EP UME with resolution mode simple.
    I believe the problem is in some way related to the authentication of the j2ee-<sid> user, however, I cannot narrow it down further. The password for this user has not changed since I generated the keytab file.
    Any help greatly appreciated.
    The following error is written to the diagtool trace file:
    Error creating GSS context.
    [EXCEPTION]
    GSSException: No valid credentials provided (Mechanism level: Attempt to obtain new ACCEPT credentials failed!)
    at sun.security.jgss.krb5.Krb5AcceptCredential.getKeyFromSubject(Krb5AcceptCredential.java:189)
    at sun.security.jgss.krb5.Krb5AcceptCredential.getInstance(Krb5AcceptCredential.java:80)
    at sun.security.jgss.krb5.Krb5MechFactory.getCredentialElement(Krb5MechFactory.java:75)
    at sun.security.jgss.GSSManagerImpl.getCredentialElement(GSSManagerImpl.java:149)
    at sun.security.jgss.GSSCredentialImpl.add(GSSCredentialImpl.java:334)
    at sun.security.jgss.GSSCredentialImpl.<init>(GSSCredentialImpl.java:44)
    at sun.security.jgss.GSSManagerImpl.createCredential(GSSManagerImpl.java:102)
    at com.sap.engine.config.diagtool.tests.authentication.krb.Krb5ServerTest.createGSSContext(Krb5ServerTest.java:104)
    at com.sap.engine.config.diagtool.tests.authentication.krb.Krb5ServerTest.execute(Krb5ServerTest.java:75)
    at com.sap.engine.config.diagtool.Task.execute(Task.java:55)
    at com.sap.engine.config.diagtool.Launcher.run(Launcher.java:343)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sap.engine.config.diagtool.Launcher.main(Launcher.java:394)
    Caused by: javax.security.auth.login.LoginException: java.lang.NullPointerException
    at java.lang.StringBuffer.append(StringBuffer.java:467)
    at com.sun.security.auth.module.Krb5LoginModule.attemptAuthentication(Krb5LoginModule.java:576)
    at com.sun.security.auth.module.Krb5LoginModule.login(Krb5LoginModule.java:475)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
    at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
    at sun.security.jgss.LoginUtility.run(LoginUtility.java:57)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.security.jgss.krb5.Krb5AcceptCredential.getKeyFromSubject(Krb5AcceptCredential.java:186)
    at sun.security.jgss.krb5.Krb5AcceptCredential.getInstance(Krb5AcceptCredential.java:80)
    at sun.security.jgss.krb5.Krb5MechFactory.getCredentialElement(Krb5MechFactory.java:75)
    at sun.security.jgss.GSSManagerImpl.getCredentialElement(GSSManagerImpl.java:149)
    at sun.security.jgss.GSSCredentialImpl.add(GSSCredentialImpl.java:334)
    at sun.security.jgss.GSSCredentialImpl.<init>(GSSCredentialImpl.java:44)
    at sun.security.jgss.GSSManagerImpl.createCredential(GSSManagerImpl.java:102)
    at com.sap.engine.config.diagtool.tests.authentication.krb.Krb5ServerTest.createGSSContext(Krb5ServerTest.java:104)
    at com.sap.engine.config.diagtool.tests.authentication.krb.Krb5ServerTest.execute(Krb5ServerTest.java:75)
    at com.sap.engine.config.diagtool.Task.execute(Task.java:55)
    at com.sap.engine.config.diagtool.Launcher.run(Launcher.java:343)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sap.engine.config.diagtool.Launcher.main(Launcher.java:394)
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:730)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
    at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
    at sun.security.jgss.LoginUtility.run(LoginUtility.java:57)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.security.jgss.krb5.Krb5AcceptCredential.getKeyFromSubject(Krb5AcceptCredential.java:186)
    ... 15 more
    Acquire credential failed for realm EUR.EMIGRP.COM

    Hello CJH,
    Thank you for following up.
    I will set the thread status to "assumed answered".
    Cheers,
    Julius

Maybe you are looking for