How to uninstlal a Component

I need to un install a component form my system.
How to do that

Hi,
Please refer the SAP note 852447 Installing SEM-BW 600 on SAP NW 2004s AS ABAP, where in it speaks about the following :-
==========================================================
<i>Uninstalling SEM-BW
Before you install SEM-BW, keep in mind that it is not possible to uninstall ABAP add-ons. Release strategy note 160507 describes more restrictions with regard to the upgrade and maintenance of your R/3 system that results from the installation of an add-on.</i>
===========================================================
Hence Mr. Santosh Karadkar is correct and you can not uninstall !
Regards,
Prem

Similar Messages

  • How to construct the component tree in my custom component?Help!

    Hi, i am writing a custom component like this:
    public class HtmlCategory extends HtmlPanelGrid
         public void processRestoreState(javax.faces.context.FacesContext context,
                java.lang.Object state)
              setColumns(1);
              HtmlCommandLink link=new HtmlCommandLink();
              link.setValue("Let's Bingo");
              MyUtil.setActionListener(context,link,"#{temp.mytest}");
              UIParameter param=new UIParameter();
              param.setName("name");
              param.setValue("Robin!");
              link.getChildren().add(param);
              param.setParent(link);
              getChildren().add(link);
              link.setParent(this);
              super.processRestoreState(context,state);
    }         you see, i want to construct the compont tree at Restore View phase this way,because the structure of the component tree will always be the same, so i don't the user to write extra code.
    But the children of the component are not rendered,the renderer of the HtmlCategory component just extends the HtmlGridRenderer(myfaces) directly,and always calls the "super" methods in the encode methods of the renderer.
    I got a message from the console:
    Wrong columns attribute for PanelGrid id0:id4: -2147483648
    but i have set the columns attribute in the code above, so what's happening? or please give some advice about how to render the component tree by myself in Restore View with the tree constructing code in the custom component class code,just lke the code above.
    Best Regards:)
    Robin

    Well, i don't know if i have got my question clear.
    usually, according to the tags you use in the jsf page, a component tree will be created at the Restore View phase,for example:
    <f:form>
      <h:panelGrid ...........>                         
              <h:dataTable ................>
              </h:dataTable>
       </h:panelGrid>
    </f:form>but because i am writing a component for my web app, all the child components and their attributes are not likely to change. so i want to reduce the tags into one custom tag, and construct the component tree internally by myself.But it is not the case of backing bean.So i wrote the the code in the method:
    public void processRestoreState(javax.faces.context.FacesContext context,java.lang.Object state)as it is shown in my orginal message.But it seems that it is not right way to construct my component tree.So where should i put the code that construct the component tree?Overriding the method :
    public void processRestoreState(javax.faces.context.FacesContext context,java.lang.Object state)is not the right way?
    Best Regards:)
    Robin

  • How to display the Component view in the Pop up

    HI.
    I created one Z Component.
    In that i put one Button name as a POPUP.
    when i press that Button i want open an another component View or Same Component another View.
    How it is possible.
    I am writing the code in Event Handler.
    CALL METHOD COMP_CONTROLLER->IF_BSP_WD_WINDOW_MANAGER~CREATE_POPUP
      EXPORTING
        IV_INTERFACE_VIEW_NAME = 'ZKRI_NAVIGATION/DetailsOV' 
        IV_USAGE_NAME          =  'ConfigStdAlone'
        IV_TITLE               = 'Hello'
      RECEIVING
        RV_RESULT              =  confirm_popup.
    confirm_popup->set_on_close_event( iv_event_name = 'POPUP_CLOSED' iv_view = me ).
      confirm_popup->open( ).
    But i did not get the Popup with the view.
    How it is possible. Please expalin how to call another view in pop up with in the Same Component.
    How to call another component view

    Hi,
    Did you create a component usage of the Z component in the Run time Repository ?
    You can look into any of the standard fields with an F4 help for sample code..like Business Partner etc.,
    Regards,
    Masood Imrani S.
    Edited by: Masood Imrani on May 12, 2009 4:23 PM

  • How to change material component for a Purchase Order?

    How to change material component for a Purchase Order?
    I need FM .
    PLEASE help

    Dear ,
    Create PO with item category L....There in Item detail you will get tab for material.
    There click in component Button, it will take you to the component screen there you can assign and deassign components.
    Hope this helps.
    Regards
    Utsav

  • How to extract every component in an array?

    Hello everyone!
    Do you know how to extract every component from an array field?
    For example:
    The following is the defination of a table:
    CREATE TABLE test (
    id NUMBER PRIMARY KEY,
    name VARCHAR2(32),
    shape MDSYS.SDO_GEOMETRY
    And then I insert a new record:
    INSERT INTO test VALUES(
    1,'first',
    MDSYS.SDO_GEOMETRY(
    2003,
    NULL,
    NULL,
    MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,3),
    MDSYS.SDO_ORDINATE_ARRAY(1,1, 5,7)
    The Question is I want to read the every component (for example 1,1,5,7) in the sdo_ordinate_array one by one. Who knows how to write the SQL?
    I have tried "select a.shape.sdo_ordinates(1) from test a". But it can't work.
    Thank you very much!

    One solution is to read each ordinate from a cursor ina SQL block. Here is an example:
    set serveroutput on
    SET serveroutput on SIZE 1000000
    set concat on
    DEFINE layername = 'LAYER';
    DEFINE geomcolname = 'GEOM';
    DECLARE
    id varchar2(10);
    longitude number;
    latitude number;
    logmile number;
    i number;
    theLayer varchar2(32);
    theGeomCol varchar2(32);
    BEGIN
    FOR rec IN (SELECT ROWID, id, &geomcolname FROM &layername ) LOOP
    id := rec.id;
    i := 1;
    while i < rec.geom.sdo_ordinates.count loop
    longitude:=rec.geom.sdo_ordinates(i);
    latitude:=rec.geom.sdo_ordinates(i+1);
    logmile:=rec.geom.sdo_ordinates(i+2);
    dbms_output.put_line(id || ',' || longitude || ',' || latitude || ',' || logmile);
    i := i + 3;
    end loop;
    END LOOP;
    commit;
    END;
    Maybe that will help.
    Dave
    David R. Miller
    Michael Baker Jr., Inc.
    3601 Eisenhower Avenue
    Alexandria, VA 22314
    [email protected]
    www.mbakercorp.com

  • Urgent !please help!! how to get children component in encodeBegin()?

    hello all
    how can get children component in encodeBegin()?because when encodebegin the tree is not constituted so i can't get children component,how to solve?
    please help!

    You aren't providing enough information to know for sure what is going on, but a likely problem is that you're rendering a JSP page with a new component tree for the first time, so the components are getting built as the page executes.
    In the EA3 release, this caused a problem, because encodeBegin() was called from the doStartTag() method of the JSP tag (i.e. before the child components have been created). However, in EA4 the call to encodeBegin() was moved to doEndTag(), so the child components should now be getting created already.
    In order to debug this any further, we'll need a specific example of what you're doing, and what version of JavaServer Faces you're trying it with.
    Craig

  • How to delete Software Component in XI ?

    Hi,
    I have created a Software component with a NameSpace Containing Some Scenarios. Now i would like to delete this Software Component as a whole from the IR.
    I tried deleting :
    1.From the SLD Software catalog - Deleted the s/w product and associated component , it was deleted in the SLD s/w catalog but no effect in the IR Side.
    2.Deleted all the XI Objects and NameSpace in IR , but still empty software component exist in IR.
    Any help in this Regards will be appreciated...

    See this
    /people/siva.maranani/blog/2005/05/22/how-to-delete-software-component-from-integration-builder
    Regards,
    Prateek

  • How to change the component styles (inside panelFormLayout.)

    Hello friends,
    Can anyone help me, How to change the component styles where components (af:inputtext) inside af:panelFormLayout.
    i changed all of the components one by one style, inlinestyle .. from the inspector. By result is nothing.
    how to extend blafplus-rich and override some of the components style?
    thanks for your helps

    thanks alright but i want to learn again after this.
    Which component has a content or border or how can i find list components attributes for change style?
    For example i want to change document content pane, what will i write to css. i am little knowledge about css.
    Thanks for help

  • How to use Calander Component in JSF JSCreater

    i am using the calander component in JSCreter .
    i have one jsp page with a button and a calander component . If i let the calander field blank then the action event of button is fired but if i select some value in calandar field then then click the button then on action is fired
    what can be the reasion .

    I saw the documentation. But it uses com component which has ClassID / GUID. but how to use .net component and I think .net component doesn't maintain any registry information like classid / guid.

  • How to use ObjectDataProvider component in WDA

    Hello all,
    I hv an urgent requirement to develop an OADP based application in SAP webdynpro Abap (to fetch tree like structure). i don't know how its possible, but i heard we can use ObjectDataprovider component to do the same.
    Does anybody know how to use "ObjectDataProvider" component in web dynpro abap to develop OADP based Webdynpro abap application, a step by step guide would be very nice. or do i need to fetch data myself using methods in webdynpro.
    any reply will be highly appreciated.
    thanks
    Mani

    Hi,
    Know this is an old post, but for future people:
    In se80, see example Web Dynpro components:
    OADP_EXAMPLE
    OADP_TEST
    Good luck,
    Garth

  • How to calculate Reactive component & bill energy loss

    Hi,
    How to calculate energy losses and bill customers.We have kw and kWh registers.
    How to calculate reactive component.
    Pls help..
    Thanks

    As far as I know, we need to maintain a reactive register at the register group level. Reactive/ Active register relationship will give you the Power Factor, which is a measure of effective utilization of electrical power.
    Just my 2 cents!
    Regards,
    Rajini.

  • How to download webdynpro Component in ABAP

    Hi,
    Can anybody tell How to download Webdynpro component to desktop? is there any Function Module to do so?

    Do you mean Downloading the source code for WD ABAP   ?
    Not currently available but there is a beta version of a SAPLink plugin.
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/4438">https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/4438</a>
    Have a look at this thread for more information.
    <a href="https://www.sdn.sap.com/irj/sdn/thread?messageID=2905500#2905500">https://www.sdn.sap.com/irj/sdn/thread?messageID=2905500#2905500</a>

  • How to check SAP Component version and what is the latest patch installed

    Hi Experts,
    Can you please tell me that how to check SAP Component version and what is the latest patch installed.
    Thanks

    there are 2 easy ways
    1) log on to SAp System, on menu bar, slect system > Status...
    2) log on to system URL and click on system Status...
    Thanks,
    Prasant K Paichha

  • How to delete logical component

    How to delete logical component in solution manger 4.0
    Am deleting one system eatery in landscape components that time giving one warning?
    Is there any option for deleting logical components?
    Please give any solution for deleting system& logical components
    Warning is
    (Delete a system despite use
       You want to delete the system PRD, but it is still being used.
       You cannot delete the system as long as it is still used in logical
       Components. The where-used list tells you the logical components which
       Use the system. To delete the system, remove it from all logical
       Components first.
       You can only delete the system if it is used in system groups. The
       Where-used list tells you which system groups use the system.
       Warning
       If you delete the system despite use in system groups, you can no longer
       Access it in applications (e.g. in the Project Administration, if it is
       Used in a system group of type Project Landscape).

    Dear Kiran,
    Firstly find out where the system PRD has been added as an Logical System in an Logical Component. Remove the assignment and you should be able to delete the System.
    Similarly for deleting an Logical component find out which solutions are referring to the logical component and deassign the Logical Component from the Solutions. You can then safely delete the Logical Components.
    You can use the Where Used List button which looks like 3 arrow starting from an single point to different directions to find out the assignments.
    Hope that this helps .
    Regards
    Amit

  • Urgent!!help me! how to create UIInput component in code?

    hello all
    how to create UIInput component in code? my code as followed:
                        UIComponent nComponent = application.getComponent("Input");
                        if (!(nComponent instanceof UIOutput)) {
    throw new ClassCastException("error message...");
                        nComponent.setParent(parentComponent);
                        nComponent.setRendererType("Text");
                        nComponent.setComponentId(getClientId(context,nComponent));
                        UIOutput newComponent = (UIOutput)nComponent;
    newComponent.setValueRef("mymodel.propname");
    and input can get value from model,but can not update value to model?why?how can i do?

    Trying to understand the code snippet you posted. Could you please explain why you are casting your input component to output, then setting the valueRef on it ??
    -Jayashri

Maybe you are looking for

  • Twist on-screen keyboard too often unavailable

    I can't seem to get the on-screen keyboard when I want it.  It seems to me that any time I touch a typing field with the touchscreen the touch keyboard should open.  Is there nowhere I can set this preference? My favorite way to use the Twist as a ta

  • Tolerance limits in Purchasing

    Hi what are the tolerance limits in PO thanks

  • Problem with chart design

    Hi I am experiencing a problem with the output of a line chart that I am creating in APEX. Its labels (X-axis) are dates, but they do not seem to fit entirely into the lenght of the x-axis (all the ones that I have ordered in the sql expression). Als

  • Qosmio PX30t-A-119 is not connecting to WLAN

    My PC keeps telling me no connections are available. My router is on and my phone &'iPad can connect to it but my Qosmio can't. I managed to connect it via an Ethernet cable but when I removed it it still can't pick up any broadband signal. Any ideas

  • More jrun using up memory problems

    There seem to be a lot of problems like this but everyone's situation seems to be a little different.  It makes it hard to find solutions.  Here is what we are dealing with. We are taking an XML file containing product data and importing it into a SQ