CO02-desabling Menu item/ button

Hello SAP Gurus,
Is it possible to disable a menu item or a button in standard
tansaction.
For example in CO02 ( Production Order Change ) I want to hide or
disable the function 'Delete item' in component overview (production
order BOM).
It is available as a button as well as a menu item.
Is there any way of hiding/ disabling it from some users?.
I can not use Variant using SHD0 , as it leads to operational problem during the Drill-Down working .
Thanks in Advance.
Rgds
Sonia Agarwal

Hi,
Try with the following User Exit.
CCOWB001 - Customer exit for modifying menu entries (EXIT_SAPLCOWB_001)
Or
Use Enhancement Spot (Implicit and Explicit Enhancements).
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bb54c452-0801-0010-0e84-a653307fc6fc

Similar Messages

  • CO02-desabling Menu item

    Hello SAP Gurus,
    In CO02 ( Production Order Change ) I want to hide or
    disable the sequence overview button and component overview button.
    Is there any way of hiding/ disabling it from some users?.
    I can not use Variant using SHD0 , as it leads to operational problem during the Drill-Down working .
    Thanks in Advance.
    Rgds
    Mallikarjun.

    Hi Madhu,
              Thanks for your reply. even I knew the exit but it's not triggering when I tried to test it.
    Regards,
    Mallikarjun.

  • Translations for Standard Menu items/Buttons

    Hi,
    I am trying to change the translations for standard menu items/buttons. I tried to do it from SE41. However it is asking for access key.
    I wanted to know, is there any other way of doing translations, without this access key.
    Can you pelase give some inputs?
    Thanks,
    Sandeep

    Hello,
    Standard menu item, buttons will automatically translated. Why you want to translate?
    If it is Z Transaction then Go to SE51 give the program name & screen no . Translate it.
    Thanks,
    Abhijit

  • Menu items button in android tablet application not displayed

    I used to build my tablet air applications with flex sdk 4.5.
    I test it mainly on Galaxy Tab .
    When i upgraded to 4.6 sdk, I noticed that the system bar didn't displayed buttons anymore. it is completly empty.
    and  viewMenuItems didn't work anymore, too.
    is someone noticed  the same problem?
    Could it be a air runtime bug?
    I'd like to keep on working with sdk 4.6 for softkeyboard capabilities; please help me. Is there a solution?

    Hello, I am also having the same problem.
    Did you figure out any workaround.
    would you please share with me.
    thanks.

  • Unable to create Menu Item List Buttons in Forms - Not Working!

    Hi guys,
    I need desperate help since I have been stuck on these for 2 days and I am unable to move forward!!
    I am trying to create a pdf form using Acrobat pro 9 and Adobe LiveCycle Designer ES. Since I am new to this, I have been browsing through numerous sites, forums and tutorials to learn about this. So far, I was able to create the forum with text fields, etc.. I am trying to have a column in my pdf form where the users can simply copy & paste image icons here..I was having difficulty with this already and have done numerous searches in google. In the end, I thought I am better off trying to use the "stamp" tool for this instead of image field. So this is what I did:
    1) I already placed the image icons (that the users will be copying & pasting) on my pdfs so users can simply click on it to select the image.
    2) I added a new bottom to this form which has the short cut to the menu item "copy" function. I labeled this button as 'Copy' and to this button, I added the following javascript for "Mouseup":
    app.execMenuItem("CopyFileToClipboard");
    3) Next I created another button that I called 'paste' and this button executes the "Paste Clipboard Image as Stamp Tool" menu. This button has the following javascript:
    app.execMenuItem("Annots:Tool:StampFromClipboardMenuItem");
    I thought that after doing the above, the user should be able to click on one of the images in the pdf, then click on 'copy' button and in the end click on 'paste' button that will then run an action so user can stamp this copied image to where ever they want in that file. But this is not happening!! I dont why?? Nothing happens when these buttons are clicked. I have made sure that the "Extended features in Adobe Reader..." is enabled and also tried running the above javascripts on my console window to test it and i know that the actual javascript code is not at fault since these functions works when I try the code through the debugger window. But I just cannot figure out why these menu item functions are not working when the buttons I had created are clicked!!! I dont know if what I have done is correct or if there is a easier way to achieve what I am trying to do!! Its a shame there is no simpler way for the end-users to copy and paste images to the columns in the pdf forms.
    please help me understand why the above button are not working....any help will be great!!

    Hi Paul,
    This is further to our email correspondence. I am just pasting your email response here since it may be useful to other newbies like me:
    "Ok here you go ......I had to add the new row via a script object as the new objects are not completely available until the script ends so I cannot resize the new row from teh current script.
    Then when we resize - we have to resize the row, the cells and the image ....we start with all existing subforms then we do it for the new row that was just added.
    Lastly I see that you have a delete row button. This will have to be part of the row otherwise we ill not know which row the user will want to delete .....unless you ask them (which is not good UI design)."
    I was really impressed the way you modified the script so the table height does not change when new rows are added. That did help me in understanding the methods and it will certainly be v useful to me in the future. I have been practicing and getting a hang of LS and I have actually decided to redesigned my form since it appears that trying to have a fixed table height is quite a bit of work each time a row is added, removed or changed, etc... Your advise so far have been v helpful and it has helped me in redesigned the form into a different layout. So far so good...However, I just have a few more clarifications regarding some hurdles I am facing:
    PS: I have emailed you a sample of my new form now so you can have a look at it.
    1) Dynamic Image fields:
    In this form, I have a subform that has a dropdown list and next to this, I have an image field. I want to change the image based on the selection in the dropdown list. I found a few samples and tutorials on this already and I tried 2 different approach for this. One works and the other doesnt.
    Method that works: What I have done here is, I added all the images in the form and have put their presence to invisible. Then using the javascript, I am making the image visible based on the selection in the dropdown list. I found this method somewhere through googling and it works.
    Method that doesnt work: Its similar to the above, but instead of putting all the images in the form, I just inserted 1 image field and then tried to change the url of this dynamic image based on the selection in the drop down list. But this method is not working. I tried inserting this jscript and nothing happens:
    switch (this.rawValue)
    case "1":
    myImages.value.Image.href=http://www.mysiteaddress.com/blah_blah.jpg;
    break;
    case "2":
    myImages.value.Image.href=http://www.mysiteaddress.com/blah_blah2.jpg;
    break;
    The 2nd method does not work. Although I know the method 1 above works and I am currently using it, I am just curious to find out why the 2nd method is not working? Did I get the script wrong or is this feature no longer allowed? I just thought that if the second method works fine, it saves the hassle of putting all the images on the form and then making them hidden. Instead, I just need to put one image field and then dynamically change its image based on the selection. I hope this make sense..please advise..
    2) Changing the background colour of the Dropdown list box:
    I am trying to change the bg colour of the listbox in the dropdown list object (only the listbox bg color and not the whole background color). So, I added the following script to the mouseEnter event and this works:
    var vName = this.somExpression;
    var fieldObj = xfa.resolveNode(vName + ".ui.#choiceList.border.fill.color");
    fieldObj.value = "255,255,225";
    My Problem: The above script works so I dont need to change anything there. But, I also want to add another script to the mouseExit event to change the fill color to its default once the mouse leaves the dropdown lists. Initially, this field has no fill colour and the border fill style is none. The fill color is only added during the mouseEnter event. How do I change the bg color fill back to none during mouseExit after the above script is executed on mouseEnter?
    (NOTE: If you see my form, I have used the above scripts for the dropdown list only in "boxSubform[0]".)
    3) Changing the length of the Dropdown List box:
    I only have about 1.6 inches workspace to add this dropdown list box. However, the length of some lists (list items) in this dropdown list box is actually longer and the remaining part is cut out. So, I added the following script to increase the dropdownlist length and it does not work the way I would have hoped...
    The script I have written so far:
    I added these to the mouseEnter event and it works fine -
    form1.pageSubform.dynamicSubform.Table1.Row1.boxSubform[0].MyDropdown::mouseEnter - (JavaScript, client)
    this.w = "2in";  //this is to to increase the width of the dropdown list
    I added these to the mouseExit event and it works fine too-
    form1.pageSubform.dynamicSubform.Table1.Row1.boxSubform[0].MyDropdown::mouseExit - (JavaScript, client)
    this.w = "1.625in";
    When I tested the form with the above script, this is what happens:
    1) First when you move the mouse over this field, the width increases. Similarly the width decreased when you move away.
    2) So, even if this is clicked, the list box is opened with this 2inch width so thats good.
    3) There are no problems when the mouse is moved over these list items as well. However, this does not look good when the dropdown list item is clicked with its item lists open and then the mouse leaves this area. In this case, as soon as the mouse leaves this area, the mouseExit script runs and hence it makes the drop down list width to shrink eventhough the list items are still open. How do I resolve this? I was thinking about this and I thought the possible way to overcome this is by writing a javascript for the mouseExit event executing something like this:
    if this dropdown list is open,
    then  this.w = "2in";
    else
    this.w = "1.625in";
    I am not sure how to write a jscript for the above?
    (NOTE: If you see my form, I have used the above scripts for the dropdown list in "boxSubform[0]".)
    4) Hiding the alternative row shadowing for hidden columns:
    If you check out my form, you can notice that I have put the "close" button (button to delete table rows) on the left column and I have also put its presence to "Visible (screen only)". The parent table has got the 'alternative row shadow' checked. What I notice here is, when this page is printed, eventhough the first column's presence is set to "Visible (Screen Only)", it still prints the row shadow for this column and it looks bad. How can I fix this? Any help will be great!
    I have already emailed you my new form again so you can have a look.
    Thanks again Paul and I cant thank you enough for your help. I am sooo happy to see such a great support and resources available here since it can be a nightmare for some newbies like me... :-)

  • Multi Line Menu Item and Button

    Dear oracle developers,
    I am trying to set a multi line label for
    a button.
    The label should be displayed as
    Client
    Reports rather than Client Reports
    on the screen.
    I tried CHR(i) for all the 255 ascii numbers.
    I get some special characters inbetween but never got a new line.
    Can any one have some ideas about this. I would like to use the same feature for a menu item also.
    Thank You.
    Srini S. Sundar

    Hi,
    U can do this in the following way :
    1. Create a Icon button in your Forms canvas.
    2. create a icon file (.ico) by writing a multiline text.
    3. Attach this .ico file to the icon button in your forms.
    Hope this may help you.
    sandip.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Srini Sundar:
    Dear oracle developers,
    I am trying to set a multi line label for
    a button.
    The label should be displayed as
    Client
    Reports rather than Client Reports
    on the screen.
    I tried CHR(i) for all the 255 ascii numbers.
    I get some special characters inbetween but never got a new line.
    Can any one have some ideas about this. I would like to use the same feature for a menu item also.
    Thank You.
    Srini S. Sundar<HR></BLOCKQUOTE>
    null

  • Accessibility : correspondance between buttons and menu items

    Hello,
    I have been dealing with accessibility API to retrieve information from menu items and buttons in tool bar. In addition, I would like to be able to create a correspondance between a button (let's say, the "new message" button in mail) and a menu item ("new message" one in the menu bar), since they perform the same action. Is there any way to process to this correspondance "automatically" ?I first wanted to check name matchings, but some item do not really share the same name (e.g. refresh button in Chrome).
    How could I do that ? Is there any chance the button and the menu item might call the same "action handler" or something ?
    thanks in advance

    Use an external sound editor to reduce the level of the audio-file [of the menu]; and then use the quieter version in DVD-SP. Try installing Bias Peak LE, which should have come with DVD-SP.

  • How to disable and hide the menu items of 'copy From' button of Goods Recei

    hi expert,
    I am new in SAP B1. so please help me.
    Q:How to disable and hide the menu items of 'copy From' button of Goods Receipt PO form?
    Regards
    sanoj

    Hi Sanoj,
    Try This.....
    If pVal.FormType = "143" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_ACTIVATE And pVal.BeforeAction = False Then
                oform = sbo_application.Forms.GetFormByTypeAndCount(pVal.FormType, "1")
                Dim oitem As SAPbouiCOM.Item
                oitem = oform.Items.Item("10000330")
                'To Disable the button
                oitem.Enabled = False
                'To hide the button
                'oitem.Visible = False
            End If
    Thanks
    Shafi
    Edited by: shafi_sunshine on Sep 15, 2011 7:35 AM

  • How to capture when a button and menu item clicked by user?

    Hi,
         I am working in Acrobat 8 professional.
         I want to capture when Comments->Publish comments is clicked by user.
         My requirement is when Publish comments menu item is clicked then one alert have to be displayed.
         Similarly when user clicks Publish comments button then also one alert have to be displayed.
         How can i do this?
         Thanks in advance...

    There is nothing in the Acrobat SDK to really help you.  Your best bet it to use OS-level hooking functions.

  • Mail photo browser will not open using button or menu item

    I have a Air 13" and recently installed Mountain Lion. Now the photo browser window in mail (apple mail) will not appear. Not from teh photo browser button on compose email or the file menu item. It worked flawlessly before. Can't find anything online about this.
    Assistance is appreciated.
    TS

    Same issue on new MBPro having just installed Mountain Lion.

  • How do I download updates for my apps in iTunes 11.0?  I can't find a button or menu item anymore?

    How do I download updates for my apps in iTunes 11.0?  I can't find a button or menu item anymore?

  • Item of Menu Add button

    Help me ?
    I see on menu :
        Item  Next Record Button is: 1288
         Item  Next Previous Button is: 1289
      Item First Button: 1290
    and Item Last Button: 1291
    and I want to question ? what are  items  Button Add , Find, Lock Screen ,Print,..... on Menu SAP System ?
    thanks you !

    fithou,
    The System Information works on ALL menu Item, and Form Item. It DOES NOT work on the Icon bar. So you need to put the mouse cursor over the Add Record option if the Data MENU!
    Like I suggest in a previous post, you should take a look at the SDK documentation. If you search for "List of Menu Item IDs" the SDK Help file, you'll find a list of ALL Menu Ids. Including Add Record (1282) and Remove Record (1281).
    Regards,
    Vítor Vieira

  • Play button doesn't work -- doesn't select menu item

    By default, the first thing selected in my encore menue is a text button that says "play all".  So, you can start the DVD playing by pushing the enter button on the remote, by pushing the play button on the remote, or by pushing the play button on the dvd player.  This is as it should be; this is for my dvd (not blu-ray).
    When I burn a blu-ray (instead of a DVD), the play button on the remote and the play button on the dvd player do not work.  I can only use the enter button on the remote.
    I ran a second test by burning a very short movie clip with a simple button in encore.  Again, the results were the same--no problems for a dvd, but messed up for a blu-ray.
    I am playing the DVD and blu-ary on the same player.
    Any ideas?
    Thanks

    Hi Jim:
    The problem is not with the player, a Sony. 
    A couple of months ago I authored a DVD (Blu-ray) of a wedding anniversary the main menu of which had just a couple of buttons  --  the video (about 40 minutes) and a slideshow of a couple of hundred slides with music.   It was wedding present.  Everything worked as planned, not only on my Sony equipment but on Panasonic and LG.  Menu items highlighted as they should and could be toggled by the remote, just as things have been for years (since 1996 for me I guess.)
    The people subsequently asked for 3 extra blu-rays and 12 regular DVDs for people who had seen it but didn't have Blu-ray players.  No problem, said I.  I still have the Encore "ncor" file and plenty of blanks.
    Turns out that I must have relocated some files  --  Encore could not find the previous folder.  Fortunately the Premiere program files were intact so I simple created a new Encore project and created a new ISO file.  This time I made a couple of menu pages and created chapters as well as the slide show.  I made a DVD (on a re-writeable disc) and it worked as expected.  I cut a dozen disks and labeled them.  Meanwhile I made the blu-ray iso file (having made the required changes in Encore.)
    First got a Photoshop error code -45 (although I had not even opened Photoshop for a month.) 
    I shut down everything with the idea of starting Encore as the Administrator (a trick that has fixed other problems) and the blu-ray image file was created without a hitch.  But still got an ISO file that, when burned to a blu-ray, had buttons that would not highlight and would not work.   Also the "pause" button would not work.  (I have a long organ piece with the home menu page.)  Nor would the number buttons.  Just the "top menu" buttons on the remote.
    Obviously everything worked in preview: highlights showed on the buttons that, when pressed, went to the right files.   So everything works perfectly well in Preview and with DVD.  It is just with Blu-ray that there is a problem.  And it is with any and all players.
    The same Blu-ray can be played on a computer using the mouse.  Again, the buttons themselves do not highlight so the software remote does not function.
    Confusing............
    Any additional thoughts?
    Barrie Austin
    [email protected]
    425-392-5760/425-922-0540 (Cell)

  • Page Forward & Reverse buttons do not work & are "grayed-out" after upgrading to, as is the Main-Menu Items such as File-Edit-view etc...

    After upgrading to Firefox 3.6.12 all functionality appeared to be intact. Then after a few days it lost the ability to "page forward" or to "page back" and are "grayed-out". Additionally, the Main menu items such as File, Edit, View, History, Bookmarks, Tools & Help are also grayed-out and non-functioning.
    Also, the "Search Window" does not search, Web Searches need to be performed from within the URL window instead, for some crazy reason. If the URL window is blank when I enter a search into the actual search window the following appears in the URL window, "Search Bookmarks and History", which makes no sense.
    I have noticed similar complaints in this Forum in the past but I have not seen any posted resolution to these issues. Is there a solution?

    Create a new profile as a test to check if your current profile is causing the problems.<br />
    See [[Basic Troubleshooting#Make_a_new_profile|Basic Troubleshooting&#58; Make a new profile]]
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins"
    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • I just downloaded Firefox 4 and it does NOT look like it is supposed to look - My menu items are not in a single button, etc... as displayed in Step 2 of getting to know your browser on the welcome page for Mozilla Firefox 4. Can anyone help?

    This webpage [http://example.com http://www.mozilla.com/en-US/firefox/central/ ]shows what Firefox 4 should look like. My Firefox 4 does not have the menu items grouped and I have no app tab. All in all, my Firefox 4 is not what it should be... does anyone know why this might be and how I should go about fixing it? thanks :)

    To get the new UI you need to hide the menu bar. To do that in the View menu select Toolbars, then click on the "Menu Bar" entry.
    If you need access to the menus you can press either Alt or F10 to temporarily display them.

Maybe you are looking for

  • Iphone 5S call voice Low quality.

    Iphone 5S  low quality call voice.  When I make a phone call , people in the other side said my voice is very small and disconnected. The voice is good when I am using the earphone at the same calls

  • Purchase Tax Value

    I am making a purchase tax report -line item wise.  I need taxes and duties in the report.Excise Duty, VAT/CST, Cess, others. Is it adivisable to fetch values from PO invoice Tax tab at line item. or i should use BSET table.Please guide.

  • Ibooks author publishing problems....

    i can't upload my new ebook created by ibooks author. I tried three times for hours and hours (10 hours...) but it still appears "authentcating with itunes store"... the books is about 85 Mb so i can't really understand. it should be easier. can you

  • Does your front row show the Applications playlist?

    My Front Row has some bugs, I think. Inside Music->Playlists, the following are listed but do not show their contents: Applications Library TV Shows But Applications shouldn't be there and TV shows already shows up in the main front row menu. As for

  • Scrollable Content and Swipe to next article Problem.

    I have multiple scroll trays on my page that when pulled out take up all the space on the screen.  Since interactive content always sits on top of static content how does one workaround not being able to swipe to next article. At the moment I create