Restrict Authorisation not to change a field in IO master

Hi,
I want to know how to restrict authorisation for few users not to change the 'Profit Center' field in the IO master eg user1 should have authorisation to change IO master other than 'Profit Center' field. .
The t-code is KO02 (change Internal Order) and in the assignment tab there is a field for 'Profit Center' and I want to restrict the user from changing this field but should be able to change other fields.
Please let me know how this can be achieved.
Thanks
V.S

Hi VS,
You can try this yourself, try giving full access of tcode KO02 to a test Id and put a trace on it. And now try to login with this test Id and change the "Profit Centre" field, now looking at the trace file you will get to know which is the authorization object being cheked during this whole process.
Now try restricting those objects and continue negative testing with the test Id till you acheive your objective.

Similar Messages

  • Want to know that wat is the impact of changing a field label in master

    Dear Experts,
    Want to know that what is the impact of changing a field label in masters ?

    hai sap gurus,
                          kindly clear my doubt..
    Swetha

  • How to restrict the user to change/enter field value in me21n?

    Hi, Experts,
    in the me21n screen..for matkl field we need to validate the user authorization.
    if that user having the authorization then it should allow to enter value in the matkl(material group) field.
    other wise it should not allow.
    how to do this validation?
    can anybody help me on this.
    Thanks and Regards,
    venkat

    Hi Aprna,
    Thanks for your reply, but can you give some code for that.
    actually i am new to badi or userexits...
    if you can provide code it will be more helpful for me.
    Thanks in Advance,
    venkat

  • Restrict user not to change the Price (Tx ME58)

    Hi,
    I have one requirement the User should not able to change the Price at the time of Converting PR to PO (Tx ME58) System should take the price from Pur Info Record and should not be able to create PO with different  Price.
    Is it Possible?If yes please help me.
    Thanks
    Prasad

    Hi,
    I have one requirement the User should not able to change the Price at the time of Converting PR to PO (Tx ME58) System should take the price from Pur Info Record and should not be able to create PO with different Price.
    Is it Possible?If yes please help me.
    Thanks
    Prasad

  • Change Sort Field in GL Master - Implications

    Hi,
    I would like to know if I want to change the Sort Key in my Reconciliation GL account will there be any imact of this.
    If you can let me know what will be the impact will be help full.
    Below is the example what I have change.
    In my Customer Recon Account there was Sort key for Doc Number and Fiscal Year now I have change to Assignment Field.
    Regards,
    Kiran.
    Edited by: Kiran C on Jan 25, 2011 12:55 AM

    Hi Kiran,
    1. The purpose of defining Sort Key is only to use automatic clearing and in most of the cases automatic clearing is not used for customers so no reason to worry.
    2. You have changed sort key from Doc Number and Fiscal Year to Assignment which I do not see of no use at all because Assignment should never be a Sort Key because the Sort Key is defined to populate value of field into Assignment field itself.
    So, now onwards your sort key will become void since you will have to enter value in assignment field manually.
    Precisely, if you are not using automatic clearing for the customer, there are no implications.
    Study your business processes.
    Regards,
    Chintan Joshi

  • New standard field in Material master

    Hi
    I have to introduce "RETDELC" field in Material Master.
    The said field is already available in MARA table.
    The field is available only in ECC 6.0 version.
    I have introduced the field in Field selection group and make it optional at client level, material type level and Transaction code level (MM01,MM02, MM03).
    But stil, i could not get the same field in Material Master- Basic Material data-2 view.
    Any help please!
    Regards
    Prasad

    this fields domain is DFPS_RETDELC .
    DFPS stands for Defense Forces & Public Security.
    In order to use this industry solution, you need to activate additional business functions
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/d8/686660a46d486e95f0a3588111376d/frameset.htm

  • How to restrict the user to change the project structure but not the documents?

    Hi,
    I have created one project assigning different users in Solution manger. I want to risitrict some of the users to change the project structure but simultaneously allwoing the project documents to be created, edited or deleted using solar01 under Project documentation tab. For that I have followed the steps provided in the follwoing link.
    http://wiki.scn.sap.com/wiki/display/SM/Howto+Restrict+Changes+to+Project+Nodes+to+Assigned+Team+Members
    I am able to restrict the users to change the project structure, but I am not able to allow access to the project documents. It gives me the message "You are not authorised to change the project". This fulfills my one of the requirements. But, Is there any way  to restrict the user to change the project structure but not the documents?. Any help will be apperitiated.
    Thanks,
    Rutvik Uapdhyay. 

    Hi Rutvik,
    Basically there are 2 different authorization role ...you should look for and customize as per requirement in Z* namespace.
    role  - SAP_SOLAR01_ALL
    this take care of objects in Solar01 like tab access etc
    role -SAP_SOL_KW_ALL
    this takes care of entire documentation within solman
    hope this helps
    Regards
    Prakhar

  • The "always allow" button is grayed out in settings regarding cookies, and I can not find where to change the setting.  (Restrictions are not on.)

    The "always allow" button is grayed out in settings regarding cookies, and I can not find where to change the setting.  (Restrictions are not on.)  Do you know where I go to change the setting to allow me to "always allow" cookies?

    Hi lisaarnett111,
    If you are having issues turning on Always Allow for cookies in Safari on your iPad, you may want to check to make sure that you don't have Private Browsing enabled, as noted in the following article:
    Turn Private Browsing on or off on your iPhone, iPad, or iPod touch - Apple Support
    Regards,
    - Brenden

  • When creating a new window in safari, using command T, the marker have not activated the search field. It means you have to click there every time. Changed after upgrading to Mavericks. Anyone knows how to change this?

    When creating a new window in safari, using command T, the marker have not activated the search field. It means you have to click there every time. Changed after upgrading to Mavericks. Anyone knows how to change this?

    Yes, you can do something like that. What you would do is create a button for each image and then hide them. When I do this type of thing I place all of the buttons on a template page and then hide the template.
    You can then use JavaScript to copy the icon from any of the hidden buttons to the main button that you've set up to display the image. For example, suppose you set up 10 buttons named b1, b2, b3, ...b10. The code to copy the icon from one of them to the button used to display the image (b0) would be something like this:
    // Get the icon from the b3 button
    var oIcon = getField("b3").buttonGetIcon();
    // Get  reference to the b0 button
    var f = getField("b0");
    // Set the icon of the b0 button to the icon retrieved from the hidden button
    f.buttonSetIcon(oIcon);
    // Show the b0 button
    f.display = display.visible;
    This code would go in the Mouse Up event of the smaller button.

  • How to restrict the users not to change receiving batch no. in 305 mov.type

    Dear MM Guru,
    We are using mov.type 303 & 305 for transferring the materials from one plant to another plant. t.code is MB1B (Non split valued item)
    While receive the goods through 305 mov.type the user having the chance to change the receiving batch number. To control this changes, is there a way where we can restrict the users not to do the changes in receiving batch no. or can we do the GR with reference to the material document 303 mov.type.     
    Regards,
    Sivanandan

    Hi,
    Generally there is a possibility to change the batch no. If you want to restrict it means go for enhancement. Use BADI to acheive this.In  MB_MIGO_BADI you can set not to change the batch no. Hope it works. Thanking you.

  • Field VBUND does not allow changes to the document ?

    If you post the trading partner, the trading partner(Field VBUND)does not allow changes to the document.
    I can't change trading partner.
    Thanks!!
    Message was edited by: Rico Wang

    Rico,
    Using trn code SM30, modify table V_TBAER and insert the entry
    BSEG-VBUND for account type S, D, K, A
    and see the effect.
    Thanks
    Mohit
    ps: you may want to check OSS notes as well.

  • Userexit in VA41. Changes to field aufnr are not saved

    Hello,
    I have to fill the field xvbap-aufnr with the field vbeln during saving a order (contract) in VA41.
    I tried to use "userexit_save_document" and "userexit_save_document_prepare".
    The problem is that in userexit "userexit_save_document_prepare" the field vbeln is not field because we use an internal num range.
    In userexit "userexit_save_document" the vbeln is filled but I am not able to change the entry of xvbap-aufnr. I can change the field value but my changes are not written to the data base. Why ????
    Thanks

    If the number range for VBELN is internal, you cannot change it through user exit.  Changes made to structure fields in USEREXIT_SAVE_DOCUMENT will not have any effect.

  • How can we restricted not to change the bach no in GR

    Hi All,
    When we do MIGO with ref to P.O or With ref to Out bound delivery , how can we restricted not to  change the bach no.
    Please guide me.
    Thanks and Regards
    Chandru

    Hi Chandrashekar,
    I am assuming that, you dont want batch to be changed duirng GR for a PO, but you can choose from existing batches in the system.
    in SPRO->logistic General->batch management->Creation of New batches->Define Batch creation for goods movement.
    Here you can control the way the batches can be popolated. Varous option are available which can be used too.
    Please make detail process validation defore usign this option.
    Please reward if useful.
    thx,
    MJ

  • Extractor (Delta) not recognizing a change when field is set back to blank

    Good Day Experts,
    Any pointers on the issue below will be appreciated:
    I have a Delta extractor which picks up the value from a field in ECC when the field is changed. When I initially assign date value, extractor picks up the change and everything works. 
    However, when I change the field in ECC back to blank, the extractor is not recognizing this as a change and hence it does not bring the new value into BI... so my master data in BI still the "old" value, even though the value has actually changed.
    Please let me know if you would like me to clarify...
    Cheers and Thank You,
    Dmitriy

    Hi....
    Here you have mentioned that Delta extractor which picks up the value from a field in ECC when the field is changed...........is it a date field ? or time stamp.....
    Unfortunately I can't check this datasource in my system.....
    But when delta is coming based on this field..........if this field is blank then obviously delta will not get captured.........why this field in ECC is not getting updated ?
    Regards,
    Debjani......

  • Does not save changes if do not tab to another field

    Hi all,
    I have created a simple text book Business Component Data form based on one table (using wizzards). Everything looks good UNTIL :
    at runtime if I change a value to a field but do not navigate to another field (tab or click) it does not take my changes into account (even the arrow in the tool bar 'Save changes to the database' becomes enabled only until I click out of the field).
    Any ideas?
    How can I programatically force the tab or click (I tried validate triggers, mouse exit etc..)
    PS : I am using JDev3.1
    Thanks

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Sathish Kumar:
    |How can I programatically force the tab or |click (I tried validate triggers, mouse exit |etc..)
    If you registered a mouse listener with the control, you can set the value of the
    attribute by,
    ImmediateAccess ia =
    (ImmediateAccess)myControl.getDataItem();
    ia.setValue(newValue);
    <HR></BLOCKQUOTE>
    Thanks for the answer but I tried it and it does not compile the ImmediateAccess stuff (do I need to import a class to get this feature working).
    Thanks
    PS : I am a newby in Java....
    null

