XSLT mapping not working b'coz " " & " " replaced with and

Hello Experts,
  I have a RFC to JMS scenario. One of the parameter of RFC is a string field. This field will contain the XML data in it.
I need to create a complete XML payload using this data in a string field. For this I am using XSLT map :
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
     <xsl:output method="xml" omit-xml-declaration="no"/>
     <xsl:template match="/">
          <xsl:for-each select="//Nem">
               <xsl:copy-of select="."/>
          </xsl:for-each>
     </xsl:template>
</xsl:stylesheet>
This XSLT mapping works fine when tested independently.
But in actual scenario at runtime the "<" & ">" used to indicate a node are getting replaced with < and >. Then the XSLT mapping fails and produces no output.
The output of XSL will be passed in to a java mapping which signs the payload digitally.
What is the issue with these signs? How can I overcome this problem?
Any inputs will be of great help.
Kind Regards,
Abhijeet.
Edited by: Abhijeet Ambekar on May 4, 2010 2:01 PM

Hi Stefan,
  Yes - I want to get rid of & # 60. But these (& # 60 and & # 62) are not added by XSLT mapping. Rather they are in the input available to XSLT map.
In sxmb_moni, i can see the inbound payload correctly :
<?xml version="1.0" encoding="UTF-8" ?>
- <rfc:HDK083_REFUS_SENDDOCU xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
  <P_SIGN_DOCUMENT />
  <P_XML_DOCUMENT><NemRefusionIndberetningSamling><NemRefusionIndberetningStruktur MessageID="1"><HeaderStruktur><SignOffIndikator>true</SignOffIndikator><TransaktionKode>Opret</TransaktionKode><IndberetningstypeKode>Anmeldelse</IndberetningstypeKode><FravaerTypeKode>Sygdom</FravaerTypeKode><FravaerendeStruktur><FravaerendeTypeKode>Loenmodtager</FravaerendeTypeKode><LoenUnderFravaerIndikator>false</LoenUnderFravaerIndikator></FravaerendeStruktur><IndberetningUUIDIdentifikator>bf9cc44e-af15-4e19-8457-5845d75385d2</IndberetningUUIDIdentifikator><ReferenceAttributTekst>ref. Nielsen-1503831372 (23. oktober 2009)</ReferenceAttributTekst>
but when I try to download the payload or right click on payload to view source I get something like below:
<?xml version="1.0" encoding="UTF-8"?><rfc:HDK083_REFUS_SENDDOCU xmlns:rfc="urn:sap-com:document:sap:rfc:functions"><P_SIGN_DOCUMENT></P_SIGN_DOCUMENT><P_XML_DOCUMENT>& # 6 0;NemRefusionIndberetningSamling& # 62; & # 60;NemRefusionIndberetningStruktur MessageID="1"& #62;& #60;HeaderStruktur& #62;& #60;SignOffIndikator& #62;true& #60;/SignOffIndikator& #62;& #60;TransaktionKode& #62;Opret& #60;/TransaktionKode& #62;& #60;IndberetningstypeKode& #62;Anmeldelse& #60;/IndberetningstypeKode& #62;& #60;FravaerTypeKode& #62;Sygdom& #60;/FravaerTypeKode& #62;& #60;FravaerendeStruktur& #62;& #60;FravaerendeTypeKode& #62;Loenmodtager</FravaerendeTypeKode><LoenUnderFravaerIndikator& #62;false</LoenUnderFravaerIndikator></FravaerendeStruktur& #62;<IndberetningUUIDIdentifikator& #62;bf9cc44e-af15-4e19-8457-5845d75385d2& #60;/IndberetningUUIDIdentifikator& #62;& #60;ReferenceAttributTekst& #62;ref. Nielsen-1503831372 (23. oktober 2009)& #60;/ReferenceAttributTekst& #62;
(extra spaces added to "& # 60" as browser was converting it to < ,>)
If i take the source code for payload and test XSLT mapping, it fails. But if I manually replace all "& # 60" with < and "& # 6 2" with >, then the mapping works fine.
So I think for XSLT map to work correctly, we need to replace all "& # 60 " . Please suggest.
Kind Regards,
Abhijeet.

