Is it possible to restrict Revoke of TECO/DLFL in CO02?

Hi everyone!
In our system, we need to implement a rule that users can TECO and mark del. flag production orders (TCode CO02) but they should not be able Revoke it.
I had already checked in activity groups (user administration) but I can only restrict Change completely.
Is it possible to restrict like this? Or can I totally remove the Revoke options in CO02?
We use SAP R/3 (4.6B). Thanks a lot!

Hi RICARDOJR
lease Try the below settings
1.Goto BS22
2.Select the system status TEC0  (I0045) &  just duble click it,
3.Maintain the  “Revoke technical completion (BUTA)” =Forbidd (not allowed),
Now system will give the error message when u revoke TECO status at CO02.
And also for DLFL  (DELTION FLAG ) (I0076)
Maintain the  “Remove deletion flag (LVMZ)” =Forbidd (not allowed),
Now system will give the error message when u revoke DLFL status at CO02.
Please try & if u found useful  reward and close the thread
Regards
Pradeep

Similar Messages

  • Is it possible to restrict the user from creating a sibling and allow him to ONLY create child nodes in DRM?

    When in a hierarchy, a user right clicks on a node to crate a new node, he has two options
    -Child
    -Sibling
    Is it possible to restrict the user from creating a sibling and allow him to ONLY create child nodes?
    Business cases:
    1. different level nodes need to have different prefixes.
    - Thus, the default prefix property definition uses the level number to assign a prefix
    - Also, a validation, to ensure the correct prefix, uses the level number
    But if the user can create a child and a sibling then the default prefix will only be right for a single case and not both.
    Thanks

    If the images are exactly the same size then make sure the layer with the mask
    is the active layer and in the other documents go to Select>Load Selection and choose
    your document with the layer mask under Source document and under channel choose the layer mask.
    After the selection loads press the layer mask icon at the bottom of the layers panel.
    MTSTUNER

  • HT201304 Is it possible to restrict access to specific IOS apps based on the WIFI profile that a user has connected to?

    Is it possible to restrict access to specific IOS apps based on the WIFI profile that a user has connected to?

    you might be able to block it if the app uses Internet access
    and depending on your wireless you might be able to block a specific user
    accessing the backend host that the app uses
    some firewalls offer application filtering but I'm not aware of any that work with ios apps

  • IS IT POSSIBLE TO RESTRICT A PARTICULAR MATERIAL GROUP FOR A USER

    Hi Gurus,
    I want to know whether it is possible to restrict a particular material group for a particular user.
    e.g Material Group : 101
    User : ADMIN
    Our requirement is that the user should not be able to select material group 101 in
    any stock related transactions. e.g MB5B, MB51, etc.
    Thanks
    Amol

    Hi Amol
    You ca try Tcode OMT3E where in u can maintain settings relatesd to Users.
    Regards

  • Is it possible to restrict printing via e-mail to one or a few domains?

    Regarding HP ePrinting
    Per default any emails will be printed, it is possible to restrict to certain e-mail addresses
    Is it possible to restrict print per e-mail to a domain or a few domains, to get a better security and a more simple administration?
    example:
    e-mail addresses: [email protected], [email protected] ... etc.
    Rule in HP ePrint: *@mymaildomain.com

    Hi,
    It is possible to restrict printing for allowed senders only,
    You will have to add any email you would like to allow accessing, adding a bulk domain nake is not possible..
    ePrintCenter lets you control who can e-mail print jobs to your HP product from mobile or network connected devices. Follow these steps set your ePrint-enabled product to receive print jobs from allowed senders only.
    Log into your ePrintCenter account at HP ePrintCenter .
    On the ePrintCenter Printers page, click ePrint Settings . The ePrint Settings window opens.
    On the Allowed Senders tab, select Allowed Senders Only , and then click Save .
    Type an allowed sender's email address in the dialog box, and then click Add Email . The email address is added to the Allowed Email Addresses list.
    NOTE:You may specify up to 500 e-mail addresses allowed to send print jobs to your product. Your HP product ignores e-mail from addresses not on your allowed senders list.
    (Optional ). To send a confirmation email to the sender after the ePrint job prints successfully, select the check box next to the email address in the Email job status column.
    NOTE:To remove an email address from the Allowed Email Addresses list, click the X next to the email address in the Remove column.
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Is it possible to restrict copying and printing a pdf?

    Is it possible to restrict copying and printing a pdf without setting a password? I just want to restrict using the document, but don't want a password-demanding window to pop up.

    Hei guys!
    I truly need your reply!
    Any reply or a hint or a reference to another application is welcome.
    Thank you!

  • Transaction F110 - Possible to restrict the input of Identification-field?

    Hello all,
    is it possible to restrict the input of the "Identification"-field in transaction F110 (Automatic Payment Transactions: Status)?
    e.g.: User X with company code XX is only allowed to enter XX01 in the identification field.
            User Y with company code YY is only allowed to enter YY01...
    Is that possible?
    Thanks in advance for any reply!
    Steffen
    Message was edited by:
            Steffen Poetsch

    Hi
    You can control the "identification" with the help of the BASIS guy.
    They will define the authorization object to field level.
    Create seperate roles for that and assign accordingly
    VVR

  • Is it possible to restrict the object creation for stateless session beans

    Hi,
    Is it possible to restrict/fix the ejb object creation for stateless session beans in application server?
    For example, i want to configure the application server ( am using JBOSS ) to create maximum of 10 session bean objects. and if any requests for the stateless session bean come, as application server has created 10 objects, the requests should be blocked.
    Thanks in advance,
    nvseenu

    You can keep a counter in the application code. A static var won't work, but an entity and a consistent id should. This version would affect performance, but it would be portable to other app servers.
    // ConstrainedBean.java
    package unq.ejb;
    import javax.ejb.Stateless;
    import javax.ejb.CreateException;
    import javax.annotation.PostConstruct;
    import javax.annotation.PreDestroy;
    import javax.persistence.PersistenceContext;
    import javax.persistence.EntityManager;
    @Stateless
    public class ConstrainedBean implements Constrained {
        final static int DEFAULT_COUNTERID = 1;
        @PersistenceContext EntityManager em;
        @PostConstruct
        protected void init() throws CreateException {
         ConstrainedBeanCounter counter =
             em.find(ConstrainedBeanCounter.class, DEFAULT_COUNTERID);
         if( counter == null ) {
             counter = new ConstrainedBeanCounter();
             counter.counterId = 1;
             counter.counterValue = 0;
             em.persist(counter);
         if( counter.atMaximum() ) {
             throw new CreateException("error attempting to create > 10 beans");
         else {
             counter.increment();
        @PreDestroy
        protected void destroy() {
         ConstrainedBeanCounter counter = em.find(ConstrainedBeanCounter.class,
                                   DEFAULT_COUNTERID);
         counter.decrement();
        public void doSomething() { System.out.println("doSomething()"); }
    // ConstrainedBeanCounter.java
    package unq.ejb;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    @Entity
    public class ConstrainedBeanCounter implements java.io.Serializable
        @Id public int counterId;
        public int counterValue = 0;
        public void increment() {
         counterValue++;
        public void decrement() {
         counterValue--;
        public boolean atMaximum() {
         return counterValue > 9;
    }

  • Is it possible to restrict Sales Order Type by Plant/User ?

    Dear all,
    Is it is possible to restrict sales order type while creating sales order by plant / User ?
    Any solution for above issue ?
    Jeyakanthan

    Hi,
    To my knowledge it is possible through SHDO tcode.
    Also, you can have a look on this link:
    [User Spcific Transaction Variant|Re: User specific transaction variant;
    In that look for the Step by step guide fior the Variant.
    Regards
    Edited by: SAP2020 on Nov 23, 2009 3:00 PM

  • Is possible to restrict MB1B -541 for certain materials

    HI MM experts,
    kindly let me know is there any possibility of restricting users to perform 541 mov thru MB1B/MIGO for certain material codes?
    pl help
    thanx in advance
    Srihari

    Hi,
    It is not popssible to resctrict any movement type for specific material codes through configuration. For restricting certain material codes for movement type 541 through tcode MB1B, ABAP coding is required in user exit.

  • View Buffering not possible, Transport restricted

    Hi Frnds,
    I have created a view when I am going to activate the view it is giving me warnings like
    All fields are evaluated as key field
    Key field KWMENG has num. type QUAN: Buffering not possible, Transport restricted
    Key field KBMENG has num. type QUAN: Buffering not possible, Transport restricted
    Key field NETPR has num. type CURR: Buffering not possible, Transport restricted
    Key field KZWI1 has num. type CURR: Buffering not possible, Transport restricted
    Because of these warnings I am not able to transport this view into production.
    What might be the reason?
    Regards,
    Sridhar

    Hi Sridhar,
    1)Goto RSA6 --Search for ur datasource
    2)Click on the same and go to Change Mode
    3)Goto the Extract Structure.
    4)U can find four TABS there
    5)Goto Currency/Quantity Fields.
    In that TAB specify for that Obejct the Comp type ,data type,lenght and Decimal.
    Rgds
    SVU

  • Buffering not possible, transport restricted

    hi,
    i am creating ztable.  i have domain of type int4.  my primary key refers to this domain.  while compiling, i get a warning - "Key Field ZZ has num field of type INT4.  Buffering not possible, transport restricted".
    what does this mean?  will i have any problems while transporting to QA and Prod. and Buffering?
    J

    Data Types for a Characteristic Object:
    CHAR
    NUMC
    DATS
    TIMS
    Data Types for a Kef Figure Object:
    Amount
    Quantity
    Number
    Integer
    Date
    Time
    You should use characteristic data types while using key fields for a buffered table. If you use NUMC , it will work.
    regards,
    preet

  • Is it possible to restrict certain users from printing from Adobe Reader?

    Is it possible to restrict certain users from printing from Adobe Reader?

    First of all, with Reader you can't change any security settings.
    If you have Acrobat, then you could place a password on changing the document (which includes printing), and then give it to only some users.

  • Is it possible to restrict Content Administrator from a room?

    I'm having a hard time wrapping my brain around this one so please bare with me.
    The client wants the following situation:
    - they want a collaboration room that is restricted to 4 individuals in the company
    - this room needs to be secure so that only those 4 individuals can access the content in the room, these are end users
    - the Portal admin person will setup the room initially and then should no longer be able to access the room or content
    I can't think of any way to do this.  I've thought that maybe we could create a custom Content Admin role that has all access except to the room folder but this doesn't seem to be possible.  From my testing it looks like you can see all the documents in the room from Content Admin -> KM Content if you have the Content Admin role (or a copied version of it).
    Currently the portal team has Super Admin in production.  We'd obviously like to keep that access because maintenance and support becomes difficult without it.  The client would allow for special Super Admin access for temporary periods but it seems that we'd have to create a scaled down admin role that we would have all the time and then when we needed further access we'd need to get special approval to get the Super Admin role for a temporary period.
    So, is there any way that we can revoke all access to a room and it's content except for the specific users assigned to that room?  Any other ideas?
    Thanks in advance for any help,
    Robin Schmidt

    Hello,
    I'll explain what I am trying to achieve.
    I've written phone book application. Each person has his/her personal card with his/her picture. In order to display the picture I need it to available in http. I've created an HTTP Alias (Like can be done on IIS). What I do is simply conctenate the HTTP alias the unique id number of each person which is also his picture's file name. The workers have an option to show or hide their pictures if they want to. The problem is that once creating an HTTP alias (or virtual directory on an IIS) this url becmes available to every person inside the LAN and the whole pivacy cocept is lost. If I could reveal this alias only to users who are entering the portal I could have control over the displying of the pictures but like this everyone can see every picture if he wants to. I beleive I can change the method of the picture retreival so it will take it from the file and not from http, but this methos is much more faster and simple.
    Roy

  • How to restrict the Order TECO wiht out serviceentry sheet / usage Decision

    Dear PM Guru's
    i am seeking a good solution for the following issue. suppose one external order created, against to this PO created, but maintenance people TECO the order with out creating the service entry sheet. how i can restrict this functionality? please suggest me good solution which is very simplicity. and some of the orders are TECO with out the usage decsion taken against the Inspection lot, here also how i can restrict the TECO the order is there any function module or enhancement to avoid such a mistakes? please guide me and give an good idea to sort out this issue as soon as possible.
    thanks in advance to all the PM guru's.
    regards
    jalu

    Hi,
    By doing the user exit in IW32 we achieved the requirement of restriction of maintenance order TECO functionality if any Service Entry sheet pending with reference of maintneance order.
    regards
    JKM

Maybe you are looking for