BPM Task payload namespace issue while modifying from ADF UI

Hi,
In my BPM process, I have the below tasks.
1. Input task - user input form
2. Review task - to review the user input values
I have created the UI for the above tasks through Auto-generate forms.
Before invoking Input task, I have created a transformation to initailize the payload elements, so that in the UI these field elements will be become editable.
I have an ADF table which is used to insert account details elements which is initialized in the transformation with namespace.
<ns0:bankAccountsType>
<ns0:registrationNumber></ns0:registrationNumber>
<ns0:accountNumber></ns0:accountNumber>
<ns0:bankName></ns0:bankName>
</ns0:bankAccountsType>
I am using the createInsert operation of the ADF command button to insert records for these table in UI. The row is getting inserted with values and clicked "Approve" to go to the Review task.
Now if i check the flow trace for this instance in EM console. ie "Review Task - Instance entered the activity"
The payload elements for this account types is coming namespace for first record (becoz the row is intialized in BPM transformation) and the second & third record is not showing namespace.
<ns0:bankAccountsType>
<ns0:registrationNumber>111111111111111</ns0:registrationNumber>
<ns0:accountNumber>1111111111111111</ns0:accountNumber>
<ns0:bankName>qqqq</ns0:bankName>
</ns0:bankAccountsType>     
<bankAccountsType>
               <registrationNumber>222222222222</registrationNumber>
               <accountNumber>222222222222</accountNumber>
               <bankName>www</bankName>
          </bankAccountsType>
          <bankAccountsType>
               <registrationNumber>3333333333</registrationNumber>
               <accountNumber>3333333333</accountNumber>
               <bankName>sas</bankName>
          </bankAccountsType>
Is there any way ADF can keep the namespace while adding new items?
Jdeveloper
Studio Edition Version 11.1.1.5.0
Build JDEVADF_11.1.1.5.0_GENERIC_110409.0025.6013
Thanks in advance.
Regards,
Murali.S
Edited by: 1006338 on 16 May, 2013 5:18 AM
Edited by: 1006338 on 16 May, 2013 5:20 AM

Before invoking Input task, I have created a transformation to initailize the payload elements, so that in the UI these field elements will be become editable.
I have an ADF table which is used to insert account details elements which is initialized in the transformation with namespace.You can simple use a ADF form to do this. Create ADF editable input fields in a panelFormLayout and wehn user enters values and clicks ona button .. pass those values to BPM payload.
See - http://andrejusb.blogspot.com/2010/10/initializing-oracle-bpm-11g-process.html