Similar Messages

  • The g, h and backspace on my keyboard are not working even after replacing with a new one.

    The g, h and backspace on my keyboard are not working even after replacing with a new one. I have also updated my BIOS still d same. Please help me ASAP.
    ...am waiting for a QIUCK RESPONSE

    How does a usb keyboard attached externally work?
    You might try a "hard reset" where you remove battery and AC charger, hold down power button 20-30 seconds and then reassemble and turn on. Reset BIOS (F10) to default settings, too. 

  • XSLT mapping not working for escapeCharacters.

    Hi,
    I have an issue with escape characters in PI.
    Now I'm trying with CCFile. Binary. (In production we will use FTP as CC.)
    Scenarie: SAP --> MyParty.
    MyParty needs to have the xml Freetext tag as this:
    <FreeText><![CDATA[<b> HELLO WORLD </b>]]></FreeText>
    I have a xslt mapping that like this (To Add the CDATA section.)
    Source file is like this: &lt;b&gt;  HELLO WORLD   &lt;/b&gt;
    <?xml version='1.0'?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
        <xsl:output method="xml" encoding="utf-8" standalone="yes" cdata-section-elements="FreeText" />
        <xsl:template match="@|">
            <xsl:copy >
                <xsl:apply-templates  select="@*|node()" />
            </xsl:copy>
        </xsl:template>
    </xsl:stylesheet>
    When I use this xsl mapping in my favorite xslt  tool everyting looks nice but when I use it in PI it looks like this in file on disk:
    <FreeText><![CDATA[ &lt;b&gt;  HELLO WORLD   &lt;/b&gt; ]]></FreeText>
    I don't whant escape characters in my target file.  Any Pointers ?
    //Martin

    Hi Martin,
    You required
    <FreeText><![CDATA[ <b> HELLO WORLD </ b>]] ></FreeText>
    and you got this in XI
    <FreeText><![CDATA[ lt; b gt; HELLO WORLD lt; /b gt;]] ></FreeText> ( i removed &)
    Have you seen the source of the XML output of XI? It will look like the one you mentioned but if you open that in browser it will be as per your requirement
    Have you seen the source of output file created by you XML tool?
    Regards
    Suraj

  • XSLT mapping not working

    Hi
    I am creating one scenario using following weblog :
    /people/community.user/blog/2006/09/08/email-report-as-attachment-excelword
    But in my I am only getting the Headings but no values which I am providing through my XML file.
    *My XSLT file is like this now ..................*
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://wwww3org/1999/XSL/Transform">
       <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
       <xsl:variable name="break">&lt;br&gt;</xsl:variable>
       <xsl:variable name="tableB">&lt;table&gt;</xsl:variable>
       <xsl:variable name="tableE">&lt;/table&gt;</xsl:variable>
       <xsl:variable name="trB">&lt;tr&gt;</xsl:variable>
       <xsl:variable name="trE">&lt;/tr&gt;</xsl:variable>
       <xsl:variable name="tdB">&lt;td&gt;</xsl:variable>
       <xsl:variable name="tdE">&lt;/td&gt;</xsl:variable>
       <xsl:variable name="nbsp">&amp;nbsp;</xsl:variable>
       <xsl:variable name="thB">&lt;tr BGCOLOR=&quot;#CCCC99&quot;&gt;</xsl:variable>
       <xsl:template match="/">
       <ns1:Mail xmlns:ns1="http://sapcom/xi/XI/Mail/30">
    <Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.002.001.02" xmlns:ns0="urn:xcom:xi:A_B2B_RSE:FI:XXX">
             <Subject>File Level Status</Subject>
             <From>xxxxxxx</From>
             <To>xxxxxxx</To>
             <Content_Type>text/html</Content_Type>
             <Content>
                <xsl:text xsl:space="preserve">File Level Status:</xsl:text>
                <xsl:value-of select="$break"/>
                <xsl:value-of select="$break"/>
                <xsl:value-of select="$tableB"/>
                <xsl:value-of select="$thB"/>
                <xsl:value-of select="$tdB"/>
                <xsl:text xsl:space="preserve">Original File Name</xsl:text>
                <xsl:value-of select="$nbsp"/>
                <xsl:value-of select="$tdE"/>
                <xsl:value-of select="$tdB"/>
                <xsl:text xsl:space="preserve">Original Creation Date and Time</xsl:text>
                <xsl:value-of select="$nbsp"/>
                <xsl:value-of select="$tdE"/>
                <xsl:value-of select="$tdB"/>
                <xsl:text xsl:space="preserve">Customer ID</xsl:text>
                <xsl:value-of select="$nbsp"/>
                <xsl:value-of select="$tdE"/>
                <xsl:value-of select="$tdB"/>
                <xsl:text xsl:space="preserve">File Level Ack  Name</xsl:text>
                <xsl:value-of select="$nbsp"/>
                <xsl:value-of select="$tdE"/>
                <xsl:value-of select="$tdB"/>
                <xsl:text xsl:space="preserve">File Level Ack  Creation Date and Time</xsl:text>
                <xsl:value-of select="$nbsp"/>
                <xsl:value-of select="$tdE"/>
                <xsl:value-of select="$tdB"/>
                <xsl:text xsl:space="preserve">Total Number of Trasnsactions</xsl:text>
                <xsl:value-of select="$nbsp"/>
                <xsl:value-of select="$tdE"/>
                <xsl:value-of select="$tdB"/>
                <xsl:text xsl:space="preserve">Status Code</xsl:text>
                <xsl:value-of select="$nbsp"/>
                <xsl:value-of select="$tdE"/>
                <xsl:value-of select="$tdB"/>
                <xsl:text xsl:space="preserve">Error Description</xsl:text>
                <xsl:value-of select="$nbsp"/>
                <xsl:value-of select="$tdE"/>
                <xsl:value-of select="$trE"/>
                <xsl:for-each select="Document/pain.002.001.02">
               <xsl:value-of select="$trB"/>
                   <xsl:value-of select="$tdB"/>
                   <xsl:value-of select="OrgnlGrpInfAndSts/OrgnlMsgId"/>
                   <xsl:value-of select="$nbsp"/>
                   <xsl:value-of select="$tdE"/>
                   <xsl:value-of select="$tdB"/>
                   <xsl:value-of select="OrgnlGrpInfAndSts/OrgnlCreDtTm"/>
                   <xsl:value-of select="$nbsp"/>
                   <xsl:value-of select="$tdE"/>
                   <xsl:value-of select="$tdB"/>
                   <xsl:value-of select="OrgId"/>
                   <xsl:value-of select="$nbsp"/>
                   <xsl:value-of select="$tdE"/>
                   <xsl:value-of select="$tdB"/>
                   <xsl:value-of select="MsgId"/>
                   <xsl:value-of select="$nbsp"/>
                   <xsl:value-of select="$tdE"/>
                   <xsl:value-of select="$tdB"/>
                   <xsl:value-of select="CreDtTm"/>
                   <xsl:value-of select="$nbsp"/>
                   <xsl:value-of select="$tdE"/>
                   <xsl:value-of select="$tdB"/>
                   <xsl:value-of select="OrgnlNbOfTxs"/>
                   <xsl:value-of select="$nbsp"/>
                   <xsl:value-of select="$tdE"/>
                   <xsl:value-of select="$tdB"/>
                   <xsl:value-of select="Prtry"/>
                   <xsl:value-of select="$nbsp"/>
                   <xsl:value-of select="$tdE"/>
                   <xsl:value-of select="$tdB"/>
                   <xsl:value-of select="AddtlStsRsnInf"/>
                   <xsl:value-of select="$nbsp"/>
                   <xsl:value-of select="$tdE"/>
                   <xsl:value-of select="$trE"/>
                </xsl:for-each>
                <xsl:value-of select="$tableE"/>
             </Content>
         </Document>
          </ns1:Mail>
       </xsl:template>
    </xsl:stylesheet>
    Notes
    1. I am using External Definition as a Source not the Message Type.
    2. There is no ns0 or ns1 in the source file.
    *Source Message*
    <?xml version='1.0' encoding='UTF-8'?>
    <Document xmlns='urn:iso:std:iso:20022:tech:xsd:pain.002.001.02' xmlns:xsi='http://wwww3org/2001/XMLSchema-instance'>
         <pain.002.001.02>
              <GrpHdr>
                   <MsgId>20091224-PSR/1040</MsgId>
                   <CreDtTm>2009-12-24T10:42:21</CreDtTm>
              </GrpHdr>
    *Mapping Error*
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Request Message Mapping
      -->
    - <SAP:Error xmlns:SAP="http://sapcom/xi/XI/Message/30" xmlns:SOAP="http://schemasxmlsoaporg/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>Application</SAP:Category>
      <SAP:Code area="MAPPING">RESOURCE_NOT_FOUND</SAP:Code>
      <SAP:P1>d4f78d30-381b-11df-b885-debcac120353, 660e7670-68~</SAP:P1>
      <SAP:P2>urn:xx.com:xi:A_B2B_RSE:FI:XXXX</SAP:P2>
      <SAP:P3>email/test.xsl</SAP:P3>
      <SAP:P4>-1</SAP:P4>
      <SAP:AdditionalText />
      <SAP:Stack>Unable to find resource d4f78d30-381b-11df-b885-debcac120353, 660e7670-68~ in the following software component versions: urn:xxcom:xi:A_B2B_RSE:FI:xx/test.xsl-1</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Can somebody please help me.

    first format your post understandable format

  • My iphone 5 the volume bottom does not work  how to replace it in apple sotre

    My iphone 5 the volume bottom does not work  how to replace it in apple sotre
    i read sb said they only replace the iphone by pay more 210 quid is this ture ?

    Hi Austin XQ,
    Thanks for visiting Apple Support Communities.
    Based on the information you have provided, it sounds like your iPhone needs to be serviced. The following link should help you get started with the process and has links with additional information on topics such as warranty and service pricing, battery replacement, and express replacement service.
    http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipho ne
    Best,
    Jeremy

  • Alternate Access Mapping not working for Zone : Intranet

    One of our client want to set Alternate Access Mappint (intranet) with url "intranet.theirDomain.com" with local IP address.
    is it possible?
    subsequest to my previous question (
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/3f39711e-301a-40e8-aa7a-855fa2c268b1/alternate-access-mapping-not-working?forum=sharepointadmin )
    I want to ask one more question
    Can we configure "intranet.theirDomain.com" with local IP address for any other zone?
    or
    If there is ".com" within the url then it can't be configured for InTRAnet?
    Thanks
    S H A J A N

    The names for the zones don't matter. You could use the 'extranet' zone for another intranet name if you wanted, the names are just to make it a bit more friendly for beginners.
    What you describe sounds routine, you create a web application with a name, then use an AAM to allow users to access it with a more friendly name. Frequently you end up creating
    http://intranet.domain.com and
    http://intranet as an AAM, or vice versa.
    You can use .com for an intranet site, you would need to add the site as an A Host record in your DNS server so that traffic is sent to your internal server rather than out into the wider world.

  • Value mapping not working properly

    Hi All,
    I am using value mapping twice in same mapping program. But only 1 field is coming with value and other is taking same value from source payload, can you please tell me what can be issue here?
    Value mapping 1 -
    Context - http://sap.com/xi/XI
    SenderParty- SenderSchema
    ReceiverParty- ReceiverSchema
    Value Mapping table in ID -
    Value mapping at field 2 -
    Context - http://sap.com/xi/XI
    SenderParty1- SenderSchema1
    ReceiverParty2- ReceiverSchema2
    Value Mapping table in ID -
    Source payload -
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_VM_Send xmlns:ns0="http://xyz.com/Rashmi_CollectPatternDemo">
       <Record>
          <Emp_ID>123</Emp_ID>
          <Name>rash</Name>
          <Surname>sumit</Surname>
          <Gender>Male</Gender>
         <Grade>E2</Grade>
      </Record>
    </ns0:MT_VM_Send>
    Target Payload -
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_VM_Receiver xmlns:ns0="http://xyz.com/Rashmi_CollectPatternDemo">
    <Record>
    <Emp_ID>123</Emp_ID>
    <Full_Name>rash sumit</Full_Name>
    <Designation>E2</Designation>
    <Gender>M</Gender>
    <Travel_Mode>Train</Travel_Mode>
    </Record>
    </ns0:MT_VM_Receiver>
    Here travel_mode is coming perfect, but designation is same as defined in source payload. Why here Value mapping not working???
    Thanks & regards,
    Rashmi Joshi

    Hi Rashmi,
    The problem would either be in cache update or your mapping. Please provide the sceenshot of mapping (after clicking the value mapping function).
    you can also choose the option to throw error in value mapping function, so it will throw error when value not found.
    regards,
    Harish

  • [svn] 3913: BLZ-272 Two long polling endpoints not working in same app with Firefox

    Revision: 3913
    Author: [email protected]
    Date: 2008-10-27 13:49:02 -0700 (Mon, 27 Oct 2008)
    Log Message:
    BLZ-272 Two long polling endpoints not working in same app with Firefox
    The long polling waitMonitor object in the FlexSession did not keep track of
    blocking polls via endpoint ID. This prevented the second channel from blocking.
    Enhance the FlexSession.waitMonitor to be a map of endpointID to
    EndpointQueue objects, and keep track of the monitors based on what endpoint
    they are associated with.
    QA: Yes
    Doc:No
    Checkintests: passed
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-272
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/FlexSession.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/client/FlexClient.java

    Revision: 3913
    Author: [email protected]
    Date: 2008-10-27 13:49:02 -0700 (Mon, 27 Oct 2008)
    Log Message:
    BLZ-272 Two long polling endpoints not working in same app with Firefox
    The long polling waitMonitor object in the FlexSession did not keep track of
    blocking polls via endpoint ID. This prevented the second channel from blocking.
    Enhance the FlexSession.waitMonitor to be a map of endpointID to
    EndpointQueue objects, and keep track of the monitors based on what endpoint
    they are associated with.
    QA: Yes
    Doc:No
    Checkintests: passed
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-272
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/FlexSession.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/client/FlexClient.java

  • Apple maps not working on iMac

    apple maps not working on iMac the little thing just keeps turning

    Do a backup.
    Quit the application.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library. Then go to Preferences/com.apple.Maps.plist. Move the .plist to your desktop.
    Restart the computer, open the application and test. If it works okay, delete the plist from the desktop.
    If the application is the same, return the .plist to where you got it from, overwriting the newer one.
    Thanks to leonie for some information contained in this.

  • I have a CC Photography License and tried loading the new Lightroom cc but it will not open (only flashes the welcome screen for a split second) then goes blank.  I tried uninstalling it, rebooting, etc. several times and it will not work on my Mac with Y

    I have a CC Photography License and tried loading the new Lightroom cc but it will not open (only flashes the welcome screen for a split second) then goes blank.  I tried uninstalling it, rebooting, etc. several times and it will not work on my Mac with Yosemite.  Please help!

    Check out this thread: Downloaded Lightroom CC but only get a quick flash of the startup screen then nothing, Lightroom 5 still working.

  • HT204088 Dear sirs,  Could you please help me on my problem with my apple ID  I create new account with security questions, and when I try to purchase paid application,it ask me for answers the questions but it's not working,  My account have 50$ and stil

    Dear sirs,
    Could you please help me on my problem with my apple ID
    I create new account with security questions, and when I try to purchase paid application,it ask me for answers the questions but it's not working,
    My account have 50$ and still didn't buy anything

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (100546)

  • I got a iphone 5 but it does not work on my MacBook with Mac OSx 10.5.8  it says i need OSX 10.6.8 but it will not download because I need OSX 10.6 but it would load either. How do I get the older operating system to work with the IPhone5?

    I got a iphone 5 but it does not work on my MacBook with Mac OSx 10.5.8  it says i need OSX 10.6.8 but it will not download because I need OSX 10.6 but it would load either. How do I get the older operating system to work with the IPhone5?

    You don't. Since you have an Intel Mac, buy a Mac OS X 10.6 DVD from the online Apple Store.
    (71894)

  • TS1702 I just bought a new iphone 5S and once turned on and pushed the button restore from Icloud, I'm stil stuck in this section i can't do anything plus i turned it off and on again and still not working, please provide me with a solution very urgently!

    I just bought a new iphone 5S and once turned on and pushed the button restore from Icloud, I'm stil stuck in this section i can't do anything plus i turned it off and on again and still not working, please provide me with a solution very urgently!!
    Kindly note also that i did not work on this iphone before, i just turned it on and i cannot connect it to the itune and restore it as the itune cannot read the device since i'm not able to reach my home screen, I am stuck in my restoring screen.
    Please help!!!!

    You dont have any data on your phone yet right?
    If you dont connect your device to the computer and
    Press and hold the Sleep/Wake button and the Home button together for at least 15 seconds, until the Apple logo appears.
    after that click okay when it says itunes has detected an iphone in recovery mode. Then click restore
    after that try again

  • Soft KeyBoard is not working on ios 7 with Air sdk 3.8

    Hi
    In my app Soft KeyBoard is not working on ios 7 with Air sdk 3.8. Does any one know soluton for this ?

    Hi,
    There's no question that TextFields and TextAreas weren't working in our case, likely because we have a deep displaylist with a variety of object types. Presumably, AIR has changed how it looks through the displaylist for objects that need keyboard, and perhaps we have an object type somewhere in the hierarchy that AIR no longer recurses. It's definitely something that changed, though.
    It's no picnic to put together a sample app, I can't afford that time when I have a solution. But the symptom was very clear, a textbox would open, and the cursor would just blink with no way of interacting with it.
    I'm happy using StageText directly, because it's a more direct way to interact with the OS and gives more control.
    It also solves a bug in AIR that I haven't reported yet, but is as follows. Rarely, when you move the container of a TextField of TextArea after it has been created, AIR will crash and freeze iOS devices. It doesn't happen on Android or desktop, but with a user-base of about 100,000 of our app, we've had it reported maybe 50 times. One of our dialogs sometimes needs to reposition the elements, which is done animated. During this, AIR will crash about 0.01% of the time. We tried only creating the TextArea, but not activating it or even having it visible, but even an invisible TextArea will crash, presumably because AIR moves the internal StageText overlay around as well, and this confuses iOS after a while during the animation.
    By using StageText directly, I finally also have a way to get rid of this bug, because I simply don't activate StageText until the object has already been positioned. Prior to that, it isn't even an editable text field, it's a label like anything else. So I'm happy I did this solution.
    Let's just leave this thread as a record if someone else has the same problem. I'm quite sure it's because of our very complicated display list, and AIR having changed how it scans the displaylist for objects that need keyboard.
    Best,
    Per

  • Camera, Browser & Maps Not Working

    Hi,
    It been since yesterday my Z10 camera, broser & maps not working.
    Whenever I click the camera icon, it is not even opening.
    Browser icon had changed, it turned to a triangle square & circle.
    Can anyone help me out.
    Thanks,
    Chris

    The update may not have loaded properly, you can reload this way:   http://btsc.webapps.blackberry.com/btsc/viewdocume​nt.do?externalId=KB34045&sliceId=2&docType=kc&noCo​...
    Or do a Security Wipe (Reset to Factory Settings) this way: 
    http://btsc.webapps.blackberry.com/btsc/viewdocume​nt.do?externalId=KB33591&sliceId=2&docType=kc&noCo​...
    Please read both carefully !

Maybe you are looking for

  • Report to see the OverHead Posted Production Order wise

    Dear SAP Gurus , I request you to kindly guide me as what Tcode is available to see the Over-Head Cost booked related details (prefearably along with the Production Order number) . Regards B Mittal

  • BAPI to add items before document creation in FI

    Hello!!   I need to add 2 items to a document that is being created in transactions FB01 or f-53 (but, hasn't been created yet).  I need to know if there is a bapi that I can call in an User Exit before the document is created?....   Thanks.,   Marin

  • Global trading contract with SD/MM

    While creating a trading contract , we enter customer with qty as 100 and for vendors 333- we put 50 qty,vendor 334- we put50 qty , mat , plant etc etc .We want to automate the process by entering the quation received frm vendors . Current Scenarion

  • Opening in the same window

    Hello, My question is two-fold. 1. Is there any way of setting Quicktime so that it plays audio/video immediately after opening, so I don't have to press play? 2. Also, when I play one MP3, Quicktime opens. When I play a second MP3, it opens another

  • Does ipad compatible with a broadband?

    does ipad compatible with broadband usb?