XMLAnonymizer: namespace deleted

Hi All,
I am trying to use the XMLAnonymizer bean with the Receiver File adapter.
My problem is that, the namespace prefix is getting substituted correctly, but the namespace itself is getting deleted from the node.
i..e.: the XML looks like this:
<ns0:controlRecipe xmlns:ns0="urn:sap-com:document:sap:rfc:functions">
And I use the following in the Adapter Module Configuration:
Parameter name:  anonymizer.acceptNamespace
Parameter Value:  urn:sap-com:document:sap:rfc:functions rfc
The output I get is:
<rfc: controlRecipe>
But I want to retain the namespace within the XML node.
I am unable to understand how to achieve this.
Please help.
Regards,
Puloma.

Hi,
Please refer the blog and sap help to resolve your issue:
/people/stefan.grube/blog/2007/02/02/remove-namespace-prefix-or-change-xml-encoding-with-the-xmlanonymizerbean
use that link to know more about XMLAnonymizerBean along with the blog mentioned.
http://help.sap.com/saphelp_nw04/helpdata/en/45/d169186a29570ae10000000a114a6b/content.htm
Anonymizer Module Processor - how to use ?
It will definitely solve your query.
Anurag Garg

Similar Messages

  • Namespace deletion error for ghost objects

    Hi people.
    I need to remove a namespace in ESR.
    I have first deleted all objects and activated it and then I tried to remove the namespace from the Namespace Definition List.
    After removed the namespace item and saving the change, I receive the following error:
    Cannot save object Namespace Definition
    Namespace cannot be deleted since the software component version still contains objects in namespace http://www.sapcons.com/Edm_EE/
    Delete the objects first
    In fact, running the Export functionality and saving the summary result in a file I have a list of objects but, at this point, I don't know how to delete. Could be a cache problem? I cleaned all cache available in Administration web page but without result.
    Could someone help me?
    Ciao
    Nicola

    Double clicking the software component, delete all the namespaces present in the software component, and do not save it.
    Now delete all the default datatypes in all the namespaces present in the software component and now save the software component and activate the changes.
    Now double clicking the software component> Goto Software component version menu> from the drop down select the delete option. this will delete the software component from IR.
    Now goto SLD and select the software component and remove it.
    Then clear the SLD cache. Now the software component will be deleted.
    Also refer this blog:
    How to : Delete Software Component from Integration Builder

  • Message Monitoring & Delete Objects

    Hi,
    1.How to clear messages under message monitoring?
    2.How to delete objects forever under Integration Repository?
    3.How to delete objects forever under Integration DIrectory?
    (in I.D, i selected one scenario and deleted using right click menu.. and its going to 'Change Lists' tab. If i right click and say Reject Change there and its coming back to Scenarios tab)
    Thanks
    Seshu

    <i>1.How to clear messages under message monitoring?</i>
    Follow Archive and Delete Messages in SAP XI: A Step-by-Step Guide
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/402fae48-0601-0010-3088-85c46a236f50
    <i>2.How to delete objects forever under Integration Repository?</i>
    In a namespace delete all the objects including ExchangeLogData and ExchangeFaultData data types then before activating, go to SWCV, delete the namespace then activate the changes. Now in the same screen where you enter the namespaces, in the menu, use the delete option.
    <i>3.How to delete objects forever under Integration DIrectory?
    in I.D, i selected one scenario and deleted using right click menu.. and its going to 'Change Lists' tab. If i right click and say Reject Change there and its coming back to Scenarios tab)</i>
    That means...you are deleting the object and the from the change list, rejecting that delete action. Instead, activate the change list. Two negatives make a positive.
    Regards
    Shravan

  • Working with xml data collections (sequences)

    Dear all,
    a database adapter in my BPEL process returns the following xml data structure:
    Schema:
    <xs:element name="MGroupsCollection" type="MGroupsCollection"/>
    <xs:complexType name="MGroupsCollection">
    <xs:sequence>
    <xs:element name="MGroups" type="MGroups" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="MGroups">
    <xs:sequence>
    <xs:element name="id" type="xs:int"/>
    <xs:element name="name" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    Instance (example, namespaces deleted):
    <MGroupsCollection>
    <MGroups>
    <id>23</id>
    <name>group2</name>
    </MGroups>
    <!-- more MGroups -->
    </MGroupsCollection>
    Now, I want to transform this structure into the following one:
    Schema:
    <xs:element name="Groups">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="Group" type="Group" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:complexType name="Group">
    <xs:sequence>
    <xs:element name="id" type="xs:int"/>
    <xs:element name="name" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    Instance (example, namespaces deleted):
    <Groups>
    <Group>
    <id>23</id>
    <name>group2</name>
    </Group>
    <!-- more Group elements -->
    </Groups>
    Implementing an XSLT transform activity, I faced no problems:
    <xsl:template match="db:MGroupsCollection">
    <sedd:Groups>
    <xsl:for-each select="db:MGroups">
    <sedd:Group>
    <sedd:id>
    <xsl:value-of select="db:id"/>
    </sedd:id>
    <sedd:name>
    <xsl:value-of select="db:name"/>
    </sedd:name>
    </sedd:Group>
    </xsl:for-each>
    </sedd:Groups>
    </xsl:template>
    Now, I thought I can use an assign activity instead of the transform activity above to transform the structure. Here's the code:
    <assign name="AssignSelectedGroups">
    <copy>
    <from variable="InvokeSelectGroups_SelectGroupsAdapterSelect_OutputVariable"
    part="MGroupsCollection"
    query="/ns3:MGroupsCollection"/>
    <to variable="Groups" query="/client:Groups"/>
    </copy>
    </assign>
    Using this assign activity (see above) the BPEL process runs without errors too. But the process produced the following structure (namespaces deleted):
    <Groups>
    <MGroups>
    <id>23</id>
    <name>group2</name>
    </MGroups>
    <!-- more MGroups -->
    </Groups>
    My questions is: As you can see in the schema definition of "Groups" (see above) this element contains one or more "Group" elements, but not one or "MGroups" elements. But "MGroups" are copied into "Groups" using the assign activity which is not valid according to the schema definition. Nevertheless, my BPEL process does not throw an exception.
    Can somebody explain this issue?
    Thanks in advance!
    Lars Geldner

    http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/manipdoc.htm#CIHBBFEC
    3.14 Validating XML Data with bpelx:validate
    Does that one work for you ?
    Yes it's possible to reconstruct your xml by the assing options. If you create the assign activity you will see besides the copy also options like insert-before insert-after append etc
    With those you can construct your own variable like the way you want it..resort elements etc

  • Remove a SWC from IR

    Hi All,
    Is it possible to remove a SWCV from IR after importing the same???
    Thanks & Regards,
    Jai Shankar.

    Jai,
    Delee all cusotm objects  ( do not delete the default datatypes ) and activate the SWCV.
    Next, delete the 2 fault messages , then go to your SWCV and delete the namespace by using the DELETE button and then activate the SWCV . The namespace deletion and fault datatypes deletion should be done simultaneoulsy including their activation.
    Regards,
    Bhavesh

  • How to delete unwanted namespaces in Integration Directory

    Hi All,
    I have made some testing while creating namespaces in Integration Directory. Now I want to delete the unwanted namespaces. Please help me in doing so.
    Regards,
    Soorya

    HI,
    If u want delete unwanted namespaces in IR and ID.Please following these steps.
    In IR:
    1) First u have to select Softwarecomponent.
    2)Select u r Unwanted namespace.
    3)Delete developed object onebyone.
    4)Remove the namespace from Namespace list Press button.
    5)Then activate the deleted objects from change List.
    IN ID.
    1)Select the integration scenario and right click on it..under popup menu select delete.Then auotmatically delete the objects.After u activate all the deleted objects from change list.
    Once u complted these  steps unwanted objects have been deleted.
    Thanks
    Ravi

  • Xmlanonymizer bean and xslt - both not working for namespace change

    Hi All
    I have a source structure below
    <ns1:Product_MT xmlns:ns1="urn:alpha:websub" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Header>
    </Header>
    <Item>
    </Item>
    </ns1:Product_MT>
    I am using a soap sender getting called from SOAP UI to consume a PI web service and  send the output message to receiver HTTP channel
    the receiver needs the namespace of the XML structure as below (ns1 changed to ns)
    <ns:Product_MT xmlns:ns="urn:alpha:websub" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Header>
    </Header>
    <Item>
    </Item>
    </ns:Product_MT>
    I tried to put the xmlanonymizer bean in receiver HTTP but its not doing anything. I am stil getting the output with ns1 namespace
    Attached screenshot of receiver http adapter configuration in module
    also, I tried to use XSLT mapping as below but this is also not doing anything. Probably, the XSL has to be modified to use in my case . Please help. and let me know.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
      <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:template match="/">
    <ns:Product_MT xmlns:ns="urn:alpha:websub">
      <xsl:copy-of select="." />
    </ns:Product_MT>
    </xsl:template>
    </xsl:stylesheet>
    thx
    mike

    I had to tweak the XSL little bit to make it work in PI. See updated version below -
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
       <xsl:output encoding="UTF-8" indent="yes" method="xml" version="1.0"/>
       <xsl:variable name="root">MT_Product</xsl:variable>
       <xsl:variable name="rootns">urn:mdt:udiwebsubmission</xsl:variable>
       <xsl:template match="*">
         <xsl:choose>
           <xsl:when test="local-name()=$root">
             <xsl:element name="ns:{local-name()}" namespace="{$rootns}">
               <xsl:apply-templates select="node()"/>
             </xsl:element>
           </xsl:when>
           <xsl:otherwise>
             <xsl:element name="{local-name()}">
               <xsl:apply-templates select="node()"/>
             </xsl:element>
           </xsl:otherwise>
         </xsl:choose>
       </xsl:template>
    </xsl:stylesheet>
    Regards,
    Sameej

  • Delete namespace and prefix with Seeburger X.400 receiver

    Dear experts,
    I have a problem deleting a namespace and prefixes "ns0" from an XML output. When testing I was using an FTP receiver adapter with the AnonymizerBean which worked perfectly. I referred to: /people/stefan.grube/blog/2007/02/02/remove-namespace-prefix-or-change-xml-encoding-with-the-xmlanonymizerbean
    Now I have a Seeburger X.400 receiver adapter and the AnonymizerBean does not work anymore.
    The output message looks like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    <ns0:ORDERRESPONSE xmlns:ns0="http://www.opentrans.org/XMLSchema/1.0" version="1.0">
    <ns0:ORDERRESPONSE_HEADER>
    <ns0:ORDERRESPONSE_INFO>
    <ns0:ORDER_ID>xxxxx</ns0:ORDER_ID>
    So I need to get rid of the namespace and the prefixes "ns0". Does anyone know how to configure the module of the X.400 receiver adapter to do this?
    Thank you very much for your help!
    Best regards,
    Peter

    Hey Guys,
    I am having issues with using anonymizer bean. Below is the data with namespaces I would like to strip:
      <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:ExecuteXMLRequest xmlns:ns1="http://decisionintellect.com/inteport/">
    - <ns1:_sRequestXML>
    - <ns1:inteflow>
    - <ns1:request cd_type="submit">
    - <ns1:user>
      <ns1:id_oper>INTERFACE</ns1:id_oper>
      <ns1:tx_password>password</ns1:tx_password>
      </ns1:user>
      <ns1:cd_service>SUBMIT</ns1:cd_service>
      <ns1:cd_product>IFE</ns1:cd_product>
      <ns1:id_channel>INTEGATE</ns1:id_channel>
      <ns1:id_company>OFFICEWORKS</ns1:id_company>
      <ns1:id_merchant>OFFICEWORKS</ns1:id_merchant>
      <ns1:cd_country>61</ns1:cd_country>
      <ns1:cd_security>IFE</ns1:cd_security>
      </ns1:request>
    - <ns1:application_details>
      <ns1:id_product_credit>COMMERCIAL DECISIONING</ns1:id_product_credit>
      <ns1:id_reference_internal>[APP-ID]</ns1:id_reference_internal>
      <ns1:id_reference_external>[customer ref here]</ns1:id_reference_external>
      <ns1:id_merchant_submit>OFFICEWORKS</ns1:id_merchant_submit>
      </ns1:application_details>
    - <ns1:service>
    - <ns1:application>
    - <ns1:finance>
      <ns1:cd_type_finance>TERMS 30</ns1:cd_type_finance>
      <ns1:am_finance>4000</ns1:am_finance>
      </ns1:finance>
    - <ns1:applicant cd_type="Principal" fg_new="0">
    - <ns1:company>
      <ns1:cd_type_entity>SLTR</ns1:cd_type_entity>
      <ns1:tx_company_abn>41552470947</ns1:tx_company_abn>
      <ns1:nm_company_legal>WESTON, DEAN</ns1:nm_company_legal>
      <ns1:cd_type_industry>OTHER</ns1:cd_type_industry>
      <ns1:no_directors>1</ns1:no_directors>
      <ns1:no_employees>1</ns1:no_employees>
      </ns1:company>
      </ns1:applicant>
    - <ns1:applicant cd_type="CoBorrower1" fg_new="0">
    - <ns1:individual>
      <ns1:cd_title>Mr</ns1:cd_title>
      <ns1:nm_firstname>Dean</ns1:nm_firstname>
      <ns1:nm_surname>Weston</ns1:nm_surname>
      <ns1:dt_dob>1968-12-29</ns1:dt_dob>
      <ns1:cd_gender>M</ns1:cd_gender>
      <ns1:fg_act_privacy>1</ns1:fg_act_privacy>
      <ns1:cd_residence>61</ns1:cd_residence>
      </ns1:individual>
    - <ns1:address>
    - <ns1:current_address>
      <ns1:tx_no_unit>1</ns1:tx_no_unit>
      <ns1:tx_no_street>1</ns1:tx_no_street>
      <ns1:nm_street>Test</ns1:nm_street>
      <ns1:cd_type_street>Rd</ns1:cd_type_street>
      <ns1:nm_suburb>Testerville</ns1:nm_suburb>
      <ns1:cd_state>VIC</ns1:cd_state>
      <ns1:cd_postcode>3000</ns1:cd_postcode>
      <ns1:ct_address_at_time>21</ns1:ct_address_at_time>
      <ns1:cd_country>61</ns1:cd_country>
      </ns1:current_address>
      </ns1:address>
    - <ns1:address>
    - <ns1:previous_address>
      <ns1:tx_no_street>2</ns1:tx_no_street>
      <ns1:nm_street>Wayback</ns1:nm_street>
      <ns1:cd_type_street>Crs</ns1:cd_type_street>
      <ns1:nm_suburb>Sydney</ns1:nm_suburb>
      <ns1:cd_state>NSW</ns1:cd_state>
      <ns1:cd_postcode>2000</ns1:cd_postcode>
      <ns1:ct_address_at_time>117</ns1:ct_address_at_time>
      <ns1:cd_country>61</ns1:cd_country>
      </ns1:previous_address>
      </ns1:address>
    - <ns1:identification>
    - <ns1:drivers_license>
      <ns1:id_number>123456789</ns1:id_number>
      <ns1:fg_verified>1</ns1:fg_verified>
      </ns1:drivers_license>
      </ns1:identification>
    - <ns1:contact>
    - <ns1:home_phone>
      <ns1:tx_area>03</ns1:tx_area>
      <ns1:tx_number>99998888</ns1:tx_number>
      </ns1:home_phone>
      </ns1:contact>
    - <ns1:contact>
    - <ns1:work_phone>
      <ns1:tx_area>03</ns1:tx_area>
      <ns1:tx_number>88887777</ns1:tx_number>
      </ns1:work_phone>
      </ns1:contact>
    - <ns1:contact>
    - <ns1:other_phone>
      <ns1:tx_number>0400123123</ns1:tx_number>
      <ns1:cd_type>Mobile</ns1:cd_type>
      </ns1:other_phone>
      </ns1:contact>
    - <ns1:contact>
    - <ns1:other_phone>
      <ns1:tx_area>03</ns1:tx_area>
      <ns1:tx_number>77776666</ns1:tx_number>
      <ns1:cd_type>Other</ns1:cd_type>
      </ns1:other_phone>
      </ns1:contact>
      </ns1:applicant>
      </ns1:application>
      </ns1:service>
      </ns1:inteflow>
      </ns1:_sRequestXML>
      </ns1:ExecuteXMLRequest>
    Anonymizer bean is stripping the namespace prefix ns1 but it is also stripping the address http://decisionintellect.com/inteport/.
    Below is my anonymizer bean config in PI:
    Processing seq:
    1                    AF_Modules/XMLAnonymizerBean               local enterprise bean            0
    Module config:
    0                   anonymizer.acceptNamespaces                    http://decisionintellect.com/inteport ''
    0                    anonymizer.quote                                          '
    Can someone please suggest how to keep the http://decisionintellect.com/inteport and remove rest of namespace prefixes

  • /BIC/ namespace not modifiable, can't create PSA delete variant in process

    Hello,
    When I attempt to create a PSA delete process in a process chain, I get an error message as such:
    Namespace '/BIC/' must be set to 'changeable' (transaction SE06)
    Message no. R7063
    I have had Basis dot his for me before and it worked, but it takes a lot of change menagement to do this.  I have asked Basis to leave it modifiable in SE06, but they will not.  Is that the only way to be able to create PSA process variants is to have Basis use SE06?  I looked in Object Changeability, but nothing stuck out.  I should not have to have Basis do this task every time.  Please let me know if there is a better way.
    Thank you.
    Brent

    Hi Brent
    I believe /BIC/ namespace should remain modifiable where you are creating PSA deletion process.
    You can check if that is the case in your system.
    Check in TRNSPACE table with namespace /BIC/  .. changagle flag should be X. I think it should be in your production also
    Regards
    Anindya
    Edited by: Anindya Bose on Mar 8, 2012 4:52 AM

  • Delete temporary tables from namespace /BI0/0W - Failed to delete BPC Dim

    Hi guys,
    we have a problem while trying to delete a BPC Dimension which is no more used in any Application.
    Dimension deletion fails because BW InfoObject deletion fails. From SLG1 we see there are some reference still in use.
    Data Element /B28/OIJ2D30F1 is used in a couple of tables (/BI0/0W00000231 and /BI0/0W00000233).
    These tables seems to be "where used list" tables.
    We found an OSS Note [1042921|https://service.sap.com/sap/support/notes/1042921] related to DB6.
    But it is not suitable: we are on ORACLE.
    Anyway it says:
    you may have to delete temporary tables from namespace /BI0/0W*, which also use the data element
    These are exactly our symptoms
    Does anyboy of you know how to delete this tables in /BI0/0W namespace?
    Package is blank
    SE11 -> Delete requires to register the object (created by BPC_ADMIN)
    Thanks in advance
    GFV

    in the table ddd02l you can see the temporary table..
    TCode db02, you can ask your basis team to delete temp  table...you can see it 'under missing table and indexe'

  • Delete(xml) in Flex namespace problem

    hihi
    I have problem with AS3 xml
    I want delete nodes in the folowing XML, which has title
    "undefined". A sample from the xml:
    <xml>
    <page>
    <title>Szabályalapú
    reprezentáció</title>
    <id>tudásterület_74</id>
    <revision>
    <id>1</id>
    <timestamp>2008-05-27T09:58:13Z</timestamp>
    <contributor>
    <ip>Wikiadmin</ip>
    </contributor>
    <text aaa:space="preserve"></text>
    </revision>
    </page>
    <page>
    <title>undefined</title>
    <id>tudásterület_22</id>
    <revision>
    <id>1</id>
    <timestamp>2008-05-27T09:58:13Z</timestamp>
    <contributor>
    <ip>Wikiadmin</ip>
    </contributor>
    <text aaa:space="preserve"></text>
    </revision>
    </page>
    <page>
    <title>Döntési folyamat</title>
    <id>tudásterület_22</id>
    <revision>
    <id>1</id>
    <timestamp>2008-05-27T09:58:13Z</timestamp>
    <contributor>
    <ip>Wikiadmin</ip>
    </contributor>
    <text aaa:space="preserve"></text>
    </revision>
    </page>
    </xml>
    I tried this script but didnt worked:
    delete xml.*::page.(title=="undefined")
    In a basic this shuold be like:
    delete xml.page.(title=="undefined")
    How does it work in xmls with namespace?

    "rtalton" <[email protected]> wrote in
    message
    news:gecgfa$3rs$[email protected]..
    > Sure thing. I tried to find a one-line method but
    couldn't. E4x syntax
    > supports
    > filtering using expressions, but not the delete command
    as far as I could
    > tell.
    > Maybe someone else knows more. Good luck.
    I think the problem is the filter expression returns an
    XMLList. You can
    only delete a single node. So try:
    delete yourNodesFilteredByExpression[0];
    HTH;
    Amy

  • Deleting namespace in repository

    Hallo,
    I´m trying to delete a namespace in a software-component. Before deleting all objects. But a message occure that not all objects are deleted in the namespace. What is wrong?
    Thanks in advance,
    Frank

    Hi,
    1.Delete all created object first.
    2.Then delete the ExchangeFaultData and ExchangeLogData.
    3.Go to SWCV and delete the namespace by clicking <b>-</b>.
    /people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions
    Regards
    Suraj

  • How to delete a Namespace

    Hi Experts,
                 In IR, I have created a Namespace to a SWCV and created all the Interface Objects and Mapping Objects. But i want to create the same Namespace to another SWCV. Now, my queries are
    1) Am i allowed to create a Namespace (with same name) for more than one SWCV .
    2)How can i make use of the Interface Objects and Mapping Objects of a Namespace of one SWCV in the Namespace of another SWCV.
    3) How can i delete a Namespace of  SWCV.
    Regards,
    kp.

    Hi,
    To Delete the Namespace
    First delete all the objects in namespace except the default datatypes and activate.
    Now delete the default data type and Then delete the namespace added to the software component and save and then activate it will delete your namespace.
    To Copy  Namespace From One SWCv to Another SWCV
    Copy the Namespace With in the Same SWCV
    If we want to copy the namespace with in the same SWCV means create the new Namespace & we have to copy the Objects Individually. And Change the Namespace in newly copied Message Type with new Namespace. So that this will reflect in MM. select the new Message type in the new message mapping.  Otherwise Error may come.
    Copy the Namespace Between Two SWCV
    http://help.sap.com/saphelp_nw2004s/helpdata/en/e8/e8573ba5f13048be50532fc3fcea9c/content.htm
    Regards
    Seshagiri
    Edited by: N V Seshagiri on Apr 15, 2008 9:08 AM

  • How to delete a namespace from IR

    Hi,
    I have deleted the all data  types but I could not delete the Namespace from IR.
    can anyone help me out.
    Thanks & Regards
    Ashok.

    Ashok,
    You could take a look at this too..
    /people/siva.maranani/blog/2005/05/22/how-to-delete-software-component-from-integration-builder
    Just to be sure
    cheers,
    Prashanth
    P.S Please mark helpful answers

  • Delete namespace in IR

    Hi everybody,
    I made a mistake when typing in the namespace. Now I want to delete the namespace.
    When I try to delete and save the deletion I get an error, that there are still objects in the namespace.
    The objects are the generated datatypes:
    - ExchangeFaultDate
    - Exchange LogData
    But if I try to delete and active this two objects I get another error:
    "The predefined datatype can only be deleted if the namespace will be removed from the SWC"
    Is there a workaround?
    Thanks Regards Mario

    Hi,
    First delete the all Objects Except
    ExchangeFaultDate
    Exchange LogData
    And now activate it.
    Now Delete those two mentioned above & Activate it.
    Now try to delete the namespace
    reward point if this helps you
    Praveen K

Maybe you are looking for