Similar Messages

  • Namespace issue while modifying request object

    Hi,
    This question is about task flow created from BPM worklist. I am updating the request using iterator binding and adding new nodes in the list. I need to get this updated request object back to BPEL. When the object is returned back to BPEL, the new nodes added from ADF don't have the namespace prefixed with the tags. This is creating issue in BPEL. Jdev version 11.1.1.4.0
    Is there any way in BPEL while copying / transforming the data, force to keep target variable's namespace? There is another issue where in source namespace is getting copied to target list.
    Thanks
    Ashwini

    Hi,
    You can use a xslt transformation in bpel to get the data from adf back to your namespace before you add the nodes in the list...
    There's a xslt sample here...
    http://stackoverflow.com/questions/3463943/changing-namespace-for-xml-file-in-xsl-translation
    Cheers,
    Vlad

  • Issue while connecting from Biztalk adapter to SAP ECC 6.0

    Hi Friends
    Issue while connecting from Visulal Studio 2005 to SAP ECC 6.0 throgh Biztalk adapter2.0, even if we pass the correct login details, system is throwing an error like incorrect user/password.
    Can you please tell anybody the solution for this.
    Regards
    Praveen

    HI,
    is there a special "formation" to put in the user / pass ?
    maybe a missing domain ? or missing values like "/" or "\" ?
    Do you getting this error in the Biztalk Monitor (Visual 2005) ?

  • Issue while modifying entries in custom infotype after enhancement.

    Hi All ,
    I have enhanced custom Infotype (Added 2 new fields).
    After enhancement, I am facing one issue while updating infotype through FM HR_INFOTYPE_OPERATION.
    Issue is that I am not able to update/modify records through FM HR_INFOTYPE_OPERATION.
    RETURN parameter of FM comes empty indicating no errors but actual records in database table are not updated. I debugged FM and found that SAVE button on PA30 screen is disabled.
    Anyone knows reason for above proble and also please help me in solving issue.
    Regards,
    Jigar Thakkar.

    Thanks for your response.
    Yes i am able to update IT9201 through PA30 but not with FM HR_INFOTYPE_OPERATION. Also I have activated PXXXX structure through PM01.
    While debugging FM HR_INFOTYPE_OPERATION i saw that SAVE button is disabled and processing stops there.
    Regards,
    Jigar.

  • Namespace issue while generating XML based on xsd

    Hi All,
    I am using Jdeveloper-11.1.1.6
    SOA:- 11.1.1.6
    WLS:- 11.3.6
    When i am publishing xml message i am getting name space issue.
    My process design as i am getting a message from AQ JMS and doing a transformation with out any logic and writing into a file based on the xsd.
    Here is the my target xsd structure
    <xs:schema id="RelieveIntransitSchema"
    targetNamespace="http://tempuri.org/RelieveIntransitSchema.xsd"
    elementFormDefault="qualified"
    xmlns="http://tempuri.org/RelieveIntransitSchema.xsd"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="RelieveIntransits">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="RelieveIntransit" minOccurs="1" maxOccurs="unbounded">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="RelieveStore" minOccurs="1" maxOccurs="unbounded">
    <xs:complexType>
    <xs:sequence></xs:sequence>
    <xs:attribute name="StoreID" type="xs:string"/>
    <xs:attribute name="Units" type="xs:double"/>
    <xs:attribute name="RelieveAllStores" type="xs:boolean"/>
    </xs:complexType>
    </xs:element>
    </xs:sequence>
    <xs:attribute name="HeaderID" type="xs:string" use="optional"/>
    <xs:attribute name="ProductID" type="xs:string" use="required"/>
    </xs:complexType>
    </xs:element>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    My actual target xml should be of
    <?xml version="1.0"?>
    <RelieveIntransits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/RelieveIntransitSchema.xsd">
    <RelieveIntransit HeaderID="DA41198901491301" ProductID="D037-63-1270S">
    <RelieveStore StoreID="D001" Units="0002092 " />
    <RelieveStore StoreID="D003" Units="0000022 " />
    </RelieveIntransit>
    </RelieveIntransits>
    But the out xml generating as below which is not accepted by target system
    <?xml version="1.0" encoding="UTF-8"?>
    <RelieveIntransits xmlns="http://tempuri.org/RelieveIntransitSchema.xsd" xmlns:ns5="http://tempuri.org/RelieveIntransitSchema.xsd"> <ns5:RelieveIntransit ProductID="6534562" HeaderID="10R7771-6534562001-109"> <ns5:RelieveStore Units="5" StoreID="118"/>
    <ns5:RelieveStore Units="5" StoreID="118"/>
    </ns5:RelieveIntransit>
    </RelieveIntransits>
    Could some one please help me how to generate actual one as shown above with out namespace prefix "ns". I tried xsl code for removing name space prefix using https://forums.oracle.com/forums/thread.jspa?threadID=1122673 but it is removing url also.
    Regards,
    Tarak
    Edited by: Tarak on Jul 26, 2012 11:39 AM

    Hi,
    Sorry for my delay response.
    Both xmls are valid and equivalent for me... should be equivalent to <ns1:a xmlns:ns1="namespace"/>...
    I agree to your point.
    What is your target system? If that makes difference for your target system I would say it is not fully XML compliant...
    Target system is an old one called as MID. Yes i agree it is not fully XML Compliant. I am publishing the message through file adapter and it is reading the file.
    But anyway... The trick in the other thread should work... What do you mean by "removing url also" ???
    Using the Namespaces remove xsl code i am getting structure as below. In this alone with prefix name space url also getting removed.
    <RelieveIntransits>
    <RelieveIntransit HeaderID="DA41198901491301" ProductID="D037-63-1270S">
    <RelieveStore StoreID="D001" Units="0002092 " />
    </RelieveIntransit>
    </RelieveIntransits>
    I am expecting like this
    <?xml version="1.0"?>
    <RelieveIntransits xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/RelieveIntransitSchema.xsd">
    <RelieveIntransit HeaderID="DA41198901491301" ProductID="D037-63-1270S">
    <RelieveStore StoreID="D001" Units="0002092 " />
    </RelieveIntransit>
    </RelieveIntransits>

  • Authentication Issues while calling from OSB to REST

    I am routing from a proxy Service in OSB to a REST ful Web Services.I need to apply security settings while calling REST ful services so i created groups which has users who can only call the Web Services.I did all the security settings in the weblogic Server console.
    The authentication works fine but the problem is that when i doesnot give any username or password it should give me a "Authentication required" error.But instead it calls the web services .I need not want that to happen.
    Anyone pls help me in this issue

    My proxy service uses a http protocol and gets the query string and routes it to the business service which is a REST ful based web services.My need is to apply security settings betwwen business service and service component(REST ful based web services).
    I created the security settings in weblogic server console using the following steps
    1.I created an user in the user and groups option in the security realm tab with Default Authenticator as provider selected
    2.I created a Stand-Alone Web Application Scoped Role in the application scope in the security tab with XACML RoleMapper as the provider selected in the war(REST ful web services) file deployed in the console.
    3.I added the user created in the security realm tab in this Stand-Alone Web Application Scoped Role created.
    I then tested the business service(which connects to the REST ful web service component) with username and password in the transport option in testing console as the one created in the server console.
    The business service gives the response only when the username and password matches to the one created or when username/password is weblogic/welcome1(this is the username and password given while creating the OSB domain).
    It should throw me an Authentication failed error when the username is wrong and that works except for the condition that the username and password is empty.
    How to make the service to throw an error when the username and password is empty like the same as when the username is mismatched.
    Help me out in this issue.

  • Issue while migrating from devlopement to test environment

    Hi All,
    I have devloped ODI packages to load data from Oracle table,Text to Hyperion Essbase.Its successfully running on devlopement environment.
    To migrate this on test environment,First I imported Master repository (By importing Zip).Which is successful.
    So,i am able to see all Physical,logical schema,Context on my test environment.
    But while importing Work repository in Inset_Update mode,I am getting following Issue.
    com.sunopsis.core.exception.SnpsSimple messageExeception ###KEY com.sunposis.res.object/DwgDuplicationTools.GeneralImportObjectFailureMsg ###

    Thanks Sankar.
    I have given different "ID" in TEST from DEV,For both Master and work repository.
    When i am taking dump of database from DEV to TEST,its working fine.
    But,i want migration by import/export of master and work repoitory.
    Can you please suggest another solution of this issue.

  • PSU patch issue while dbupgrade from 11.2.0.1 to 11.2.0.3

    Hi,
    Version : 11.2.0.1
    Os : Aix 6
    We recently upgraded from 11.2.0.1 to 11.2.0.3.We completed db upgrade sucessfully.
    We got the follwoing error While applying PSU patch. It shows the patch 13923374 failed.But when i check in opatch lsinventory,it shows that patch is applied.
    root@ppseelm-ax2041:/u01/app/oracle/11.2.0.3/product/ginfra/grid_home/OPatch: ra/grid_home/OPatch/ocm/bin/ocm.rsp <
    Executing /usr/bin/perl ./crs/patch112.pl -patchdir /backup/11203_softwares -patchn patch -ocmrf /u01/app/oracle/11.2.0.3/product/ginfra/grid_home/OPatch/ocm/bin/ocm.rsp -paramfile /u01/app/oracle/11.2.0.3/product/ginfra/grid_home/crs/install/crsconfig_params
    opatch auto log file location is /u01/app/oracle/11.2.0.3/product/ginfra/grid_home/OPatch/crs/../../cfgtoollogs/opatchauto2012-10-21_10-39-53.log
    Detected Oracle Restart install
    Using configuration parameter file: /u01/app/oracle/11.2.0.3/product/ginfra/grid_home/crs/install/crsconfig_params
    patch /backup/11203_softwares/patch/13919095/custom/server/13919095  apply successful for home  /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home
    patch /backup/11203_softwares/patch/13923374  apply  failed  for home  /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home
    Successfully unlock /u01/app/oracle/11.2.0.3/product/ginfra/grid_home
    patch /backup/11203_softwares/patch/13919095  apply successful for home  /u01/app/oracle/11.2.0.3/product/ginfra/grid_home
    patch /backup/11203_softwares/patch/13923374  apply  failed  for home  /u01/app/oracle/11.2.0.3/product/ginfra/grid_home
    ACFS-9300: ADVM/ACFS distribution files found.
    ACFS-9312: Existing ADVM/ACFS installation detected.
    ACFS-9314: Removing previous ADVM/ACFS installation.
    This may take several minutes. Please wait ...
    0518-307 odmdelete: 1 objects deleted.
    0518-307 odmdelete: 1 objects deleted.
    0518-307 odmdelete: 1 objects deleted.
    ACFS-9315: Previous ADVM/ACFS components successfully removed.
    ACFS-9307: Installing requested ADVM/ACFS software.
    ACFS-9359: The AIX ODM entry for 'acfsctl' was successfully added.
    ACFS-9359: The AIX ODM entry for 'advmctl' was successfully added.
    ACFS-9359: The AIX ODM entry for 'advmvol' was successfully added.
    ACFS-9308: Loading installed ADVM/ACFS drivers.
    ACFS-9154: Loading 'oracleadvm.ext' driver.
    ACFS-9154: Loading 'oracleacfs.ext' driver.
    ACFS-9327: Verifying ADVM/ACFS devices.
    ACFS-9156: Detecting control device '/dev/asm/.asm_ctl_spec'.
    ACFS-9156: Detecting control device '/dev/ofsctl'.
    ACFS-9309: ADVM/ACFS installation correctness verified.
    CRS-4123: Oracle High Availability Services has been started.
    opatch lsinventory
    Oracle Interim Patch Installer version 11.2.0.3.0
    Copyright (c) 2012, Oracle Corporation. All rights reserved.
    Oracle Home : /u01/app/oracle/11.2.0.3/product/ginfra/grid_home
    Central Inventory : /u01/app/oracle/11.2.0.1/product/ginfra/grid_home/oraInventory
    from : /u01/app/oracle/11.2.0.3/product/ginfra/grid_home/oraInst.loc
    OPatch version : 11.2.0.3.0
    OUI version : 11.2.0.3.0
    Log file location : /u01/app/oracle/11.2.0.3/product/ginfra/grid_home/cfgtoollogs/opatch/opatch2012-10-21_10-51-03AM_1.log
    Lsinventory Output file location : /u01/app/oracle/11.2.0.3/product/ginfra/grid_home/cfgtoollogs/opatch/lsinv/lsinventory2012-10-21_10-51-03AM.txt
    Installed Top-level Products (1):
    Oracle Grid Infrastructure 11.2.0.3.0
    There are 1 products installed in this Oracle Home.
    Interim patches (2) :
    Patch  13923374     : applied on Thu Oct 11 01:45:16 UTC 2012
    Unique Patch ID: 14912546
    Patch description: "Database Patch Set Update : 11.2.0.3.3 (*13923374*)"
    Created on 14 Jun 2012, 23:16:11 hrs PST8PDT
    Sub-patch 13696216; "Database Patch Set Update : 11.2.0.3.2 (13696216)"
    Sub-patch 13343438; "Database Patch Set Update : 11.2.0.3.1 (13343438)"
    Bugs fixed:
    12880299, 12960925, 14038787, 12612118, 12834027, 13502183, 12764337
    13916709, 13772618, 10133521, 13588248, 9761357, 12894807, 13742435
    12829021, 13742434, 13657605, 13742433, 13742438, 13742437, 13742436
    12905058, 13503598, 9873405, 12582664, 12535346, 13632717, 12861463
    13343438, 12849688, 13696216, 13103913, 13457582, 13742464, 12917230
    13036331, 12938841, 12656535, 13499128, 12678920, 12401111, 13338048
    12913474, 12662040, 12658411, 11063191, 11877623, 12718090, 12847466
    12797765, 12919564, 12780983, 12617123, 12950644, 12923168, 13035360
    13903046, 13923374, 13420224, 13370330, 12646784, 13340388, 10350832
    12998795, 12588744, 13467683, 13528551, 13001379, 12620823, 12797420
    13041324, 13366202, 13527323, 13326736, 13492735, 13981051, 13466801
    13332439, 13035804, 14063281, 14063280, 13362079, 13419660, 9703627
    13070939, 12845115, 12976376, 11840910, 9858539, 12748240, 12780098
    13354082, 14062797, 12879027, 14062796, 14062795, 14062794, 14062793
    14062792, 13554409
    Patch 13919095 : applied on Thu Oct 11 01:41:20 UTC 2012
    Unique Patch ID: 14912546
    Patch description: "Grid Infrastructure Patch Set Update : 11.2.0.3.3 (13919095)"
    Created on 4 Jul 2012, 11:10:31 hrs PST8PDT
    Bugs fixed:
    13919095, 13696251, 13348650, 12659561, 13039908, 13036424, 12794268
    13011520, 13569812, 12758736, 13077654, 13001901, 13430715, 13806545
    14082976, 12771830, 12538907, 13066371, 13483672, 12594616, 12897651
    12897902, 13241779, 12896850, 12726222, 12829429, 12728585, 13079948
    12876314, 13090686, 12925041, 12995950, 13251796, 12650672, 12398492
    12848480, 13652088, 12990582, 13857364, 12975811, 12917897, 13082238
    12947871, 13037709, 13371153, 12878750, 10114953, 11772838, 13058611
    13001955, 11836951, 12965049, 13440962, 12765467, 13425727, 12885323
    13339443, 12784559, 13332363, 13074261, 12971251, 13811209, 12709476
    12857064, 13719731, 13396284, 12899169, 13111013, 12867511, 12639013
    12959140, 13085732, 12829917, 12934171, 12849377, 12349553, 12680491
    12914824, 13789135, 12730342, 13334158, 12950823, 13355963, 13531373
    13776758, 12720728, 13620816, 13002015, 13024624, 12791719, 13886023
    13255295, 13821454, 12782756, 12873909, 12914722, 13243172, 12842804
    13045518, 12765868, 12772345, 13345868, 14059576, 13683090, 12932852
    12695029, 13146560, 13038806, 13396356, 13258062, 12834777, 12996572
    13941934, 13657366, 13019958, 12810890, 13502441, 13726162, 13880925
    13506114, 12820045, 13604057, 12823838, 12823042, 13582706, 13617861
    12825835, 13263435, 13025879, 13853089, 13410987, 13570879, 13637590
    12827493, 13247273, 13068077
    OPatch succeeded.
    Any suggestion
    Thanks.

    Hi,
    Thanks.
    Oracle Interim Patch Installer version 11.2.0.3.0
    Copyright (c) 2012, Oracle Corporation. All rights reserved.
    Oracle Home : /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home
    Central Inventory : /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home/oraInventory
    from : /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home/oraInst.loc
    OPatch version : 11.2.0.3.0
    OUI version : 11.2.0.3.0
    Log file location : /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home/cfgtoollogs/opatch/opatch2012-10-21_13-25-59PM_1.log
    Lsinventory Output file location : /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home/cfgtoollogs/opatch/lsinv/lsinventory2012-10-21_13-25-59PM.txt
    Installed Top-level Products (1):
    Oracle Database 11g 11.2.0.3.0
    There are 1 products installed in this Oracle Home.
    Installed Products (136):
    Agent Required Support Files 10.2.0.4.3
    Assistant Common Files 11.2.0.3.0
    Bali Share 1.1.18.0.0
    Buildtools Common Files 11.2.0.3.0
    Character Set Migration Utility 11.2.0.3.0
    Cluster Verification Utility Common Files 11.2.0.3.0
    Database Configuration and Upgrade Assistants 11.2.0.3.0
    Database SQL Scripts 11.2.0.3.0
    Database Workspace Manager 11.2.0.3.0
    Deinstallation Tool 11.2.0.3.0
    Enterprise Edition Options 11.2.0.3.0
    Enterprise Manager Agent 10.2.0.4.3
    Enterprise Manager Agent Core Files 10.2.0.4.4
    Enterprise Manager Common Core Files 10.2.0.4.4
    Enterprise Manager Common Files 10.2.0.4.3
    Enterprise Manager Database Plugin -- Agent Support 11.2.0.3.0
    Enterprise Manager Database Plugin -- Repository Support 11.2.0.3.0
    Enterprise Manager Grid Control Core Files 10.2.0.4.4
    Enterprise Manager plugin Common Files 11.2.0.3.0
    Enterprise Manager Repository Core Files 10.2.0.4.4
    Exadata Storage Server 11.2.0.1.0
    Expat libraries 2.0.1.0.1
    Generic Connectivity Common Files 11.2.0.3.0
    HAS Common Files 11.2.0.3.0
    HAS Files for DB 11.2.0.3.0
    Installation Common Files 11.2.0.3.0
    Installation Plugin Files 11.2.0.3.0
    Installer SDK Component 11.2.0.3.0
    JAccelerator (COMPANION) 11.2.0.3.0
    LDAP Required Support Files 11.2.0.3.0
    OLAP SQL Scripts 11.2.0.3.0
    Oracle 11g Warehouse Builder Required Files 11.2.0.3.0
    Oracle Advanced Security 11.2.0.3.0
    Oracle Application Express 11.2.0.3.0
    Oracle Call Interface (OCI) 11.2.0.3.0
    Oracle Clusterware RDBMS Files 11.2.0.3.0
    Oracle Code Editor 1.2.1.0.0I
    Oracle Configuration Manager 10.3.5.0.1
    Oracle Configuration Manager Client 10.3.2.1.0
    Oracle Configuration Manager Deconfiguration 10.3.1.0.0
    Oracle Containers for Java 11.2.0.3.0
    Oracle Core Required Support Files 11.2.0.3.0
    Oracle Data Mining RDBMS Files 11.2.0.3.0
    Oracle Database 11g 11.2.0.3.0
    Oracle Database 11g 11.2.0.3.0
    Oracle Database 11g Multimedia Files 11.2.0.3.0
    Oracle Database Deconfiguration 11.2.0.3.0
    Oracle Database Gateway for ODBC 11.2.0.3.0
    Oracle Database User Interface 2.2.13.0.0
    Oracle Database Utilities 11.2.0.3.0
    Oracle Database Vault J2EE Application 11.2.0.3.0
    Oracle Database Vault option 11.2.0.3.0
    Oracle DBCA Deconfiguration 11.2.0.3.0
    Oracle Display Fonts 9.0.2.0.0
    Oracle Enterprise Manager Console DB 11.2.0.3.0
    Oracle Extended Windowing Toolkit 3.4.47.0.0
    Oracle Globalization Support 11.2.0.3.0
    Oracle Globalization Support 11.2.0.3.0
    Oracle Help For Java 4.2.9.0.0
    Oracle Help for the Web 2.0.14.0.0
    Oracle Ice Browser 5.2.3.6.0
    Oracle Internet Directory Client 11.2.0.3.0
    Oracle Java Client 11.2.0.3.0
    Oracle JDBC Server Support Package 11.2.0.3.0
    Oracle JDBC/OCI Instant Client 11.2.0.3.0
    Oracle JDBC/THIN Interfaces 11.2.0.3.0
    Oracle JFC Extended Windowing Toolkit 4.2.36.0.0
    Oracle JVM 11.2.0.3.0
    Oracle Label Security 11.2.0.3.0
    Oracle LDAP administration 11.2.0.3.0
    Oracle Locale Builder 11.2.0.3.0
    Oracle Message Gateway Common Files 11.2.0.3.0
    Oracle Multimedia 11.2.0.3.0
    Oracle Multimedia Annotator 11.2.0.3.0
    Oracle Multimedia Client Option 11.2.0.3.0
    Oracle Multimedia Java Advanced Imaging 11.2.0.3.0
    Oracle Multimedia Locator 11.2.0.3.0
    Oracle Multimedia Locator RDBMS Files 11.2.0.3.0
    Oracle Net 11.2.0.3.0
    Oracle Net Listener 11.2.0.3.0
    Oracle Net Required Support Files 11.2.0.3.0
    Oracle Net Services 11.2.0.3.0
    Oracle Netca Client 11.2.0.3.0
    Oracle Notification Service 11.2.0.3.0
    Oracle Notification Service (eONS) 11.2.0.3.0
    Oracle ODBC Driver 11.2.0.3.0
    Oracle ODBC Driverfor Instant Client 11.2.0.3.0
    Oracle OLAP 11.2.0.3.0
    Oracle OLAP API 11.2.0.3.0
    Oracle OLAP RDBMS Files 11.2.0.3.0
    Oracle One-Off Patch Installer 11.2.0.1.7
    Oracle Partitioning 11.2.0.3.0
    Oracle Programmer 11.2.0.3.0
    Oracle Quality of Service Management (Client) 11.2.0.3.0
    Oracle RAC Deconfiguration 11.2.0.3.0
    Oracle RAC Required Support Files-HAS 11.2.0.3.0
    Oracle Real Application Testing 11.2.0.3.0
    Oracle Recovery Manager 11.2.0.3.0
    Oracle Security Developer Tools 11.2.0.3.0
    Oracle Spatial 11.2.0.3.0
    Oracle SQL Developer 11.2.0.3.0
    Oracle Starter Database 11.2.0.3.0
    Oracle Text 11.2.0.3.0
    Oracle Text Required Support Files 11.2.0.3.0
    Oracle UIX 2.2.24.6.0
    Oracle Universal Connection Pool 11.2.0.3.0
    Oracle Universal Installer 11.2.0.3.0
    Oracle USM Deconfiguration 11.2.0.3.0
    Oracle Wallet Manager 11.2.0.3.0
    Oracle XML Development Kit 11.2.0.3.0
    Oracle XML Query 11.2.0.3.0
    Parser Generator Required Support Files 11.2.0.3.0
    Perl Interpreter 5.10.0.0.2
    Perl Modules 5.10.0.0.1
    PL/SQL 11.2.0.3.0
    PL/SQL Embedded Gateway 11.2.0.3.0
    Platform Required Support Files 11.2.0.3.0
    Precompiler Common Files 11.2.0.3.0
    Precompiler Required Support Files 11.2.0.3.0
    Provisioning Advisor Framework 10.2.0.4.3
    RDBMS Required Support Files 11.2.0.3.0
    RDBMS Required Support Files for Instant Client 11.2.0.3.0
    RDBMS Required Support Files Runtime 11.2.0.3.0
    regexp 2.1.9.0.0
    Required Support Files 11.2.0.3.0
    Sample Schema Data 11.2.0.3.0
    Secure Socket Layer 11.2.0.3.0
    SQL*Plus 11.2.0.3.0
    SQL*Plus Files for Instant Client 11.2.0.3.0
    SQL*Plus Required Support Files 11.2.0.3.0
    SQLJ Runtime 11.2.0.3.0
    SSL Required Support Files for InstantClient 11.2.0.3.0
    Sun JDK 1.5.0.12.4
    XDK Required Support Files 11.2.0.3.0
    XML Parser for Java 11.2.0.3.0
    XML Parser for Oracle JVM 11.2.0.3.0
    There are 136 products installed in this Oracle Home.
    Interim patches (2) :
    Patch 13923374 : applied on Thu Oct 11 01:33:50 UTC 2012
    Unique Patch ID: 14912546
    Patch description: "Database Patch Set Update : 11.2.0.3.3 (13923374)"
    Created on 14 Jun 2012, 23:16:11 hrs PST8PDT
    Sub-patch 13696216; "Database Patch Set Update : 11.2.0.3.2 (13696216)"
    Sub-patch 13343438; "Database Patch Set Update : 11.2.0.3.1 (13343438)"
    Bugs fixed:
    12880299, 12960925, 14038787, 12612118, 12834027, 13502183, 12764337
    13916709, 13772618, 10133521, 13588248, 9761357, 12894807, 13742435
    12829021, 13742434, 13657605, 13742433, 13742438, 13742437, 13742436
    12905058, 13503598, 9873405, 12582664, 12535346, 13632717, 12861463
    13343438, 12849688, 13696216, 13103913, 13457582, 13742464, 12917230
    13036331, 12938841, 12656535, 13499128, 12678920, 12401111, 13338048
    12913474, 12662040, 12658411, 11063191, 11877623, 12718090, 12847466
    12797765, 12919564, 12780983, 12617123, 12950644, 12923168, 13035360
    13903046, 13923374, 13420224, 13370330, 12646784, 13340388, 10350832
    12998795, 12588744, 13467683, 13528551, 13001379, 12620823, 12797420
    13041324, 13366202, 13527323, 13326736, 13492735, 13981051, 13466801
    13332439, 13035804, 14063281, 14063280, 13362079, 13419660, 9703627
    13070939, 12845115, 12976376, 11840910, 9858539, 12748240, 12780098
    13354082, 14062797, 12879027, 14062796, 14062795, 14062794, 14062793
    14062792, 13554409
    Files Touched:
    /kgl.o --> ORACLE_HOME/lib/libgeneric11.a
    /kgl2.o --> ORACLE_HOME/lib/libgeneric11.a
    /kgl4.o --> ORACLE_HOME/lib/libgeneric11.a
    ins_net_client.mk --> ORACLE_HOME/network/lib/client_sharedlib
    /ktb.o --> ORACLE_HOME/lib/libserver11.a
    /kks.o --> ORACLE_HOME/lib/libserver11.a
    /kks1.o --> ORACLE_HOME/lib/libserver11.a
    /ktfa.o --> ORACLE_HOME/lib/libserver11.a
    /qxim.o --> ORACLE_HOME/lib/libserver11.a
    /dbsdrv.o --> ORACLE_HOME/lib/libserver11.a
    /tbsdrv.o --> ORACLE_HOME/lib/libserver11.a
    /kcbz.o --> ORACLE_HOME/lib/libserver11.a
    /qknpr.o --> ORACLE_HOME/lib/libserver11.a
    /kkzg.o --> ORACLE_HOME/lib/libserver11.a
    /kcl.o --> ORACLE_HOME/lib/libserver11.a
    /kkzu.o --> ORACLE_HOME/lib/libserver11.a
    /kau.o --> ORACLE_HOME/lib/libserver11.a
    /qesma.o --> ORACLE_HOME/lib/libserver11.a
    /ctc.o --> ORACLE_HOME/lib/libserver11.a
    /kkpo.o --> ORACLE_HOME/lib/libserver11.a
    /kkpob.o --> ORACLE_HOME/lib/libserver11.a
    /kxcc.o --> ORACLE_HOME/lib/libserver11.a
    /kdlx.o --> ORACLE_HOME/lib/libserver11.a
    /kdlxdup.o --> ORACLE_HOME/lib/libserver11.a
    /kta.o --> ORACLE_HOME/lib/libserver11.a
    /dgl.o --> ORACLE_HOME/lib/libserver11.a
    /kjbl.o --> ORACLE_HOME/lib/libserver11.a
    /kjbr.o --> ORACLE_HOME/lib/libserver11.a
    /kjfc.o --> ORACLE_HOME/lib/libserver11.a
    /kjm.o --> ORACLE_HOME/lib/libserver11.a
    /qke.o --> ORACLE_HOME/lib/libserver11.a
    /kzax.o --> ORACLE_HOME/lib/libserver11.a
    /qesrc.o --> ORACLE_HOME/lib/libserver11.a
    /kksc.o --> ORACLE_HOME/lib/libserver11.a
    /kksh.o --> ORACLE_HOME/lib/libserver11.a
    /kkpod.o --> ORACLE_HOME/lib/libserver11.a
    /kql.o --> ORACLE_HOME/lib/libserver11.a
    /kkt.o --> ORACLE_HOME/lib/libserver11.a
    /atb.o --> ORACLE_HOME/lib/libserver11.a
    /kunid.o --> ORACLE_HOME/lib/libnid.a
    kutable.xsl --> ORACLE_HOME/rdbms/xml/xsl/kutable.xsl
    kutrig.xsl --> ORACLE_HOME/rdbms/xml/xsl/kutrig.xsl
    bundledata_PSU.xml --> ORACLE_HOME/rdbms/admin/bundledata_PSU.xml
    ins_rdbms.mk --> ORACLE_HOME/rdbms/lib/ioracle
    ins_rdbms.mk --> ORACLE_HOME/rdbms/lib/irenamedg
    ins_rdbms.mk --> ORACLE_HOME/rdbms/lib/inid
    ins_rdbms.mk --> ORACLE_HOME/rdbms/lib/client_sharedlib
    catpsu.sql --> ORACLE_HOME/psu/11.2.0.3.3/catpsu.sql
    catpsu_rollback.sql --> ORACLE_HOME/psu/11.2.0.3.3/catpsu_rollback.sql
    bug9858539.sql --> ORACLE_HOME/psu/scripts/bug9858539.sql
    prvsawr.plb --> ORACLE_HOME/rdbms/admin/prvsawr.plb
    prvtawr.plb --> ORACLE_HOME/rdbms/admin/prvtawr.plb
    prvtawrs.plb --> ORACLE_HOME/rdbms/admin/prvtawrs.plb
    /nae.o --> ORACLE_HOME/lib/libn11.a
    /nsglsn.o --> ORACLE_HOME/network/lib/libnlsnr11.a
    ins_net_client.mk --> ORACLE_HOME/network/lib/client_sharedlib
    ins_net_server.mk --> ORACLE_HOME/network/lib/itnslsnr
    /oracle/sysman/db/adm/BaseController.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /oracle/sysman/db/adm/inst/SPIAChecklistController.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /oracle/sysman/db/adm/inst/SPIAExadataController.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /oracle/sysman/db/adm/inst/SPIAOptimizerStatsController.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /oracle/sysman/db/adm/inst/SPIAParameterChangeController.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /oracle/sysman/db/adm/inst/SPIAUpgradeController.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /oracle/sysman/db/adm/inst/StsImExportController.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /oracle/sysman/emo/adm/DBMonitoringObject.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /oracle/sysman/emo/perf/bean/spia/TrialsComparisonBean.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /_database/_instance/_spia/_createSqlReplay.class --> ORACLE_HOME/sysman/jlib/emdb_emjsp.jar
    /_database/_instance/_spia/_optimizerStats.class --> ORACLE_HOME/sysman/jlib/emdb_emjsp.jar
    /_database/_instance/_spia/_parameterChange.class --> ORACLE_HOME/sysman/jlib/emdb_emjsp.jar
    /_database/_instance/_spia/_sage.class --> ORACLE_HOME/sysman/jlib/emdb_emjsp.jar
    /_database/_instance/_spia/_trialComparison.class --> ORACLE_HOME/sysman/jlib/emdb_emjsp.jar
    /_database/_instance/_spia/_upgrade.class --> ORACLE_HOME/sysman/jlib/emdb_emjsp.jar
    /_database/_instance/_spia/_upgrade2.class --> ORACLE_HOME/sysman/jlib/emdb_emjsp.jar
    /_database/_instance/_sqlset/_stsExport.class --> ORACLE_HOME/sysman/jlib/emdb_emjsp.jar
    /_database/_instance/_sqlset/_stsImport.class --> ORACLE_HOME/sysman/jlib/emdb_emjsp.jar
    /k2.o --> ORACLE_HOME/lib/libserver11.a
    /k2r.o --> ORACLE_HOME/lib/libserver11.a
    /k2s.o --> ORACLE_HOME/lib/libserver11.a
    /kcb.o --> ORACLE_HOME/lib/libserver11.a
    /kcf.o --> ORACLE_HOME/lib/libserver11.a
    /kcm.o --> ORACLE_HOME/lib/libserver11.a
    /kcs.o --> ORACLE_HOME/lib/libserver11.a
    /kcv.o --> ORACLE_HOME/lib/libserver11.a
    /kdd.o --> ORACLE_HOME/lib/libserver11.a
    /kds.o --> ORACLE_HOME/lib/libserver11.a
    /kdst.o --> ORACLE_HOME/lib/libserver11.a
    /kdst00.o --> ORACLE_HOME/lib/libserver11.a
    /kdst01.o --> ORACLE_HOME/lib/libserver11.a
    /kdst11.o --> ORACLE_HOME/lib/libserver11.a
    /kdstrr.o --> ORACLE_HOME/lib/libserver11.a
    /kdt.o --> ORACLE_HOME/lib/libserver11.a
    /kdza.o --> ORACLE_HOME/lib/libserver11.a
    /kdzh.o --> ORACLE_HOME/lib/libserver11.a
    /kdzs.o --> ORACLE_HOME/lib/libcommon11.a
    /kfd.o --> ORACLE_HOME/lib/libserver11.a
    /kfds.o --> ORACLE_HOME/lib/libserver11.a
    /kfe.o --> ORACLE_HOME/lib/libserver11.a
    /kff.o --> ORACLE_HOME/lib/libserver11.a
    /kfg.o --> ORACLE_HOME/lib/libserver11.a
    /kfksubs.o --> ORACLE_HOME/lib/libserver11.a
    /kfx.o --> ORACLE_HOME/lib/libserver11.a
    /kgodm.o --> ORACLE_HOME/lib/libgeneric11.a
    /kjb.o --> ORACLE_HOME/lib/libserver11.a
    /kjbm.o --> ORACLE_HOME/lib/libserver11.a
    /kjcl.o --> ORACLE_HOME/lib/libserver11.a
    /kjdx.o --> ORACLE_HOME/lib/libserver11.a
    /kjfs.o --> ORACLE_HOME/lib/libserver11.a
    /kji.o --> ORACLE_HOME/lib/libserver11.a
    /kjs.o --> ORACLE_HOME/lib/libserver11.a
    /kju.o --> ORACLE_HOME/lib/libserver11.a
    /kjx.o --> ORACLE_HOME/lib/libserver11.a
    /kkxwtp.o --> ORACLE_HOME/rdbms/lib/libknlopt.a
    /kkz.o --> ORACLE_HOME/lib/libserver11.a
    /knl.o --> ORACLE_HOME/lib/libserver11.a
    /koks3.o --> ORACLE_HOME/lib/libserver11.a
    /kpoal8.o --> ORACLE_HOME/lib/libserver11.a
    /kpostr.o --> ORACLE_HOME/lib/libserver11.a
    /kqlp.o --> ORACLE_HOME/lib/libserver11.a
    /ksfd.o --> ORACLE_HOME/lib/libserver11.a
    /kspt.o --> ORACLE_HOME/lib/libserver11.a
    /ksut.o --> ORACLE_HOME/lib/libserver11.a
    /ktsa.o --> ORACLE_HOME/lib/libserver11.a
    /ktsi.o --> ORACLE_HOME/lib/libserver11.a
    /ktsla.o --> ORACLE_HOME/lib/libserver11.a
    /ktslj.o --> ORACLE_HOME/lib/libserver11.a
    /ktslm.o --> ORACLE_HOME/lib/libserver11.a
    /ktslur.o --> ORACLE_HOME/lib/libserver11.a
    /ktss.o --> ORACLE_HOME/lib/libserver11.a
    /ktt.o --> ORACLE_HOME/lib/libserver11.a
    /kzft.o --> ORACLE_HOME/lib/libserver11.a
    /kzp.o --> ORACLE_HOME/lib/libserver11.a
    /kzrt.o --> ORACLE_HOME/lib/libserver11.a
    /mdopp.o --> ORACLE_HOME/lib/libordsdo11.a
    /ncodef.o --> ORACLE_HOME/lib/libserver11.a
    /npi.o --> ORACLE_HOME/lib/libserver11.a
    /opial7.o --> ORACLE_HOME/lib/libserver11.a
    /opiexe.o --> ORACLE_HOME/lib/libserver11.a
    /oracle/sysman/db/adm/DBController.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /oracle/sysman/db/adm/schm/GrantObjPrivsController.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /oracle/sysman/eml/ecm/sc/Operator$BuiltInIds.class --> ORACLE_HOME/sysman/jlib/emCORE.jar
    /oracle/sysman/eml/ecm/sc/Operator$Parameters.class --> ORACLE_HOME/sysman/jlib/emCORE.jar
    /oracle/sysman/eml/ecm/sc/Operator$TokenSeparatorWords.class --> ORACLE_HOME/sysman/jlib/emCORE.jar
    /oracle/sysman/eml/ecm/sc/Operator$Tokenizations.class --> ORACLE_HOME/sysman/jlib/emCORE.jar
    /oracle/sysman/eml/ecm/sc/Operator.class --> ORACLE_HOME/sysman/jlib/emCORE.jar
    /oracle/sysman/emo/adm/usage/UsageSQLGenerator.class --> ORACLE_HOME/sysman/jlib/emDB.jar
    /prsc.o --> ORACLE_HOME/lib/libserver11.a
    /psdicd.o --> ORACLE_HOME/lib/libserver11.a
    /psdmsc.o --> ORACLE_HOME/lib/libserver11.a
    /psdpgi.o --> ORACLE_HOME/lib/libserver11.a
    /psdsys.o --> ORACLE_HOME/lib/libserver11.a
    /qcodfdef.o --> ORACLE_HOME/lib/libgeneric11.a
    /qcodfdef_PERF.o --> ORACLE_HOME/rdbms/lib/libperfsrv11.a
    /qct.o --> ORACLE_HOME/lib/libgeneric11.a
    /qerrm.o --> ORACLE_HOME/lib/libserver11.a
    /qertb.o --> ORACLE_HOME/lib/libserver11.a
    /qsmqcsm.o --> ORACLE_HOME/lib/libserver11.a
    asmcmdcore --> ORACLE_HOME/bin/asmcmdcore
    c1102000.sql --> ORACLE_HOME/rdbms/admin/c1102000.sql
    catfusrg.sql --> ORACLE_HOME/rdbms/admin/catfusrg.sql
    catpsu.sql --> ORACLE_HOME/psu/11.2.0.3.1/catpsu.sql
    catpsu.sql --> ORACLE_HOME/psu/11.2.0.3.2/catpsu.sql
    catpsu_rollback.sql --> ORACLE_HOME/psu/11.2.0.3.1/catpsu_rollback.sql
    catpsu_rollback.sql --> ORACLE_HOME/psu/11.2.0.3.2/catpsu_rollback.sql
    e1102000.sql --> ORACLE_HOME/rdbms/admin/e1102000.sql
    kkxwtp.o --> ORACLE_HOME/rdbms/lib/kkxwtp.o
    kspasv0.var --> ORACLE_HOME/rdbms/admin/kspasv0.var
    oraus.msb --> ORACLE_HOME/rdbms/mesg/oraus.msb
    oraus.msg --> ORACLE_HOME/rdbms/mesg/oraus.msg
    Patch Location in Inventory:
    /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home/inventory/oneoffs/13923374
    /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home/inventory/oneoffs/13696216
    /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home/inventory/oneoffs/13343438
    Patch Location in Storage area:
    /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home/.patch_storage/13923374_Jun_14_2012_23_16_11
    Patch 13919095 : applied on Thu Oct 11 01:31:19 UTC 2012
    Unique Patch ID: 14912546
    Patch description: "Grid Infrastructure Patch Set Update : 11.2.0.3.3 (13919095)"
    Created on 4 Jul 2012, 11:10:31 hrs PST8PDT
    Bugs fixed:
    13919095, 13696251, 13348650, 12659561, 13039908, 13036424, 12794268
    13011520, 13569812, 12758736, 13077654, 13001901, 13430715, 13806545
    14082976, 12771830, 12538907, 13066371, 13483672, 12594616, 12897651
    12897902, 13241779, 12896850, 12726222, 12829429, 12728585, 13079948
    12876314, 13090686, 12925041, 12995950, 13251796, 12650672, 12398492
    12848480, 13652088, 12990582, 13857364, 12975811, 12917897, 13082238
    12947871, 13037709, 13371153, 12878750, 10114953, 11772838, 13058611
    13001955, 11836951, 12965049, 13440962, 12765467, 13425727, 12885323
    13339443, 12784559, 13332363, 13074261, 12971251, 13811209, 12709476
    12857064, 13719731, 13396284, 12899169, 13111013, 12867511, 12639013
    12959140, 13085732, 12829917, 12934171, 12849377, 12349553, 12680491
    12914824, 13789135, 12730342, 13334158, 12950823, 13355963, 13531373
    13776758, 12720728, 13620816, 13002015, 13024624, 12791719
    Files Touched:
    cluvfyrac.sh --> ORACLE_HOME/bin/cluvfyrac.sh
    crsdiag.pl --> ORACLE_HOME/bin/crsdiag.pl
    gnsd --> ORACLE_HOME/bin/gnsd
    lsnodes --> ORACLE_HOME/bin/lsnodes
    racgwrap --> ORACLE_HOME/bin/racgwrap
    racgwrap.sbs --> ORACLE_HOME/bin/racgwrap.sbs
    srvconfig --> ORACLE_HOME/bin/srvconfig
    rootofs.sh --> ORACLE_HOME/crs/install/rootofs.sh
    s_crsconfig_defs --> ORACLE_HOME/crs/install/s_crsconfig_defs
    env_has.mk --> ORACLE_HOME/crs/lib/env_has.mk
    crsar.msb --> ORACLE_HOME/crs/mesg/crsar.msb
    sclsus.msg --> ORACLE_HOME/srvm/mesg/sclsus.msg
    srvm.jar --> ORACLE_HOME/oui/jlib/srvm.jar
    srvmasm.jar --> ORACLE_HOME/oui/jlib/srvmasm.jar
    libsrvm11.so --> ORACLE_HOME/oui/lib/aix/libsrvm11.so
    ins_srvm.mk --> ORACLE_HOME/srvm/lib/install_srvm
    ins_has.mk --> ORACLE_HOME/racg/lib/install
    Patch Location in Inventory:
    /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home/inventory/oneoffs/13919095
    Patch Location in Storage area:
    /u01/app/oracle/11.2.0.3/product/rdbms/oracle_home/.patch_storage/13919095_Jul_4_2012_11_10_31
    OPatch succeeded.
    You have mail in /usr/spool/mail/oracle
    Thanks

  • EJB perfomance issue while migrating from weblogic 10.0 to 10.3

    Hi,
    I have an EJB service which I am migrating from 10.0 to 10.3
    The service contains an entityManager.find() method which takes less than 2 secs to execute on 10.0 and more than 10 secs on 10.3.
    The code snippet and the log trace are as below --
    Code:
          logger.debug("Looking up Person for id " + personId);
       Person info = entityMngr.find(Person.class, personId);
        if(info != null) {
            logger.debug("Found Person" + info.getFirstName() + " " + info.getLastName() + " for id " + personId);
    log entries:
    05/31/2010 *02:35:25,197* DEBUG persistence.bean.PersistenceService [[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)':822] - Looking up Person for id 12014
    05/31/2010 *02:35:36,272* DEBUG persistence.bean.PersistenceService [[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)':829] - Found Person Vitasha Harinarine for id 12014
    Could somebody please help me debugging this issue? The code has not changed before migrating to 10.3. I have checked that the datasources on both environments are exactly the same.
    Any help would be greatly appreciated.
    Thanks in advance!
    Regards,
    Nishtha

    Don't do that. The ClassLoader used to manage web components is the child of the classloader used to manage EJB components - the servlet can use EJB classes, the EJB's cannot use web classes.
    This is also very poor practice as it couples the business logic layers of you system to the presentation - only the reverse should be done. WLS 6.0 is behaving appropriately.
    Chuck

  • Facing Issue while running from on desktop through oracle form builder 10g.

    Dear All,
    I am facing No plugin to show content error while trying to run oracle from on desktop through form builder 10g. please help.
    Thanks,
    Pradeep

    I am facing No plugin to show content error while trying to run oracle from on desktop through form builder 10g. What is your OS version?
    What Java version are you using?
    Have you configured your Oracle Developer Suite (ODS) 10g to run forms from the Forms Builder?
    Craig...

  • Issue while moving from string to field symbol -- waiting for help

    Hi Abap Experts,
    At present I got stucked here at client place. Please help me . Thanks in advance.
    I have a structure in field symbol. I also have data in the string (rec ty )
    I need to move it to corresponding fields in the field symbol. While moving, it is giving a dump.
    data:linetype type string,
    struc type ref to DATA.
    field-symbols: <fs> type any.
    linetype = i_strucname.
    " Get internal table and attach the field-symbol
    CREATE DATA struc type standard table OF (linetype).
    ASSIGN struc->* TO <fs>.
    <fs> = string. (dump is occuring here)

    Hi,
    My code:
    data:linetype type string,
    struc type ref to DATA.
    field-symbols: <fs> type any ,
    <f1> type any .
    linetype = i_strucname (Z structure)
    " Get internal table and attach the field-symbol
    CREATE DATA struc type standard table OF (linetype).
    ASSIGN struc->* TO <fs>.
    I need to populate the Z structure at runtime with the appropriate field values from the string.
    for example:
    input: abc \ \xyz
    structure: first ffield length 10,   " MY Z STRUCTURE
                   second field length 5
                    third field length 10.
    output: abc        xyz         
    I get the structures dynamically.

  • Substitution Variable Issue while exporting from Essbase.sec file

    Hello All,
    I have an unusually distinct problem.
    I have 2 environments (Development and Production) where each environment has a seperate server with Essbase installed in it.
    When I tried to get information of the Substitution variables using the 'export security_file to data_file' command through MaxL and then checked the output file in Development, it showed me the right number of substitution variables and their values.
    But when I did he same with my Production environment it gives exactly 1 less no of substitution variables in the export file, specifically the last substitution variable that was updated through the Essbase Administration Console.
    I guess it is not updating the Essbase.sec file with the last updated Substitution variable. But I can't understand why since the same functionality works in development but not in production.
    Thank You.

    Hi all,
    In addition, I exported the Essbase.sec file after a long time after changing the Substitution variable and now it does show the updated substitution variable.
    I feel that Essbase does refresh the Essbase.sec file but after a long time. Is there some setting within Essbase that is done which refreshes the artifact files after a while. Or is this a setting within the system in which Essbase has been installed (in my case Linux).
    Also the Substitution Variable that has been created is for (all apps) and (all dbs). Is this the reason why this is not working because I tried changing some other Substitution variable which is for a specific app and a specific dbs and it worked fine.
    Thank You.
    Edited by: 923021 on 27 Mar, 2012 6:15 AM

  • Class loading issue while upgrading from SJS Identity Manager 6.0 to 7.1

    Hi,
    I am trying to upgrade my SJS Identity Manager 6.0 installation to 7.1 version.
    My setup for same includes:
    OS: Suse Linux 9 Enterprise Server
    Identity Repository: Oracle 9i
    SJS Identity Manager 6.0 to 7.1
    Application Server: Weblogic AS 8.1.4
    Problem Description: When I tried to deploy my IDM installation on Weblogic after the upgrade process, it fails with following stack trace on the console:
    Caused by: java.lang.NoClassDefFoundError: javax/management/NotificationEmitter
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    at com.waveset.task.TaskManager.<init>(TaskManager.java:96)
    at com.waveset.server.Server.init(Server.java:567)
    at com.waveset.server.Server.start(Server.java:237)
    at com.waveset.server.Server.getServer(Server.java:826)
    at com.waveset.server.Server.getServer(Server.java:803)
    at com.waveset.server.StartupServlet.startServer(StartupServlet.java:441)
    at com.waveset.server.StartupServlet.init(StartupServlet.java:116)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java: 1028)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:32 1)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:904)
    ... 21 more
    Where can I find this class?
    Please help.

    Hi,
    I am trying to upgrade my SJS Identity Manager 6.0 installation to 7.1 version.
    My setup for same includes:
    OS: Suse Linux 9 Enterprise Server
    Identity Repository: Oracle 9i
    SJS Identity Manager 6.0 to 7.1
    Application Server: Weblogic AS 8.1.4
    Problem Description: When I tried to deploy my IDM installation on Weblogic after the upgrade process, it fails with following stack trace on the console:
    Caused by: java.lang.NoClassDefFoundError: javax/management/NotificationEmitter
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    at com.waveset.task.TaskManager.<init>(TaskManager.java:96)
    at com.waveset.server.Server.init(Server.java:567)
    at com.waveset.server.Server.start(Server.java:237)
    at com.waveset.server.Server.getServer(Server.java:826)
    at com.waveset.server.Server.getServer(Server.java:803)
    at com.waveset.server.StartupServlet.startServer(StartupServlet.java:441)
    at com.waveset.server.StartupServlet.init(StartupServlet.java:116)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java: 1028)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:32 1)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:904)
    ... 21 more
    Where can I find this class?
    Please help.

  • Issues while upgrading from 9.2.0.6.0 to 10.2.0.4

    Hi Team,
    I am performing a db upgrade for 11i EBS aplplication. https://support.us.oracle.com/oip/faces/secure/km/DocumentDisplay.jspx?id=1135973.1.
    I am running the dbua. and am into 7% into it. I am getting Error " insufficient priveleges".
    I tried the below.
    Logged in as oracle user:
    -bash-3.00$ id
    uid=60105105(ora5105) gid=60405105(ems5105) groups=60405105(ems5105)
    In the NEw oracle home:
    /slot/ems5105/oracle/10.2.0/rdbms/lib/
    /slot/ems5105/oracle/10.2.0/rdbms/lib
    -bash-3.00$ cat config.c
    /* SS_DBA_GRP defines the UNIX group ID for sqldba adminstrative access. */
    /* Refer to the Installation and User's Guide for further information. */
    #define SS_DBA_GRP "em5105"
    #define SS_OPER_GRP "em5105"
    char *ss_dba_grp[] = {SS_DBA_GRP, SS_OPER_GRP};
    But still getting the error. Please help me on this.
    thanks very much in advance
    shyam.

    My old oracle home is :
    echo $ORACLE_HOME
    /slot/ems5105/oracle/env11ic2db/9.2.0
    this is the one which needs to be upgrade to 10.2.04.
    entries from /etc/oratab=
    *env11ic2:/slot/ems5105/oracle/env11ic2db/9.2.0:N
    Before trying to run sqlplus "/as sydba" from the 10g OH I have set the below parameters:
    export ORACLE_HOME=/slot/ems5105/oracle/10.2.0
    export ORACLE_BASE=/slot/ems5105/oracle
    export PATH=$ORACLE_HOME/bin:$PATH
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    export PERL5LIB=$ORACLE_HOME/perl/lib/5.10.0:$ORACLE_HOME/perl/lib/site_perl/5.10.0
    export ORA_NLS10=/slot/ems5105/oracle/10.2.0/nls/data/9idata
    export ORA_TZFILE=/slot/ems5105/oracle/10.2.0/oracore/zoneinfo/timezone.dat
    and when I try to login as sqlplus "/ as sysdba"
    -bash-3.00$ sqlplus "/as sysdba"
    SQL*Plus: Release 10.2.0.4.0 - Production on Mon Sep 20 11:18:33 2010
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    ERROR:
    ORA-01031: insufficient privileges
    May be thats the reason why dbua is also not working.
    Could the experts team help me on the same, how to proceed further.

  • Issue while migrating from File to DB based repository for SAP adapter

    Hi
    I recently migrated from file based repository to DB based repository.
    SAP Adapter: DB repository for JCA configuration
    After that I created the new targets and the jca log file showed me correct entry saying that it read from DB repository.
    Thread[Thread-6,6,main] [info ] Repository URL 'jdbc:oracle:thin:@db_host:1521/fmwdbqa' resolved to repositoty type: oracle
    But when I restarted the weblogic server I observed that it is again reading from the file repository.
    Thread[[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads] [info ] Repository URL 'file:///opt/apps/Oracle/Middleware/Oracle_SOA1/soa/thirdparty/ApplicationAdapters/config/XYZ/repository.xml' resolved to repositoty type: file
    Any reason why this is happening? Any other setting required to avoid this?
    Regards
    Subhankar

    Hi Manoj
    I checked the web.xml under MW_HOME/Oracle_SOA1/soa/thirdparty/ApplicationAdapters/iwafjca.war/WEB-INF folder. The iway.jndi is set to below :
    <param-name>iway.jndi</param-name>
    <param-value>eis/OracleJCAAdapter/DefaultConnection</param-value>
    I checked the outbound connection settings from Admin console under below path
    Home >Summary of Deployments >iwafjca > configuration
    I can see that the properties IWayRepoURL, IWayRepoUser and IWayRepoPassword are set to blank here. Where exactly are these property values picked from ? Or do I need to manually edit it here in admin console itself?
    Regards
    Subhankar

Maybe you are looking for