How to delete Inbound-/Outbound-Plugs?

Hi,
can anybody tell me how to delete in an easy way unused Inbound- or Outboundplugs of Views or Windows?! Is it sufficient do delete the methods of the implementation class?
Thanx & best regards,
Oliver

Oliver
     Delete the Plug methods in the implementation Class .
Thanks
Allot points if this help!

Similar Messages

  • How to Delete Unwanted Aperture Plug-ins

    I have installed a trial version of a plug-in that I don't want to use. How do I uninstall a plug-in?
    Thanks

    just delete them from:
    \Library\Application Support\Aperture\Plug-ins\
    or
    ~\Library\Application Support\Aperture\Plug-ins\
    with aperture not running and then restart ... poof ... gone ...

  • How to delete inbound delivery

    Hi guru's,
    How can I delete an inbound delivery, who's GRN is processed in migo, & who's sale has also been taken place, hence there is no stock in mmbe for that batch.
    but in vl06if list it is there, how to delete it, please its urgent
    thanks
    tuljasingh

    Hi
    As you said there is no stock for this material in that plant, so there is another options to transfer stock from any other plant to this plant using MB1B and movement type 301 Transfer posting plant to plant in one stepbThe quantity is transferred from unrestricted-use stock in the issuing plant to unrestricted-use stock in the receiving plant.
    And then do the said process
    Else only option is to reverse the sale for same
    Regards

  • Web Dynpro ABAP: Inbound/Outbound plugs

    Hi,
    Has anyone used the suspend/resume functionality in a Web Dynpro ABAP Window? I need to navigate from my component to another component and be able to navigate back and resume the session. Apparently it can be done using these types of plugs but there is no doco/examples available to look at.
    Thanks!!
    Nick

    Hi Nick,
    here's documentation about the suspend/resume plugs: http://help.sap.com/saphelp_nw04s/helpdata/en/43/6b972329d23d33e10000000a11466f/frameset.htm
    Regards, Heidi

  • How to fire outbound plugs of a window?

    I have a component which I want to re-use in applications. The component should have 2 outbound (interface) plugs which can be wired into parent applications. When the user clicks buttonA in the component it should fire outboundPlugA, likewise for buttonB we have outboundPlugB. My problem is that I can only seem to fire outbound plugs of the view and not of the window.
    Until now, we've solved this by firing interface events of the component controllers but it seems plugs would be more elegant.
    How does one fire outbound plugs of the window?

    OK, I've done what you said and have the following in the event handler (action of a button) in my view:
      DATA:l_ref_test TYPE REF TO ig_comp1_window.
      l_ref_test = wd_this->get_comp1_window_CTR( ).
    The compiler error message is:
    Method "GET_COMP1_WINDOW_CTR" is unknown or PROTECTED or PRIVATE.
    This method does not exist as far as I can see.

  • Is it possible to Create dynamic outbound plug and it's navigation link?

    Hi,
    i am trying to create an outbound plug in runtime dynamically, is it possible?
    I have found out how to create the outbound plug in wdDoModifyView: "<b>view.getViewInfo().createOutboundPlug()</b>"
    but the problem is how do i set the plug name, and how do i create it's navigation link to bind him to an inbound plug in another view.
    Thanks,
    Carmit

    Hi Carmit,
    the following code snippet creates a link between a newly created outbound plug (outbound plug name is not really necessary) and an already existing inbound plug:
    /* targetViewInfo is the IWDAbstractViewInfo of navigation target
       srcViewInfo is the IWDAbstractViewInfo of navigation source
       Find inbound plug, must exist */
    IWDInboundPlugInfo targetPlug = targetViewInfo.findInInboundPlugs(inboundPlugName);
    /* Create outbound plug with "automatic" name */
    IWDOutboundPlugInfo srcPlug = srcViewInfo.createOutboundPlug();
    /* Create link from out to in */
    IWDNavigationTargetReferenceInfo targetReferenceInfo =
      srcViewUsage.createNavigationTarget(srcPlug.getName(), targetViewUsage, targetPlug.getName());
    /* Fire srcPlug somewhere...*/
    Hope that helps.
    Regards
    Stefan

  • How to pass parameters of outbound plug of one view to other view...

    Hello All,
    i have a scenario like this.
    1) i have two views(View1, View2) and iam calling View2 using View1 Outbound plug which is having one parameter(Par1). iam filling this parameter in lead_select method using
    "wd_this->fire_op_to_display_plg (
    par1           =   itab-name1
    In the debugging iam able to see Par1 is filled with value.
    2) In View2 iam calling View1 using Inbound plug with no parameters.
    3) I have to pass this Par1 which i got in View1 to View2 so that i can use this for displaying the output(this parameter is mandatory in processing the data of View2.
    Could any one suggest how can i approach to solve this problem step by step.
    Thanks,
    Sree.

    go to the the method of inbound plug in methods tab of view 2
    and add the same parameter with same name and with the same type and directly access in the method..
    see the picture  test is the inbound plug
    http://flickr.com/photos/28584284@N04/2845020873/
    Abhi

  • How to link Inbound plug between 2 windows

    Dear All,
    I create a linktoaction link,
    and I want come out when I click this link then windows.open a new view in other windows,
    by the way have some data transfer between 2 views,
    if 2 viewes in one windows is easy ,but my task is in  2 different windows !!
    I don't know  how to use Inbound plug or Outbound plug ?
    can you help me  ?

    Doke,
    In a Web Dynpro project, only applications can be addressed by a URL. So, trying to get a URL for your new Window may not be possible. There are 2 ways to get past this issue though.
    1. Use the approach suggested by Satyajit in [this Blog|https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/7143].
    or go this way. I tested this and it works.
    2(a). In your popup window, 'Win_Popup' embed an 'Interface View' say"Popup_InterfaceView".
    2(b). Assign a plug of type 'Startup' to this Interface View and to embedding Window too if you are using CE 7.1.
    2(b). Create a new Application say "Popup_App"and assign your newly created Interface View "Popup_InterfaceView" as its target.
    2(c). Get URL for this new application like this.
                 String deployableObjectName = wdComponentAPI.getDeployableObjectPart().getDeployableObjectName();
                   try {
                            WDDeployableObjectPart deployableObjectPart = WDDeployableObject.getDeployableObjectPart(
                            deployableObjectName,"Popup_App",WDDeployableObjectPartType.APPLICATION);
                            String urlToTargetApp = WDURLGenerator.getApplicationURL(deployableObjectPart);
                   catch (WDURLException e)
                          messageMgr.reportException(e.getLocalizedMessage(), false);
    2(d) Use the generated URL for navigation.
    IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow(urlToTargetApp ,"title");
    wdContext.currentContextElement().setWindowRef(window);
         window.setWindowSize(300, 300);
         window.setWindowPosition(50, 50);
         window.setTitle("Title Name");
         window.open();
    This works.
    Hope this helps.
    Vishwas.

  • Multiple inbound and outbound plugs

    Hi Experts,
    Can anybody give an example scenario where we compulsorily need multiple inbound and outbound plugs for a view??

    Hi snakar rao  ,
                           Suppose we have three views, a , b, c. Suppose we have a requirement like we need a button move_to_b on a, a button back in b which will move back to a, a button move_to_c on b and a button move_to_initial screen on c.
    in this case
    we need one out bound plug in a which will be connected to inbound of b
    one out bound plug in b which will be connected to inbound of c.
    in this case a needs two inbound plugs, one is for navigating from b and the other is for navigating from c
    if there is a requirement like we need to navigate from a to c directly also, in this case c need one more inbound plug thats to connect the inbound plug from a.
    Regards
    Sarath

  • How do I delete/remove interent plug-ins from the security preferences of safari

    How do I delete/remove interent plug-ins from safari

    Hi Joe ..
    You can disable plug-ins.
    From your Safari menu bar click Safari > Preferences then select the Security tab.
    Deselect:  Allow Plug-ins
    To remove internet plug-ins is another process altogether.
    How to uninstall thrid party add ons here.

  • Why do we use inbound and outbound plugs in abap webdynpro?

    hi all,
    why do we use inbound and outbound plugs in abap webdynpro?
    Thanks

    Actually we have 2 types of plugs
    1.View plugs
    2.Window plugs/Interface Plugs
    plugs are for navigating one view to the other and also you can pass the parameters along with the plugs.
    Outbound plug is to navigate from one view to other view,also we can pass parameters along with the plug.
    Inbound plug is like event handler/receiver of the outbound plug.
    Using window plugs we can call other Web Dynpro applications.for more information check this link.
    http://help.sap.com/SAPHELP_NW04S/helpdata/EN/45/19bf8c16f25d7ae10000000a11466f/frameset.htm
    Thanks
    Suman

  • Vista x64, Dell Laptop Lately I have been getting audio ads from Lysol etc which I can stop by deleting the process plug-in container Iknow how to delete this process but why does the audio ad run despite the application of two well known antivirus progs?

    Vista x64, Dell Laptop Lately I have been getting audio ads from Lysol etc which I can stop by deleting the process plug-in container Iknow how to delete this process but why does the audio ad run despite the application of two well known antivirus progs?

    Oh, PLEASE IGNORE the line:
    deleted everything under HKLM\SYSTEM\CurrentControlSet\Enum\Root\SYSTEM (folders 0000 to 0004)
    That was left there inadvertedly. Can't seem to find the edit button here...

  • I received a message to update plug-ins so tried following directions, only to find out my computer is not compatible with the update. How to delete ?

    I have an older iMac operating on Mac OSx 10.4. When I attempted to down-load some plug-in updates, they would not accept it because my computer is to old and doesn't have the necessary capability. When I try to remove the message, nothing works, and every time I boot the computer with Firefox, it keeps reloading. Please tell me how to delete this plug-in reminder. Thank you.

    You can inspect and modify some prefs on the about:config page to suppress the plugin reminder.
    *set the plugins.hide_infobar_for_missing_plugin pref to true
    *set the plugins.hide_infobar_for_outdated_plugin pref to true
    *set the plugins.update.url pref to an empty string
    See also:
    *http://kb.mozillazine.org/about:config
    There is still a newer Flash version available for your OS X 10.4 computer.
    What version of Flash Player should I use with my Power PC based Mac?
    * http://forums.adobe.com/thread/895134
    Flash Player 10.1 Release Notes:
    * http://kb2.adobe.com/cps/838/cpsid_83808.html
    See (Released 11/04/2010) Flash Player 10.1.102.64 and 9.0.289.0 (126 MB)
    * http://kb2.adobe.com/cps/142/tn_14266.html Archived Flash Player versions

  • How to make outbound plug to Public attr

    Hi All,
               I am trying to call outbound plug from get_v method for f4 help. But when i click on f4 help, it getting dump by giving below error.
    View 'ZXXXX/GeneralData' does not have the public outbound plug 'OP_FINDXXXX' for value help navigation
    In get_v method, using below piece of code.
         CREATE OBJECT rv_valuehelp_descriptor TYPE cl_bsp_wd_valuehelp_navdescr
         EXPORTING
          iv_outbound_plug = 'FINDXXXX'.                    "#EC NOTEXT
    My concern is how to make Outbound plug to public or if there any other way to call Outbound plug from Get_v then please advice.
    I appriciate your suggestion.
    Thanks
    RI

    Hi Imran!
    To make outbound plug public please do the following things:
    1)In BSP_WD_CMPWB: go to the code of your outbound plug and switch to edit mode;
    2)Save & Activate your outbound plug.
    3)Menu "Go to" -> "Method Definition"-> tab "Attributes":
    - set "Visibility" = Public
    - "Event" block: "Active" should be marked.
    Warning: after changing of visibility the content(code) of method will be removed automatically!
    So, save it beforehand.
    4) Then go to method and try to do save and activate.
    You will get a error message. Double click at this message - so you will be redirected to the error place - protected section of the current class.
    5) Find out in this protected section the rows with your outbound plug - cut out them.
    6)On the toolbar you will see button for public section - go there and past you rows there.
    7) save and activate everything.
    8) Now you can fill your outbound plug with your logic and activate again.
    I did this just recently many times and it worked fine.
    Please tell me if something is unclear or doesn't work.
    Good luck!
    Evgenia

  • Not able to delete inbound delivery.

    Hi Gurus,
    Please help me delete inbound delivery. I have a ticket where user is not able to delete inbound delivery. I tried to delete this delivery and I’m also getting the same errors that user is getting.
    I have tried to insert real screen shots from production system in this post to give a better understanding of the scenario.
    The situation is: PO was created for 2 line items for same material but different batch, for different quantities.
    For line item 1:
    1.      Two separate partial deliveries were received along with 1 delivery note each, for quantities 14,957.130 KG and 855.017 KG.
    2.      Goods issue was posted for both quantities.
    3.      Invoice receipt was done for both quantities.
    4.      Goods receipt was done for both quantities.
    5.      However, goods receipt was later reversed for quantity 14,957.130 KG.
    Screenshots Line item 1
    For line item 2:
    1.      One delivery was received for full quantity of 292.112 KG.
    2.      Goods issue was posted for same quantity.
    3.      Invoice receipt was posted for same quantity.
    4.      Goods receipt was posted for same quantity.
    5.      However, goods receipt was later reversed for full quantity.
    Inbound Delivery screens below:
    Error VL32N screen
    Message in VL09 when trying to reverse goods movement with reference to inbound delivery:
    Please tell me how can this inbound delivery be deleted?
    Points will be awarded for right help.
    Thank you for viewing.

    Hi
    BV Yadav:
    1. it's the business user who posted the invoice, and posted goods issue the was it appears in PO history.  i'm not sure how they did it.
    Kamlesh: I tried both, changing the document date and delivery date to current. i still got same error. still not able to delete inbound delivery.
    Tomas Figura: Puaway QTY is already 0. this field is blank, nothing in it. pic below:
    Note: someone has suggested to follow the process to reverse as many postings that have been done against the PO as possible and ultimately delete the PO, this will break all links between PO and inbound, outbound deliveries. and hence, there won't be a need to delete inbound delivery anymore.  then the business user can start the brand new process from scratch by creating a new PO, create a new outbound, inbound deliveries, and all. what do you guys think of it? Please comment.
    Thank you guys.

Maybe you are looking for

  • Zen Stone Plus won't charge for more than 10 min

    When I charge my zen stone plus, withint 5-0 mins it will be full, as indicated by both Creative Mediasource lite as well a the blinking blue led. But once I turn on th eplayer i am shown with only 2 bars of battery and within 5 minutes of use I am d

  • Unable to load web application

    Hello everyone, I have created a web application with a login.html page using the configure ADF Security Wizard. When i run the application from my computer, it runs perfectly. However, when i try running it from another host i get the following erro

  • FCP 6.06 to 7 upgrade - existing projects okay?

    Currently in the final phases of a huge editing project in FCP 6.06. Some of the new features in v7 would be incredibly helpful right now. I just purchased v7, but before I install I wanted to check to see if anyone else has had experience with the u

  • I.cant.get.pics.on.my.ipod.

    Can I Please Get Some Help?? Windows   Windows XP  

  • How to make Shipping point mandatory in VT01N transaction

    my requirement is when we goto transaction VT01N and provide TransportPlanningPlant and Shipment type , and click on delivery there is a field Shipping point which i need to make as mandatory. or if the user wants to continue without Shipping point