Maybe you are looking for

  • Enterprise Portal Configuration Issue - GRC 10.0

    Hi All, I am following AC10EP Configuration guide to integrate portal and GRC 10.0. According to the configuration guide i need add any entry for SPML under AUTH integration scenario as shown below. When I am trying to add the same in my system i am

  • Zen Micro A/C power cord opti

    Hi All, My Micro recharges just fine when plugged into the USB of my computer with Creative software. However, it will not charge using USB on other computers. Also, I tried plugging in my Blackberry charger (output 5V,?0.7A)?to the USB port. The Mic

  • NACE configuration

    Hi, Sorry for the question but i'm new to adobe forms. I've created a adobe forms report to replace an existing Purchase Order SAP Script report. Now i need to "attach" it to the ME22N, ME23N transactions. I know i have to do this is NACE, what i don

  • I have a question about error messange in [Post Goods Issue] process.

    Dear all. I'm working a SD system operater in south Korea. I'm really sad for our recent defeat in worldcup gameTT. Anyway, I need your help. When I make outbound delivery document and post GI, I got a message like this : Fld selectn for mvmt type 60

  • How to use Tomcat for naming services

    Hi, I want to use Tomcat server for a naming service,but how??. What i want to do is It will register 2 services to a the naming server. Later lookup for it from another code. I want to know how i can register the same using Tomcat... Thanks in Advan