How  to disable Goods movement button in CO11

Dear Experts,
                       i want to disable Goods movement button in CO11, this should be applicable only for  particular users.  is it possible?

Hi rajakarthik,
For getting the Standard values (Activities) to populate un partial conformations you need make some settings IN IMG in u201CParameters for order conformationu201D T-Code OPK4.
IN OPK4 u201COperation Indiv. Entry using Initial Scrnu201D Tab page and Check (u221A) the relevant Boxes to propose the Quantities and activities automatically by the system and save them. You can change the figures according to your requirement in COR6. When you are doing the Partial Conformations the second time then Enter the Yield quantity the press enter button to get the planned activities to be proposed by the system according to the yield quantity
Re: wc standard value not update during partial confimarion
Pavan

Similar Messages

  • Co11 question - Goods Movement button

    what is the implication if i add more components, aside from those already allotted to the production order when i confirm this operation?

    >
    Siva Kumar M wrote:
    > Hi,
    >
    > If you assign the components at the time of 1st Operation confirmation then at that time only the Goods will be issued.
    >
    > For the 2nd Operation confirmation, if not assigned in the Operation or at goods movements button in CO11N they will not be issued again.
    >
    > If not specified, system will assign all the components to the first operation.
    >
    > Regards,
    > Siva
    so do you mean to say, that for the second operation to get the  additional issuance plus the original allocation, i must have issued them during confirmation of my first operation?

  • How to disable the minimize button on the JFrame?

    Does anyone know how to disable the "Minimize" button on the JFrame (Window)?

    Why bother using a JFrame at all? Just extend JDialog, and there won't be a minimize button to worry about at all. The only drawback is that a JDialog doesn't put an icon in the taskbar, so you have to move/close other windows until you can see the JDialog window on the desktop.
    The windowMinimized stuff doesn't let you stop what the window is doing -- you just get an event telling you what happened.

  • How to disable the cancel button in InputDialogBox?

    Can someone please tell me how to disable the cancel button in an input dialog box?
    thanks,

    Cross posted: [http://www.coderanch.com/t/487888/Swing-AWT-SWT-JFace/java/disable-cancel-button-input-dialog]

  • Goods movement button not visible in CO11N

    Hi,
    i am not able to see goods movement button CO11N transaction as shown below in one if my IDES server....
    what settings we need to do for this so that goods movement button is visible like below...
    Thanks
    Kumar

    Hi AKS AKS,
    I am working on a ides server....you want me to add this parameter CORUPROF in the SU01/SU02 to the id I am using...
    Thanks
    Kumar

  • How to disable "View Report" button in reporting services

    Is anyone know how to disable "View Report" button in reporting services, I know can do custom code in report properties, what is the code? I have tried something like this ***button1.enable=false, but it can not success.
    Appreciate if anyone can reply me, thanks.

    Hi,
    The message box don't work on the web because it is of windowform box. Based on your further description, you might want to do the date parameter validation. If so, there is common way to do this:(assume the date parameter value inputed can't be less than 2007)
    1) Intert a textbox and input the message used to show the end users if they input a invalidated date value for the parameter, and then set the textbox's hidden property to =iif(Year(Parameters!myPrameter.value) < 2007,false, true)
    2) Insert a Rectangle control below the textbox created in step 1, and put all report items in it and set the Rectangle's hidden property to =IIF(Year(Parameters!myParameter.value)<2007,true,false)
    After these, if the end users input the date value can meet the project requirement, the report will show the data the end users want, otherwise, the end users will see the error textbox to tell them the parameter value is incorrect.
    Hope this help,
    thanks,
    Jerry

  • How to disable the trackpad button function?

    My trackpad botton goes mad, it's seems like hold you mouse's left button and you can click the right button, just can't open the file, my usb mouse works great only in Snow Leopard, in Leopard I can use none of mouse or trackpad.
    I think my trackpad button has broken, I want to disable this button, but I don't know how, can you give me some advise?
    I'm using Snow leopard( 10.6.2 ) now, how to disable the trackpad button in SL?

    I'm using Snow leopard( 10.6.2 ) now, how to disable the trackpad button in SL and keep my trackpad available, I prefer using touchpad, I think I can disable the button and still use touchpad?
    I apologies for my poor english.

  • How to disable the AET button on Web UI?

    Hi all,
    Does anyone know how to disable the AET button in the Web UI? Our customer doesnu2019t want the end users to change any configuration and the only thing left for this is hide/disable the AET functionality.
    Thank you very much in advance.
    Kind regards,
    Alvaro

    Alvaro,
    The AET should not be visible to end users, especially not in the production system.
    This should be done by authorisation.
    If you are referring to the personalization, you can disable this in the businessrole by selecting a value for the parameter PERSONALIZATION.
    If there are no values available, you can maintain them in sm30 --> PERSCV_PROFILE.
    Hope this helps.
    Regards,
    Pieter Rijlaarsdam

  • How to disable the salary button

    How to disable the salary button in "Combined Per & Asg Form WKFLW_NAME="US HRMS PERSON TASKFLOW" screen function.

    You should not modify the taskflow "US HRMS PERSON TASKFLOW" directly. Instead, create a new Taskflow that contains the navigation items you require, and then create a new function that uses the Taskflow.
    1. Create a Tasklfow
    2. Create a Function using the form "Combined Per & Asg Form" including the parameter WORKFLOW_NAME="XX HRMS PERSON TASKFLOW" (or whatever you have called it)
    3. Use this function in your menu definition.
    http://download-uk.oracle.com/docs/cd/B11454_01/11.5.9/acrobat/115hradm.pdf
    See section "Configuring Oracle HRMS" for more information on Taskflows.

  • How to disable the cancel button in the ProgressMonitor

    hi,
    I need to know, is there any way to disable/remove the (cancel)button in the ProgressMonitor?
    One more problem is,
    Once i click the cancel button, isCanceled() return true, how to make it false again so that the process continue....
    It is very urgently.....
    please help me out.
    Thanks in advance.
    Regards,
    Deepa Raghuraman

    I don't think that's a good solution, because Cancel button itself is not disabled, so user is tempted to click it and nothing happens.
    A better but dangerous solution is this:
    progressMonitor = new ProgressMonitor(ProgressMonitorDemo.this,
                                         "Running a Long Task",
                                         "", 0, 100);
    progressMonitor.setMillisToDecideToPopup(0);
    progressMonitor.setMillisToPopup(0);
    progressMonitor.setProgress(0);
    JDialog dialog = (JDialog)progressMonitor.getAccessibleContext().getAccessibleParent();
    JOptionPane pane = (JOptionPane)dialog.getContentPane().getComponent(0);
    pane.setOptions(new Object[]{});Refer to the same question here [http://stackoverflow.com/questions/512151/how-do-i-disable-the-cancel-button-when-using-javax-swing-progressmonitor] .

  • How to disable (grey out) button in report

    Hi,
    Can any one; pls help how to disable button (grey out) on some specific condition.
    I have a report of 2 pages; In first page it displays few records; once click on specific record control goes to next page 2; And here i have button (template based button); Once click on this it perform pl/sql procedure.
    My requirement is: The button should disable (should not hide) when moves from page 1 to page 2 based on some specific returned values in page 2.
    I have return code in button conditions (Condition type = PL/SQL Function Body Returning a Boolean)
    Sample code is:
    if :value1 = 'disable_test_value' then
    return false;
    else
    return true;
    end if;
    The above code is working fine with button completely disappers if the :value1 = 'disable_test_value' (which is suppossed to be as we gave return false).
    My question is: Is there any way; we can still show button (but button disabled or grey out; so that no action can perform on this button )? And also show some text message in other text field when button is disabled?
    Thanks!!
    UK

    I have an example: http://apex.oracle.com/pls/otn/f?p=27168:1 using theme #2. You need to use a theme that has a "grayed-out" alternate button template.
    To accomplish this I:
    1) Created one item named P1_VALUE1 to contain the condition as to whether the button should be enable ("enable_test_value") or disabled ("disable_test_value").
    2) Created an enable button with a "Button Style" of "Template Based Button" with "Button Template" value of "Button". I had the "Condition" type of "PL/SQL Function Body Returning a Boolean" to be:
    if :p1_value1 = 'disable_test_value' then
    return false;
    else
    return true;
    end if;I had the "URL Target" to be: javascript:alert('Performing function ...');
    3) Create a disabled button with "Button Style" of "Template Based Button" with "Button Template" value of "Button, Alternate 3". I had the "Condition" type of "PL/SQL Function Body Returning a Boolean" to be:
    if :p1_value1 != 'disable_test_value' then
    return false;
    else
    return true;
    end if;I had the "URL Target" to be: javascript:alert('Performing function ...');
    Mike

  • CO11N - goods movements button

    At TX CO11N is a button called Goods Movement and i need to know if Ican disable that button? and provide access to a limited group of users.
    Thanks in advance!

    Dear ,
    Goto OPK0-Define single entry confirmation screen -Slect the SAP0001 screen -Slecct the Filed and mark it as Display or Hide .
    Or create an Screen Variant through SHD0 using the below useful wiki based on user level while doing CO11N-Confrimation posting
    http://wiki.sdn.sap.com/wiki/display/Snippets/TransactionVariant-AStepbyStepGuidefor+Creation
    Hope this calrifies
    Regards
    JH

  • How to disable the Tools Button in Bex Analyzer

    Hi Guys,
    How do I disable the Tools button only in Bex Analyzer so as to avoid the users messing with Query Designer.
    Thanks,
    Recca

    Recca,
    Can you do this via authoirsations instead?  ie. Allow two types of users, Designers who have access and Users who don't.
    User will be able to access the Query Desinger but have no access to create or save. That should suffice.
    If you start tweaking with the toolbar it may have wider negative implications.
    Regards
    Gill

  • How to disable generic alv buttons in CL_SALV_TABLE?

    I am needing to disable individually the generic alv buttons in CL_SALV_TABLE. 
    I see how to disable buttons by group.  eg-
         lr_functions->set_group_export( abap_false ).
         lr_functions->set_group_filter( abap_false ).
         lr_functions->set_group_sort( abap_false ).
         etc....
    However, I cannot find source  codes to disable individual buttons.  Is it possible to do this?...   and if so would appreciate an example coding.
    Best Regards,
    Dean Atteberry.

    There are method available in the class CL_SALV_FUNCTIONS_LIST which can be helpful to active / deactive certain button.
    Like: To remove the SORT Ascending button:
      data: lr_functions type ref to cl_salv_functions_list.
      lr_functions = gr_table->get_functions( ).
      lr_functions->SET_SORT_ASC( ).
    Regards,
    Naimesh Patel

  • Qosmio X500 - How to disable beep and buttons?

    I have the x500 series and want to change a few things
    Disable the following;
    1^st^. Annoying beep when you press one of the shortcut buttons on the left (e.g. volume).
    2^nd^. Displayed shortcut buttons (e.g. mouse disable).
    - When playing a game and press one of the shortcut buttons (e.g. mute), it minimises the game and displays an annoying icon (mute).
    3^rd^. Shortcut buttons on the left of keyboard.
    - They are good buttons, when I'm not using them, they are very sensitive and accidently press them.

    Hello
    The beep sound of illumination buttons you can disable in BIOS (BIOS setup > Advanced > System Configuration). There is an option called Beep Sound.
    Generally speaking you can also disable all illumination buttons in BIOS, after this you will not see such shortcut buttons anymore but only disabling the icons only is not possible.

Maybe you are looking for

  • BSI Tax Factory 10.0 upgrade

    Hi Gurus, We are in the process of upgrading BSI tax factory 10.0. Could you please let me know what should be the start date of changes in table  VV_T5F99K2_US_BSITF for parameter BSITF

  • Report displaying values by account group?

    Hi, All reports that I can find display the information of values in cost center associated to accounts. Is there any report that display the information but regarding account groups (all of them) and then if I want I'll drill down to the accounts? T

  • How do you change default drive for burning a CD?

    My primary DVDRW drive for my Dell Laptop is not working right. I connected an external DVDRW drive via USB to my computer but I can't get ITUNES to use it when I try to burn a CD. it keeps trying to use the primary DVDRW drive (E:.

  • Publishing .fla project including client - server socket connection

    Hi, I have designed with Adobe Flash Professional CS5 a .fla project that integrates a client - server connection. After publishing it, I have the following issue: - when running the generated .exe file for Windows, then the connection to the server

  • IE6 graphics display problem

    Hi- I guess this isn't specifically a Dreamweaver problem, but the logo in my site, a transparent .png file displays just fine everywhere but in IE6 where it has a light blue background. Part of our header is light blue, but it's not the same color a