Patch Wizard - Details Result is empty

Just setup Patch Wizard in a Test R12.1.3 environment.
Everything seemed to go as planned.
Just chose the default 'Recommended Patches' filter
- all the Requests completed Normally
- Recommended Patches Results Page shows Unapplied=248; Total (Applied and Unapplied=346)
But when I click on the Details Icon at the far right hand side of the page it doesn't list anything?
Before I ran Patch Wizard I applied 17270136 (but I applied it hot so now I am thinking perhaps I need to bounce it?).

Yes, please bounce the application services and check then.
Please also see (Using Patch Wizard, Getting Impact Analysis Reports for some Patches and Trying to Understand Why This Is Not Being Produced for Other Patches? (Doc ID 1586700.1)).
Thanks,
Hussein

Similar Messages

  • Patch Wizard - Support Filter question

    I've installed the Support Filter on my 11.5.10 CU2 system and ran it as a test to make sure my system would qualify for Extended Support.
    The overall status of the job shows Recommended=0 and New Code level=0 so at first appearance it looks good.
    However if I check the job status and sub requests of my 'Support' job I see a couple of requests that ended with warning.
    The first job 'Submit Recommended Patches (wrapper) shows this in the Request Log:
    **WARNING: Some patch information not uploaded correctly**
    Patches which encountered problems during Upload:
    1. 2147366
    2. 2372715
    If I look a little closer I see there are some INFO lines that say:
    INFO: The patch does not contain f2147366.ldt since it is an old patch. Patch Advisor cannot be used for this patch.
    INFO: The patch does not contain f2372715.ldt since it is an old patch. Patch Advisor cannot be used for this patch.
    The jobs after that finish as Completed Normal" but the last job PWSTATUSTRACKER ends with 'warning' and the request logs shows:
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    Status Tracker: This request set is the dummy request to track the status of individual requests and assign the right status to the request set
    Current request id : 783826
    Current request set id : 783544
    783783 Normal
    783779 Normal
    783776 Normal
    783774 Normal
    783771 Normal
    783546 Warning
    783825 Paused
    Overall request set Status is Error
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    So is the overall status 'warning' due to the error where a couple of patches couldn't be uploaded but otherwise looks good.
    My next step would be to submit a 'Recommended Patches' job or the 'Recommended and New Code Levels"?

    Hi,
    So is the overall status 'warning' due to the error where a couple of patches couldn't be uploaded but otherwise looks good.You will need to download those patches and apply it manually -- Please see (OAM PADOWNLOAD AND PAANALYSIS CANNOT DIFFERENTIATE BETWEEN 11.0 AND 11i PATCHES [ID 352212.1]) for details.
    My next step would be to submit a 'Recommended Patches' job or the 'Recommended and New Code Levels"?Please see (Patch Wizard Utility [ID 976188.1]).
    Thanks,
    Hussein

  • Export Patch wizard report to excel

    Hi,
    Is there a way to export the recommended patches list generated from the patch wizard to excel? I have tried the export to excel option but it failing.
    Thanks,
    Keith

    OK here you go. You need the request id from submit recommend patches - so from recommended patches results page click on the request set id link and then get the Submit Analyze Patches (Wrapper) request id in.
    Recommended...
    select
    adp.bug_number patch_name,
    adp.product_family_abbreviation ,
    ad_pa_validate_criteriaset.get_cs_prod_fam_abbr(adp.product_abbreviation) product_family_abbreviation,
    nvl(adp.product_abbreviation, ' ') ,
    adp.bug_description ,
    DECODE(adp.IS_FAMILY_PACK,'Y','Family Pack')||
    DECODE(adp.IS_MAINT_PACK,'Y','Maintenance Pack')||
    DECODE(adp.IS_MINI_PACK,'Y','Mini Pack')||
    DECODE(adp.IS_HIGH_PRIORITY,'Y','High Priority Patch',NVL(adp.patch_type,'User Request')) Patch_Type ,
    (SELECT COUNT(*) FROM ad_pa_anal_run_bug_prereqs aparbp
    WHERE adb.analysis_run_bug_id = aparbp.analysis_run_bug_id ) prereq_cnt,
    DECODE (adh.bug_number, NULL, 'N', 'Y'),
    adt.name ,
    adb.analysis_run_id ,
    analysis_run_bug_id ,
    ads.snapshot_id ,
    ad_pa_validate_criteriaset.get_cs_prod_fam_name(adp.product_abbreviation) product_family_name ,
    appi.product_name ,
    (SELECT COUNT(*) FROM ad_pa_anal_run_bug_codelevels aparbc
    WHERE adb.analysis_run_bug_id = aparbc.analysis_run_bug_id ) level_cnt ,
    decode (adb.analysis_status,'MISSING','Missing','READY','Unapplied','APPLIED','Applied',adb.analysis_status) patch_status ,
    nvl(decode(adp.has_msi_steps,'Y','Yes','N','No',adp.has_msi_steps), ' ') hasMsiSteps ,
    adp.baseline ,
    adp.entity_abbr ,
    adp.patch_id
    from
    ad_pm_patches adp ,
    ad_appl_tops adt ,
    ad_pa_analysis_run_bugs adb ,
    ad_pm_product_info appi ,
    ad_snapshots ads
    ,ad_hidden_patches adh
    where
    adb.analysis_run_id = 402352 --<requestid>
    and adb.analysis_status in ('MISSING','READY','APPLIED')
    and ads.SNAPSHOT_TYPE = 'G'
    and adt.NAME ='GLOBAL'
    and adb.RECOMMENDED_PATCH_TYPE in ('1','3')
    and adb.appl_top_id = adt.APPL_TOP_ID
    and ads.appl_top_id = adt.APPL_TOP_ID
    and appi.product_abbreviation = adp.product_abbreviation
    and adb.bug_number = adp.BUG_NUMBER
    and adb.baseline = adp.baseline
    and adp.patch_metadata_key = 'DEFAULT'
    and (adp.is_high_priority = 'Y' OR adp.is_code_level='N' )
    and adh.bug_number(+) = adp.BUG_NUMBER
    order by patch_name
    New Code ...
    select
    adp.bug_number patch_name,
    adp.product_family_abbreviation ,
    ad_pa_validate_criteriaset.get_cs_prod_fam_abbr(adp.product_abbreviation) product_family_abbreviation,
    nvl(adp.product_abbreviation, ' ') ,
    adp.bug_description ,
    INITCAP(NVL(adp.patch_type,'User Request')) Patch_Type ,
    (SELECT COUNT(*) FROM ad_pa_anal_run_bug_prereqs aparbp
    WHERE adb.analysis_run_bug_id = aparbp.analysis_run_bug_id ) prereq_cnt,
    DECODE (adh.bug_number, NULL, 'N', 'Y'),
    adt.name ,
    adb.analysis_run_id ,
    analysis_run_bug_id ,
    ads.snapshot_id ,
    ad_pa_validate_criteriaset.get_cs_prod_fam_name(adp.product_abbreviation) product_family_name ,
    appi.product_name ,
    (SELECT COUNT(*) FROM ad_pa_anal_run_bug_codelevels aparbc
    WHERE adb.analysis_run_bug_id = aparbc.analysis_run_bug_id ) level_cnt ,
    decode (adb.analysis_status,'MISSING','Missing','READY','Unapplied','APPLIED','Applied',adb.analysis_status) patch_status ,
    nvl(decode(adp.has_msi_steps,'Y','Yes','N','No',adp.has_msi_steps), ' ') hasMsiSteps ,
    adp.baseline ,
    adp.entity_abbr ,
    adp.patch_id
    from
    ad_pm_patches adp ,
    ad_appl_tops adt ,
    ad_pa_analysis_run_bugs adb ,
    ad_pm_product_info appi ,
    ad_snapshots ads
    ,ad_hidden_patches adh
    where
    adb.analysis_run_id = 402352 --<request_id>
    and adb.analysis_status in ('MISSING','READY','APPLIED')
    and ads.SNAPSHOT_TYPE = 'G'
    and adt.NAME ='GLOBAL'
    and adb.appl_top_id = adt.APPL_TOP_ID
    and ads.appl_top_id = adt.APPL_TOP_ID
    and appi.product_abbreviation = adp.product_abbreviation
    and adb.bug_number = adp.BUG_NUMBER
    and adb.baseline = adp.baseline
    and adp.patch_metadata_key = 'DEFAULT'
    and adp.is_code_level = 'Y'
    and adh.bug_number(+) = adp.BUG_NUMBER
    order by patch_name

  • Patch Wizard report in ebs 12.1.3

    Hi All,
    I am using ebs 12.1.3 in oul5x64 . Using patch wizard to run analysis on a patch and i could go in OAM
    to check for Patch Impact Analysis for Patch ...Everything works as it supposes to.
    Questions:
    I can view the "Patch Impact Analysis for Patch" in OAM  but how can i print it out. I could not
    find the print out feature anywhere or how can i use sqlplus to print out the result.
    Appreciate if someone can advise or provide Oracle notes for this issue.
    Thanks in advance.
    Regards.

    This feature is not available yet and we already have (ER 9703082 -- PROVIDE REPORT OR EXPORT BUTTON FOR PATCH WIZARD OUTPUT SUMMARY+IMPACT ANALYSIS) logged for the same.
    Thanks,
    Hussein

  • Error - While Updating Metalink Credentials for Patch Wizard in R12

    Error coming while doing : Update Metalink Credentials for Patch Wizard
    "Unable to connect to Metalink. Please enter a valid Metalink userid and password. Please also check if the Web Proxy Setup information is correct."
    We are not using Proxy Server. When i try to login to Support.oracle.com using same user it works. But throwing error using Patch Wizard. Can anyone tell me that why this error is coming ??
    Regards,
    Priyanka Pawar

    Regarding Backup as it is Application Level patch, is it fine if i take Backup of $ORACLE_HOME for Application Tier ?You will have to take a full backup (which means all the application/database tier files -- i.e. all the directories after you shutdown all the services cleanly).
    1. After that I need to 'Enable Maintenance Mode' using adadmin utility
    applmgr>$adadmin
    2. Source Env file for Application Tier
    applmgr>$ . SID_hostname.endYou mean env file.
    3. Stop all Application Services
    applmgr>$ . adstpall.sh
    4. Copy patch to Directory
    5. Unzip
    6. applmgr>$ cd /u01/patch/10629956
    7. After that apply patch using adpatch utility
    applmgr>$ adpatch
    8. Disable Maintenance Mode
    9. Start Application Tier Services
    10. Retest Correct.
    Can I follow these steps ? Yes.
    By default value of parameter "apply" is "y" so does it apply patch intest mode? I nned to specify it to "n" or should i test it first as i m doing this first time. You do not need to test it if you take a backup, and this is a small patch so you should be OK :)
    If in case anything goes wrong can I restore my Application Services back using old Oracle_Home backup ?Yes.
    Note: Please edit the post before the previous one as it contains the contents of MOS document and this violates Oracle support agreement policy.
    Thanks,
    Hussein

  • R12.1.3 - Patch Wizard no longer working after CPU upgrade

    R12.1.3 on RH Linux x86_64.
    Just upgraded my R12.1.3 environment to get to the Jan 2013 CPU level and decided to setup Patch Wizard to see what it shows now.
    Previously I had to apply patch "10629956 - Oracle Applications Patch Wizard" to get patch wizard to work with our proxy server.
    Initially I just went ahead and applied that patch again to my new config but still couldn't get past this error:
    Validation Error. Please check the indicated fields below.
    Unable to connect to Metalink. Please enter a valid Metalink userid and password.
    Please also check if the Web Proxy Setup information is correct.
    Now upon further investigation I see there is an updated patch:
    Patch 16357991 for the latest version of Patch Wizard in Oracle E-Business Suite (Release 12.1)
    This Patch has been Superseded.    Reason 16357991 included in 11071638
    I applied patch 11071638 but I still get the same validation error.
    Pre-req patches R12.AD.B.delta.3 [9239089] and R12.ATG_PF.B.delta.3 [8919491] had been applied.
    I still have an older instance running and patch wizard works properly with the same credentials and proxy server settings there.
    So how do I troubleshoot this?

    Did you bounce the application services and see if this helps?
    Please also review (New Required Patches for Patch Wizard, Patch Manager, and Oracle Application Change Management Pack for Oracle E-Business Suite Releases 11i, 12.0, and 12.1 [ID 1267768.1]) and make sure you have all the patches applied.
    Thanks,
    Hussein

  • Error: The result is empty for XPath expression

    hi gurus
    Following is my input sample data to BPEL process.
    <ItemList>
    <Item>
    <Name>Music System</Name>
    <Id>525</Id>
    <Item>
    <Name>Fog Light</Name>
    <Id>325</Id>
    <Item>
    <Name>Tyres</Name>
    <Id>325</Id>
    <Item>
    <Name>Neon Light Ring</Name>
    <Id>325</Id>
    </Item>
    </Item>
    </Item>
    </Item>
    </ItemList>
    Here <ItemList> contains <Item>.
    And <Item> contains <Name>,<Id> & <Item> element itself.
    i have created proper XSD for this.
    But When i try to fetch any value then using Assign Activityits gives runtime following error.
    Error in evaluate from expression at line "36".The result is empty for the XPATH expression: /ns1:ItemList/ns1:Item/ns1:Name
    Any suggestion..?
    thanks
    /mishit

    Here is my XSD.
    <?xml version="1.0" encoding="windows-1252"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.example.org"
    targetNamespace="http://www.example.org"
    elementFormDefault="qualified" >
    <xsd:element name="ItemList" type="ItemListType"/>
    <xsd:element name="Total" type="TotalType"/>
    <xsd:complexType name="ItemListType">
    <xsd:sequence>
    <xsd:element name="Item" type="ItemType"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="ItemType">
    <xsd:sequence>
    <xsd:element name="Name" type="xsd:string"/>
    <xsd:element name="Id" type="xsd:string"/>
    <xsd:element name="Item" type="ItemType"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="TotalType">
    <xsd:sequence>
    <xsd:element name="TotalPrice" type="xsd:double"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    /mishit

  • Result is empty error in XPath

    Hi,
    I am getting the following error coming from an "Assign" activity that copies from a child element of one variable (child of message type = M1) to another variable (which is of type element same as that of that child of M1).
    I am consistently getting the following error :
    "Error in evaluate <from> expression. The result is empty for the XPath expression .
    <<from element name>> "
    Does anyone know why ?
    Thanks

    That message usually occurs when you point to a non-existing child. When you're using child nodes, you'll have to make sure you're pointing to the right node, for example by using [position() = bpws.getVariableData('idx'), or using an XSLT with a 'for each'.
    Post the variable definition and the assign here, if  you need more input.
    Hth,
    Mike                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • The result is empty for the XPath expression

    Hi friends
    Please, could anyone help-me with this issue? My BPEL process was working yesterday and stoped today...
    I think I´m facing a namespace problem.
    If I start my process using BPEL Console, filling the "HTML form" option, all works ok.
    If my process is started by a call from another bpel process, my XPath query gives me an error, but the 2 received messages are "almost" egual:
    Using BPEL Console:
    <RejectionMessage>
    <part name="message" >
    <RejectedMessage ns1:BatchId="" ns1:PrimaryKey="" ns1:RejectionId="invalid_msg_processName_token1_token2_token3" ns1:BatchInfo="" >
    <MessageHeader/>
    <MessagePayload/>
    <RejectionReason/>
    </RejectedMessage>
    </part>
    </RejectionMessage>
    Started by another BPEL Process:
    <RejectionMessage>
    <part name="message" >
    <RejectedMessage RejectionId="INVALID_MSG_BatchTest_Read_20060418_101233_0463" BatchId="" BatchInfo="" PrimaryKey="" >
    <MessageHeader/>
    <MessagePayload> AgICAgICAgICAgICAgICAgIE1aIEpBSVJPUyAg MDYwMzA4MTAwMQ0K </MessagePayload>
    <RejectionReason> ORABPEL-11008</RejectionReason>
    </RejectedMessage>
    </part>
    </RejectionMessage>
    XPath Query:
    bpws:getVariableData('RejectionMessage','message','/ns2:RejectedMessage/@ns2:RejectionId')
    In the first case, it works.
    In the second case, it raises a "The result is empty for the XPath expression" error.
    As you can see, this process is used as a "Rejection Handler" process: It implements the interface defined in RejectionMessage.wsdl
    Could you help me?
    Thanks in advance

    Hi All
    I find a workaround to the problem. I´m almost sure it is a bug in BPEL.
    As you can see on my previous post, the diferences between the two messages is that the attributes have qualified names on one message and unqualified names on the other: ns1:BatchId, ns1:PrimaryKey...
    The schema definition for this message (JCAErrorHandling.xsd) define that attribute names MUST be qualified (attributeFormDefault="qualified"). The problem is that the File Adapter sends the message with unqualified attribute names!!
    So I edited JCAErrorHandling.xsd (<ORACLE_HOME>\integration\orabpel\system\xmllib\jca) file, changing it to attributeFormDefault="unqualified".
    The correct solution is to fix File Adapter to send the message with qualified names, so I´m opening a Service Request at Oracle Metalink.
    Thanks.

  • Query not showing detailed result when run through query Designer or Portal

    Hi,
    There is one query which not showing detailed result while running through Query Designer or run in Portal.
    But strange thing is that it is showing the detailed result when i run it through BeX Analyzer.
    While all the other queries don't have this problem in system. All showing the correct detailed result.
    If anyone have some idea on this issue plz let me know.
    Regards,
    Javed
    Edited by: Javed Akhtar on Jul 7, 2009 3:59 PM

    Hi,
    We can do this setting in WAD. Please check the web template and try to remove that setting. When you have hierarchy then we can display only till certain level in portal, this setting is done in web template APIs, but in bex analyzer you can see all the detailed information.
    Edited
    Go through this thread for some more detailed information
    http://help.sap.com/saphelp_nw2004s/helpdata/en/44/7b5f0a95ce12d0e10000000a422035/frameset.htm
    Regards,
    rik

  • Patch Wizard not Merging Patches

    I an trying to use the Patch Wizard in 11.5.10 on Windows. I am able to download patches but the "Merge" does not seem to be working for me. I have the "Merge Options" I have:
    "Automatically merge downloaded patches" = checked
    "Merged Patch Name" = merged_2010050581719
    "Merging Strategy" = Two merged patches: US; non-US
    All requests complete successfully and it downloads the patches to the location I set "D:\Oracle\OAMPatchWizard". However it does not unzip them or merge them.
    Any idea on this?

    I have tried a few different patch groups just for tersting:
    1. 5120432, 4255826, 4179434
    2. 5120432, 4255826, 4179434, 6853134, 6804367, 5200052, 4016675, 3591687, 5140723, 8768103, 8567963, 8549599, 8542643, 8531750, 8488400, 8399189, 8364720, 6998848, 5912291, 5244165, 4429228, 9351039, 7597151, 7555553, 7534124
    3. 4483674, 6241631, 7293818, 4016830, 6617445, 5565583, 6617861, 1422989, 3653484, 9062727, 4001448, 4428056, 3999182, 4017594, 3904312, 3897247, 4594570, 3618333, 4551977, 5591144
    None of these worked.
    I have reviewed the documents and have not seen anything that helped.

  • Namespace problem The result is empty for the XPath expression

    I have a problem with BPEL namespaces. The webservice that my BPEL process is using has changed namespaces (i.e. the java code package names changed and therefore the namespaces associated with the packages.)
    Before there was only one namespace associated with this web services; now there are multiple namespaces.
    I have changed the namespaces in my .bpel file; however I get the result is empty for XPath expression:
    /nsxml0:getMailResponse/nsxml0:getMailReturn/nsxml1:mailOut
    Any help appreciated...:(

    hey b-o-s-t-o-n,
    have your verified that the namespace import is correct, and with the right prefix
    you xpath contains 2 namespace prefixes
    /nsxml0:getMailResponse/nsxml0:getMailReturn/nsxml1:mailOut
    so check the bpel file and maybe the wsdl that has been generated (that inclused the plnk extensions for your external service)
    this is the most common issue ..
    hth clemens

  • Assigning JMS message in BPEL: The result is empty for the XPath expression

    Hi,
    My project, an Oracle BPEL 11g project, is reading an XML payload from a JMS queue. I would like to transform the message and assign the elements of the messages to other variables. But when I am doing that in the "assign" step, it raises an error: Error in evaluate <from> expression at line "63". The result is empty for the XPath expression : "/ns2:publishProject/payload/Message".
    Even though I can see the message payload in the Audit with all the values.
    To me it looks like a name space issue, but I could not find out how to correct it. Any hint will be a big help. Please let me know if you want to check the .xsd for the message.

    I publish a JMS message to a topic in one BPEL process and have another BPEL process read from the topic and start the flow. The problem I have is that the first process is writing fine to the topic, but the second process seems to be reading twice. I am seeing two instances of the second process in em.
    Can anyone help? I am using JDev 11.1.1.1.0
    Thanks

  • 30EA2/30EA1 : Selection Behavior on Master-Detail Result Grid

    Hi,
    Tested on both Win XP and Win 7, SQL Dev with the included jre.
    I notice quite annoying behavior on Master-Detail Result Grid.
    This happen on either Report with master-detail layout (i.e Active Session from the built-in report), popup describe on several tabs, and objet viewer especially on Table's Partition tab.
    Here are the things :
    1. Why made the selection on header result cell lose its focus after selecting one?
    I understand, that SQL Dev needs to re-query for displaying the detail.
    But why not made the selection focus, goes back to the selected (shown by the rectangular yellow line around the cell) header cell ?
    2. Point 1 leads to another problem.
    In order to copy the cell value, we have to click once again to select the cell value (shown by the rectangular yellow line around the cell) from the master grid and press CTRL + C.
    What a waste extra effort here.
    Moreover, I noticed some strange thing on object viewer Table - Partition tab.
    It is really hard to copy the cell value from this tab, i.e copying the partition name value.
    Everytime I press CTRL + C to copy its content, suddenly the cell goes to edit mode, which is read-only of course. CTRL + V to paste seems does not work, like it has nothing in the clipboard to be copied.
    And, navigating the cursor from this point would cause the pointer goes to the last character of the cell content, as well as selecting the content using CTRL + Home, is useless.
    Is it because there is no detail record on the detail (in this case Subpartition) tab?
    However Partition tab on Popup Describe, which supposed to have the same behavior, CTRL + C works just fine.
    Is this an expected behavior?
    Regards,
    Buntoro

    Hi Raghu,
    RaghvendraSaboo wrote:
    When changing selection in Master grid, the Child grid is repopulated. This also cause the Master grid to lose focus which makes navigating & copying from master requiring to select a cell in it again.
    Right ?
    Yes. That's right.
    I see, you use Child as referred to me as Detail, on which I get the name from Reports (when create User Defined Reports on SQL Dev, there shows Master on the top panel and below is Detail. :-)
    If yes, this is the same issue as reported in other thread where executing Statement Runner in worksheet, the worksheet loses the focus & the results grid gets the focus.
    The grid has got focus hungry & I am fixing it.Maybe this explains, why there is a small delay before showing the result grid.
    I tried to compare from SQL Dev 2.1.1 and 3.0EA1.
    3.0EA1 gets a little late (a second maybe) when displaying the result.
    For the last item, here are the things :
    1. From the Schema Browser (Left Hand Side), expand Tables.
    2. Select a partitioned table from the tree, there shown Object Viewer (on Right Hand Side) for that Table. -- I use the term Object Viewer as shown on the Preferences : Automatically Freeze Object Viewer Windows
    3. Select Partitions tab
    4. Click a cell on Master grid, there you go the losen focus
    5. Now, click once again to select
    6. Press Ctrl + C
    7. It suddenly change to cell's edit mode (of course its read-only cell)
    Navigating the cursor from this point would cause the pointer goes to the last character of the cell content, as well as selecting the content using CTRL + Home, is useless
    8. Now, go to the worksheet, and press Ctrl + V, nothing happens as if the copied cell doesn't get into the clipboard.
    Regards,
    Buntoro

  • Xjc  "results in empty target" error

    Hi everybody.
    I'm trying to complile the following very simple xsd with the xjb below. I keep getting "XPath evaluation of "/xsd:schema" results in empty target node".
    Any idea? Thanks in advance, Agostino
    xsd (just relevant part):
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">   
        <xsd:element name="myroot">
            <xsd:complexType>
                <xsd:sequence>
                    <xsd:element name="int01" type="xsd:int" />
    xjb (just relevant part):
    <jaxb:bindings xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
                   xmlns:xsd="http://www.w3c.org/2001/XMLSchema"
                   version="1.0">
      <jaxb:bindings schemaLocation="SQ.xsd" node="/xsd:schema">
        <jaxb:bindings node="//xsd:element[@name='int01']">Edited by: agostino75 on Aug 24, 2010 2:01 PM

    Hello,
    i think, when you use the Microsoft JAVA-VM, this error Message appears.
    If you use the SUN JAVA VM this message doesnt pop up.
    Try to install (if you havent done already) to install the SUN Java. If you already have the Installation activate under Internet-Options of Internet Explorer.
    Best Regards
    Helmut

Maybe you are looking for

  • Need help in executing the plsql code

    hi guys, below is the structure of the procedure i have created. CREATE OR REPLACE PROCEDURE sp_R_TrgComparisonReport      DataDate IN      DATE DEFAULT NULL,      Business IN OUT      VARCHAR2,      Sector IN      VARCHAR2 DEFAULT NULL,      SubSect

  • User Exit/BADI while setting status as TECO for WBS in CJ20N

    Hi all, I need a BADI/User Exit which triggers when we try to set the status of WBS as 'TECO'  in CJ20N transaction. Please help. Thanks in Advance, Sagar

  • Trouble installing xp

    when rebooting after the initial installation it goes to trouble reading disk. hit any key to restart, just stays on that screen. restarted in windows and still goes to the blinking cursor.

  • Yosemite cannot be downloaded/installed?

    I realize I am running an old MacBook. It still works perfectly, but apparently it has outlived its OS once again. This is what I have: Mac OS X version 10.6.8 Model Name: MacBook   Model Identifier: MacBook4,1   Processor Name: Intel Core 2 Duo   Pr

  • NEW CLASS FILES

    I need to use some different class files to the ones that come with the SDK. Where do I need to put them so that I can import them...? At the moment they are in a folder on my c: drive, but the import keyword cannot find them.. can sumone help? Pleas