How to remove Name space and Software Component in XI??

Hi Frnds,
How to delete Software Component and Name spaces.
Please share me any documents.
Regards,
Raj

Hi Raja,
Check the sap help
http://help.sap.com/saphelp_nw04s/helpdata/en/e8/c5fe4e336c4fdd89eb5fe5abc02865/frameset.htm
Re: How to Remove Components
Thanks!

Similar Messages

  • The relation between Name space and software component

    hi all ,
                   i want the  relation between the software compnent and the namespace , , i saw one of the tread in sdn.sap.com
    thanks
    sridhar

    Hi Sridhar,
            Please check this link. It states relation between SWCV and Namespace and also tell tht how to transfer objects to a new SWCV.
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/a3/cc132914cf41e4a193c32627a87542/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/a3/cc132914cf41e4a193c32627a87542/content.htm</a>
    Regards,
    Subhasha Ranjan

  • "urgent" pls help: How to remove name space form message in call to WS

    Hi
    I am calling a WS from my BPEL process. In the BPEL process I call the WS by referring to the URI of the WS in the partner link. The process works fine. But I have a problem with the message size. The WS does not accept Message size greater than 16kB.
    But my message some time exceeds 16kB when maximum data is handled in the message.
    Now I found that the each element in the request contains the namespace which eats up a lot of space.
    Is there a way to remove the namespace from individual elements and put it in a common place in the file? This would reduce the file size.
    I would like to bring to your notice that the WSDL of the WS that I am referring to does not have any reference of xsd. And also no XSD has been created in my BPLE process for this WS.
    Present message
    <messages>
    <InvokeCallORSNewHI_HELLO_InputVariable>
    <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="parameters">
    <HELLO xmlns:ns1="http://abc.def.com/webservices/" xmlns="http://abc.def.com/webservices/">
    <ns1:HELLO_DATA>
    <ns2:HI_TW xmlns:ns2="http://abc.def.com/webservices/packets">
    <ns3:IDENT xmlns:ns3="http://abc.def.com/webservices/fields">400001102/T1-TW17902</ns3:IDENT>
    <ns3:HI xmlns:ns3="http://abc.def.com/webservices/fields">400001102/T1</ns3:HI>
    <ns3:START_DATE xmlns:ns3="http://abc.def.com/webservices/fields">20080404</ns3:START_DATE>
    <ns3:START_TIME xmlns:ns3="http://abc.def.com/webservices/fields">0800</ns3:START_TIME>
    <ns3:DURATION xmlns:ns3="http://abc.def.com/webservices/fields">1200</ns3:DURATION>
    <ns3:WINDOW_COST xmlns:ns3="http://abc.def.com/webservices/fields">1.113</ns3:WINDOW_COST>
    <ns3:LATE_COST xmlns:ns3="http://abc.def.com/webservices/fields">1.75</ns3:LATE_COST>
    </ns2:HI_TW>
    </ns1:HELLO_DATA>
    </HELLO>
    </part>
    </InvokeCallORSNewHI_HELLO_InputVariable>
    </messages>
    Expected------------
    <HELLO xmlns:ns1="http://abc.def.com/webservices/" xmlns="http://abc.def.com/webservices/">
    <ns1:HELLO_DATA>
    <ns2:HI_TW>
    <ns3:IDENT>400001102/T1-TW17902</ns3:IDENT>
    <ns3:HI>400001102/T1</ns3:HI>
    <ns3:START_DATE>20080404</ns3:START_DATE>
    <ns3:START_TIME>0800</ns3:START_TIME>
    <ns3:DURATION>1200</ns3:DURATION>
    <ns3:WINDOW_COST>1.113</ns3:WINDOW_COST>
    <ns3:LATE_COST>1.75</ns3:LATE_COST>
    </ns2:HI_TW>
    </ns1:HELLO_DATA>
    </HELLO>
    Thanks
    Buddhadev

    Dear Rico
    Thanks for replying.
    Which XSD are you refering to ;
    Is it process XSD or the XSD created for the called WSDL.
    As I have stated, no XSD has been created for the Consumed WS. And no XSD reference is present in the WSDL of the WS consumed by me.
    Please confirm
    Thanks a lot
    Buddhadev

  • How can you create a paragraph style that removes all spaces and forces everything to lower case?

    Hi,
    Is there anyway of using GREP (or some other magical wizardry) to create a paragraph style that automatically removes all spaces and forces words into lower case?
    Strange request i know....I'm wanting to use it for datamerged email addresses.
    Thanks

    so doing it through InDesign is a work around I'm exploring.
    Excel has the 'LOWER' function and the ability to record macros for a quick find/replace on the spaces - so that's definitely a good option if it can't be solved purely in InDesign.
    You can change case via scripting in InDesign. This AppleScript (OSX only) will set the case of the selected paragraph style to lower. It would be possible to add some code that would strip spaces as well:
    tell application "Adobe InDesign CS6"
        activate
            set StyleList to name of every paragraph style of active document
        set myDialog to make dialog with properties {name:"Document Paragraph Styles"}
        tell myDialog
            tell (make dialog column)
                tell (make border panel)
                    tell (make dialog column)
                        make static text with properties {static label:"Choose a Style", min width:150}
                    end tell
                    tell (make dialog column)
                        set myPresetsDropdown to make dropdown with properties {string list:StyleList, selected index:0, min width:150}
                    end tell
                end tell
            end tell
        end tell
        set myResult to show myDialog
        if myResult = true then
            --+1 gets the correct name because list starts at 0
            set myStyle to item ((selected index of myPresetsDropdown) + 1) of StyleList
        else
            return
        end if
        destroy myDialog
        tell active document
            set myStyle to paragraph style myStyle
            repeat with j from 1 to (count stories)
                repeat with i from 1 to (count paragraphs in story j)
                    if applied paragraph style of paragraph i of story j is myStyle then
                        --defines a variable to replace the generic this_text parameter in the handler
                        set SCText to the contents of paragraph i of story j
                        set contents of paragraph i of story j to my change_case_of(SCText)
                    end if
                end repeat
            end repeat
        end tell
    end tell
    on change_case_of(this_text)
        set the_comparison_string to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        set the_source_string to "abcdefghijklmnopqrstuvwxyz"
        set the_new_text to ""
        repeat with thisChar in this_text
            set x to the offset of thisChar in the_comparison_string
            if x is not 0 then
                set the_new_text to (the_new_text & character x of the_source_string) as string
            else
                set the_new_text to (the_new_text & thisChar) as string
            end if
        end repeat
        return the_new_text
    end change_case_of

  • How to remove ghost space on Camera Roll under Usage. No photos on camera. 545MB shown on Camera Roll and 1.8MB on Photo Stream

    How to remove ghost space on Camera Roll under Usage. No photos on camera. 545MB shown on Camera Roll and 1.8MB on Photo Stream?
    Trying to clean up space to download updated iOS. Thanks!
    Have tried unsuccessfully the left swipe and pressing the red delete. No change.

    The only problem is I have only 1.6GB available and need 3.7 to update to the iOS7.  I also have 2.6GB in the "Other" catagory.  How do I access the "Others" area in iTunes in order to see what is there and what I might be able to delete in order to create the amount of space needed.  Thanks for your help!

  • Trying to update iPad mini. Old email continues to appear and can't authenticate. How to remove it totally and use my iCloud I.D.?

    Trying to update iPad mini. Old email continues to appear and can't authenticate. How to remove it totally and use my iCloud I.D.?

    If you have any apps that were acquired with the old ID they will always be tied to that ID. Delete them and reacquire them with the new ID that you have in Settings > iTunes and App Store

  • Transport products and software component version

    Hi,
    I created a Products and its Software Component Version in System Landscape Directory of XI development.
    I imported this Software Component Version into Integration Builder and developed design and configuration objects.
    The scenario is completed and now I want to transport the Products and Software Component Version to XI Production.
    Could someone please explain the transport procedure.

    Hi Shravan,
    Thanks four your instructions. I would like to have more details on the export/import procedure. Please confirm the following steps are correct:
    From SLD of XI development:
    1/ Edit new product and its software component version.
    2/ Click on icon Export: XI generates a zip file and downloads it in c drive.
    From SLD of XI Production:
    1/ Select Import utility under system catalog.
    2/ Browse and select the zip file
    In XI production there are existing third party products, and I do not want the transport of this new product causes any problem.
    Design and configuration objects will be exported/import ed after the successful transport of product and software component version transport. 
    Regards,
    Daniel

  • How to remove all columns and cells in numbers

    how to remove all columns and cells in numbers

    Click on the Table's icon in the Sheets list. Press delete.
    Done.
    Regards,
    Barry

  • Product and Software component in SLD

    Hi,
    What is the basic concept of product and Software component.I have few questions.
    If our company is going for Sap implementation of ISmedia
    and XI as middleware for interfacing with other systems then what do we need to do for product and SWC.
    Do we need to create a third party product and SWC for this project in sld?
    We can create differnt Software component under the existing Product of SAP ISM
    What are the best practices
    Thanks,
    Naveen.

    Hi,
    about Software Product and component go thru this part of SAP help-
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a2/2999ef97ea2b4790165f9ca5c05c41/frameset.htm
    <i>Do we need to create a third party product and SWC for this project in sld?</i>
    >>yea, you can create a thridparty product.
    <i>We can create differnt Software component under the existing Product of SAP ISM</i>
    >>>You can create software components for the product.
    I think, the documentation will help you understand this.
    Regards,
    Moorthy

  • How to remove AM extension and substitution from server

    Hi,
    Can somebody please tell me how to remove existing subsitution and extension of AM from server.
    Regards
    Swati

    Swati,
    You can delete the substitution by using an API jdr_utils.deletedocument('<path>').
    The path will be like 'oracle/apps/ap/xx/customizations/0/server/...'
    Regards,
    Gyan
    Edited by: Gyan on Jun 3, 2011 7:28 PM

  • How to remove white space between two answer reports

    How to remove white space between two answer reports
    In Dashboard section I have 2 rqeuest. Each request renders Table View. When I display dashboard, it show white space separating the 2 table views. How do I get rid of the white space/white band ?

    See this link
    Re: Eliminating the space between two reports in OBIEE dashboard page Section
    Regards,
    Sandeep

  • HOW TO REMOVE SHOPING REPORT AND COPMARE TRAVEL RATES FORM MAIN TOOL BAR IN FIR FOX ?

    # Question
    HOW TO REMOVE SHOPING REPORT AND COPMARE TRAVEL RATES FORM MAIN TOOL BAR IN FIR FOX ?
    WHEN EVER i AM SEARCHNING IN GOOGLE IN LEFT SIDE SHOPPING REPORT APPIR AUTOMATICALLY.

    Yahoo Messenger by default installs a number of extras such as the Yahoo toolbar and a browser plus plugin. There are a couple of places to check to uninstall these. First is the add-ons manager, for details on uninstalling via the add-ons manager see the [[Uninstalling add-ons]] article. If the Yahoo toolbar is not listed there, you can check the Windows control panel. The BrowerPlus plugin will probably also be listed in the control panel.
    You should be able to remove it from the Windows control panel.
    * From the Start menu, select Control Panel
    * Open the list of installed programs:
    ** If in icon view, click Programs and Features
    ** If in category view, under "Programs", click Uninstall a program
    * In the list of programs select the program, and then click Uninstall.

  • How can I share applications and softwares with different users of the same computer?

    First question: How can I share applications and softwares with different users of the same computer?
    Second : Can I use 2 different I cloud accounts to synt 2 iphones with one computer?

    Applications installed on the admin account are available to all user accounts unless Parental Controls are enabled.
    Yes.   Separate user accounts, help here >   How to use multiple iPods, iPads, or iPhones with one computer

  • How to remove empty space in CSS table and move spry menu bar?

    Hello! I created www.stonecreekha.com about a year ago basically by watching youtube tutorials and haven't done much with it since so I've forgotten everything! In IE7, everything appears as it should; but in Firefox and IE8, the spry menu bar is positioned slightly higher than it should be (it slightly cuts off the foot of the golfer) and there is an empty space between the navigation bar and the photo. The source code can be viewed from the website. Here are some pics:
    IE7 - how it is supposed to look:
    IE8:
    Firefox:
    Dreamweaver:
    So basically, I need to know how to remove that empty space between the navigation bar and the picture, and how to move the spry menu bar down a few pixels, in a way that it looks correct in IE8 and Firefox, and preferably IE7 as well.
    P.S. I'm a noob so if you could be as specific as possible on what to do in Dreamweaver I'd really appreciate it. Thanks

    I belive it's because of the -minus margin being used on the navbar, that you will need to use a negative margin to bring up both the left and right bodyArea divs.
    Try :       margin-top: -18px;  on both divs.  You may need to play around with that to get it more precise.
    Again, not sure what effect that has on IE as I can't test it.
    If it affects IE, then you may need to feed IE a conditional comment for the placement of those divs.

  • How to remove empty space from a file

    Hi all,
    Can any one help on how to remove the blank spaces from a file.
    I used trim function but unable to remove the spaces.
    I have a file in which there is a name like 'JAIRAM' and am storing this file in a variable FILE_CONTENTS.
    Now am unable to compare FILE_CONTENTS with another value as it is storing empty spaces also from the file.
    Please help on this
    Thanks,
    Srini

    Trim only trim at the beginning or at the end. Can you try using the replace sql function.. see below..
    SQL> select replace('abc def',' ','') from dual ;
    REPLAC
    abcdef
    cheers

Maybe you are looking for