Disable/Gray Out Delete Button in SRM

Hi All,
In the menu Shopping cart Status, I could able to see all the shopping cart.
Now the requierment is , DELETE button should be disable/gray out  if there is any corresponding PO for that SC.
Please let me know how to do this. I tried with BADI BBP_UI_CONTROL_BADI. But this will hide alll the SC's irrespective of PO's.
Please let me know any other way to do this?
I am working on SRM 5
Regards,
Nikhil V.Kumar

Hi,
Please try this
<<Link farm removed>>
Thank You,
Thanks,
AMS
Edited by: kishan P on Aug 30, 2010 5:38 PM

Similar Messages

  • Need to disable/Grayed out Unreseve button for Order lines

    Hi All,
    In Back to Back order process once the order is progressed, the requisition will be created and Quantity will be reserved for PO to be received.
    Some of our users want go and Unreserve this by the below methods.
    1) Tools --> Scheduling --> Unreserve
    2) Right Click on the order line --> Scheduling --> Unreserve
    We need to Disable or Grayed out this Unreseve option for ATO Flagged lines.
    Can anyone let me know if this is possible.

    Ok , Ned , well your Guidance really worked , thanks alot for that.
    I made it work , though since i am very new to AS3 , i really had to experiment , here is the final Code :
    import flash.events.MouseEvent;
    stop();
    var note1:Mc_Notice1 = new Mc_Notice1;
    var note2:Mc_Notice2 = new Mc_Notice2;
    var notes:Array = [note1,note2];
    //var count:Array = new Array(1);
    var count:int;
    count = 0;
    btnload1.addEventListener(MouseEvent.CLICK , load1);
    btnload2.addEventListener(MouseEvent.CLICK , load2);
    function load1(Event:MouseEvent):void
      addChild(notes[0]);
      notes[0].x = 100;
      notes[0].y = 100;
      count ++;
      trace("Counter Value:" + count);
      if ( count == 2)
      btnnxt.addEventListener(MouseEvent.CLICK , nextframe);
    function load2(Event:MouseEvent):void
      addChild(notes[1]);
      notes[1].x = 100;
      notes[1].y = 100;
      count ++;
      if ( count == 2)
      btnnxt.addEventListener(MouseEvent.CLICK , nextframe);
      trace("Counter Value:" + count);
    function nextframe(Event:MouseEvent):void{
      trace("Mouse Enabled");
      nextFrame();
    Once again , Thanks alot for the help and Guidance
    Best Regards

  • Gray out delete button (VL02N)

    Hi SDN,
    our customer requests that delete option/button in TCODE VL02N.
    I've traced that TCODE and made a new PFCG role, but didn't found any option or authorization that could hide that option from Transaction.
    Anyone has a clue on this issue ?
    thanks and best regards,
    Pedro Rodrigues

    Hi Siva,
    what do you mean ?
    I've created a new PFCG role and gave the least authorizations possible access the tcode
    Via Trace, I couldn't found any other auth object that it pass throught.
    thanks
    Pedro

  • Disable or Deactivate Delete Button in SAP Easy DMS.

    Dear All,
    My client is using Easy DMS and is working fine. Now the issue is as soon as files become more in Private or Public folder he is Deleting Documents using DELETE Button which is available on the Tool Bar. Whereas if he uses Delete Document from Context Menu it shows Authorization is not given to delete the Document.
    Is there any way to overcome this by Disabling or Deactivating Delete Button on the Toolbar.
    rgds,
    Dayanand

    Dear Anubhav,
    I have already tried this option. It shows this can not be implemented.
    Please let me know any other option is there to overcome this issue.
    rgds,

  • PO 'Complete' and 'Delete' buttons behaviorin SRM 5.0 , Extende classic

    My understanding of how these buttons work in SRM 5.0 ECS is as follows.
    If anybody has any input or want to correct me based on your experience of these buttons feel free to throw your input
    Delete button
    1) Will be enabled when the PO is in 'Held' status and no follow-on documents exist
    2) Once PO is deleted, no changes can be made to the PO and no cofirmations or invoices can be created against this PO
    Complete button
    1) When clicked, the system status changes to 'Transaction completed'. Cannot change the PO but can confirm goods receipt and process invoice against the PO (Is this true?)
    2)  Complete button will be active after a PO is created
    3) Any situations where the button will be disabled?

    Hi
    <b>Please try this -></b>
    Try to delete the PO line item first.I donot have any idea about your support pack level.
    Note 982448 - Impossibility to delete an item in PO
    <u>
    See also this one as this disable under condition</u>
    Note 852327 - Disable Deletion of Confirmed PO Items
    If you are in EBP 4.0,see this note Note 710827 - EBP 4.0 When creating a new PO, status is 'Error in Process'
    <u>If scenario is ECS, you maybe have an RFC communication issue (network ?...) else check is bbp_get_status_2 is having error (ST22...) in both systems.</u>
    <u>If EBP PO status is not correctly updated, delete button is disable</u>. Also Please look at transaction RZ20 in B2B procurement monitor what kind of error do you have.
    <b>Related links -></b>
    Re: Complete purchase order
    http://help.sap.com/saphelp_srm50/helpdata/en/d2/747c3a5934400be10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/98/32e4393d212000e10000000a11402f/frameset.htm
    Do let me know.
    Regards
    - Atul

  • Disabling 'Change' and 'Delete' button in Attachment List in ME52N

    Hi Friends,
    The reuqirement is this:
    A user attaches doucments  ( using the Generic Object Services to attach document ) while creating/changing Purchase Requisition (ME51N / ME52N).
    Now when any user goes to see the docuemnts attached to the PR, he selects the 'Attachement List' from the context menu, he should only be able to read it and should not be allowed to change or delete the document. For this we need to disable the 'change' and 'delete' buttons from the toolbar.
    Awaiting your response.......
    Regards,
    Fawaz

    Hi,
    Probably you have uncommented the call to super class when you reimplement the method on child class (z class)
    I just implement the same thing now and it worked for me. Take a look:
    1 - Modify the SGOSATTR table by SM30, just write a Z class (in my case CL_GOS_SRV_ATTACHMENT_CREATE) .
    2 - Create/inheridt a subclass (not a copy) in SE24 of the standard class.
    3 - Implement the method CHECK_STATUS in the z class. Note that the call to method on super class came commented. You only uncomment if you want to also execute a standard code in the super class.
    Here is my code:
    method CHECK_STATUS.
    NOTE - In my real implementation I have uncommented the code below because I want do standard code be executed before my own check.
    *CALL METHOD SUPER->CHECK_STATUS
    EXPORTING
       IS_LPORB  = IS_LPORB
       IS_OBJECT = IS_OBJECT
    IMPORTING
       EP_STATUS = EP_STATUS
       EP_ICON   = EP_ICON
      Check for BUS2012 = Bussinnes Object for Purchase Order
      IF IS_LPORB.TYPEID = BUS2012
      Check authorization and disable create attachment item if the user does not have authority...
    IF IS_LPORB-TYPEID = 'BUS2012'.
    AUTHORITY-CHECK OBJECT 'Z_MM001' ID 'ACTVT' FIELD '01'.
      IF sy-subrc <> 0.
        ep_status = mp_status_inactive.
      ENDIF.
    ENDIF.
    endmethod.
    Regards,
    Alexandre

  • Disabling 'Change' and 'Delete' buttons in Attachment List in ME52N

    Hi Friends,
    The reuqirement is this:
    A user attaches doucments ( using the Generic Object Services to attach document ) while creating/changing Purchase Requisition (ME51N / ME52N).
    Now when any user goes to see the docuemnts attached to the PR, he selects the 'Attachement List' from the context menu, he should only be able to read it and should not be allowed to change or delete the document. For this we need to disable the 'change' and 'delete' buttons from the toolbar.
    Awaiting your response.......
    Regards,
    Fawaz

    Hi,
    I have solved the issue Alhamdulillah by the foll. method:
    1. Copied CL_GOS_SRV_ATTACHMENT_LIST to ZCL_GOS_SRV_ATTACHMENT_LIST
    2. In ZCL_GOS_SRV_ATTACHMENT_LIST there is a method called: CHECK_STATUS. I overwrote with my check;
    on_mode_changed( 'D' ). --- For display
    on_mode_changed( 'E' ). --- For edit mode.
    3. In SGOS tcode, added VIEW_ATTA to point to ZCL_GOS_SRV_ATTACHMENT_LIST
    Regards,
    Fawaz

  • Grayed-out "Send" button

    Yesterday I had no problems sending messages, but this morning when I tried to send an email, the "Send" button is grayed out, not allowing me to send any messages. I tried changing the recipient, but it's grayed out on any message that I try to send.
    Any ideas? Thanks.

    Probably an "offline" SMTP server.
    Meaning under "accounts" pref in Mail. There is a server that is listed under "Outgoing Mail Server (SMTP)" is probably listed as offline. If you click on it, the option to bring it back online should be presented.

  • Download option is disabled, grayed out.

    Why is my Download option to re-download a purchased item, is grayed out? It's not active.
    Please advice.
    Thank you.

    Why is my Download option to re-download a purchased item, is grayed out? It's not active.
    Doublechecking. Did you delete the item (and associated file) from your library prior to attempting the redownload?

  • Gray out print button if status is blocked

    Hello Experts,
    I'm new to module pool programming.
    I have one application developed by implementers, In that we need to gray out the print button when the status of the LC is blocked.How can i achive it.
    Suggestions plz...
    Thanks in advance.
    Indra

    Hi,
       In the PBO of the screen in the status module write this
    DATA FCODE TYPE TABLE OF SY-UCOMM.
    if   LC . -
    wat ever ur condition
    APPEND 'PRINT' TO FCODE.
    endif
      SET PF-STATUS '9013' EXCLUDING FCODE.
    this will exclude the button wen ur condition will satisfy

  • Delete Button in SRM Administration Role

    Hello All,
    We have implemented the SRM7.0 (Extended Classic) and we have a requirement where the Delete button in the Shopping Cart Monitor to be hided only for the end users.
    The Delete(Button to delete the Shopping Cart row when we do the search) has to be enabled for the Administrator like Key Users.
    If we do the customization its a global change and the administrator is also not able to get the Delete option.
    Appreciate your help.
    Regards,
    Senthil Kumar S.

    Hello Senthil,
    you could do this dynamically via AppCC (Application Configuration Controller) or feeder class.
    Inside there you can ask whether the current user has the appropriate authorization - if yes, you can enable the button or make it visible.
    Just via configuration you don't have any possibilities for 7.02. A new feature within FPM in 7.31 are the Context Based Adaptatations (CBAs) - there you have the possibility to adapt one floorplan/GUIBB configuration to your own defined contexts (e.g. Roles, Countries, ...).
    Best regards,
    Julia

  • Grey out Delete button in VA42 - change Service and maint. screen.

    Hi
    i have the requirement to hide "Delete" button in the serial-material screen of the line item of a contract.
                   VA42 -> enter contract number.
                    select one line item.
                    Go to "Extras" -> Technical objects
                     Serial-material screen appears. Here i want to hide the Delete Button.
    i am using enhancements to achieve this.
    i require the exact point where i can use my enhancement.
    please assist.
    thanks,
    Ajay
    the issue is solved.. plz do not reply..
    Edited by: ajay setty on Jun 30, 2010 5:04 PM

    used enhancements to resolve the issue

  • Why is intellisense disabled/grayed out in SSMS 2012 Query? How to enable the intellisense?

    I just got SSMS 2012 loaded on my win 7 workstation yesterday. Intellisense was working fine. Then I went to Tools/Options to select Display line numbers.  Intellisense was still working yesterday.  But today there is no intellisense, and I observed
    that intellisense is grayed out in the Query menu.  In Tools/Options the intellisense is checked to be enabled.  I tried ctrl shift R, and also tried in manually from the Edit/Intellisense menu, but still no intellisense, and still it is grayed out
    on the Query Menu. 
    What can I do to fix this?
    Rich P

    Thank you for the reply.  I had already gone to that site and tried the suggestion, but that did not fix the problem that I'm having with the intellisense.  I have had this problem before where the intellisense is working for a while and then it
    quits working all of a sudden.  I am guessing that someone installed some more stuff my workstation and that may have caused it.  I vaguely recall with sql 2008 R2 (or maybe it was with sql 2012 on another workstation in the past) I installed some
    sp, and then (with maybe a few more steps in addition) the intellisense started working again.  I just don't remember what I did (or which version of sql server I did it to).
    Rich P

  • Disable (Gray Out) File Browse button

    To all Apex gurus,
    I am facing a situation when I have a Select List Item - P2_DOCS_CATEGORY (with Display Null enabled) and a File Browse Item - P2_FILE_INPUT and I dont want end-user to be able to click on File Browse (but I want it to be visible, so disabled or grey out state would be perfect) before selecting anything from my Select List (anything but not null state, where my Null Display value is - Select Type - ).
    I was trying this script in HTML Header but apperantly it doesnt work for me:
    function FldEnableDisable(pThis)
    if (pThis == 50)
    $x('P2_FILE_INPUT').disabled=true;}
    else
    { $x('P2_FILE_INPUT').disabled=false; }
    } and
    onChange="javascript:FldEnableDisable(this.value)" in HTML Form Element Attributes
    Any ideas?
    Thanks

    Hi,
    My sample
    http://apex.oracle.com/pls/otn/f?p=40323:6
    I have this on page HTML header
    <script>
    function FldEnableDisable(pThis){
      if (pThis == "%null%"){
        $x('P6_TEST').disabled=true;
      }else{
        $x('P6_TEST').disabled=false;
    </script>And this in Page HTML Body Attribute
    onload="$x('P6_TEST').disabled=true;"Then in item Test Lov HTML Form Element Attributes
    onchange="FldEnableDisable(this.value);"At least it work for me in Firefox 3.5
    Br, Jari

  • Grayed out lock button on file

    Hi;
    I have two (that I know of) files for which the Lock Button (with Lock invoked) and Ownership and Permissions Detail fields are grayed.
    I can't delete or replace the files.
    Help is appreciated.
    Chris

    You're not the administrator? If the checkbox is dimmed, you probably don't have permission to move or edit the file.
    Check out the following KB Articles:
    http://support.apple.com/kb/TS1402 Unable to move, unlock, modify, or copy an item in Mac OS X
    http://support.apple.com/kb/HT2432 Mac OS X: File can't be moved if locked
    !http://i50.tinypic.com/izvwo1.gif!

Maybe you are looking for