Restrict user to read his own leads not other leads even team members also

Hello
I have requirement to restrict the user not to see all the records even his team records also. I have tried by using Roll management wizard(2nd step can read all the records) also, in my trail instance it is working fine, but while in my production instance it is not working fine. How it so. Do you guys have any idea regarding this. Could you please help ASAP. Thanks in Advance.
Thanks & regards
Subbu

i haven't placed any books in my application as well as all the related information is correct, but still i am getting the error. In the Lead page i was able to read my own leads only but while in the Account Lead detail page it was showing all the lead records belongs to that account and in my Account lead relationship page it was view access only, i was trying to make it as no access, but in my UI it was showing Access denied. Could you please suggest in a broader way.

Similar Messages

  • To prevent user from droping his own object .

    Dear User
    I have a database user like "aaa" in oracle 7.3.4.0.1 database.i do not want user "aaa" to drop his own schema objects like table and any other objects that he is owner.Do i have any system privilege to stop this user from doing so.User should be able to create objects and modify object but not to drop his own objects.For this purpose i have created a database trigger at database level to stop user "aaa" for doing above action.this trigger is giving me error on creation in oracle 7.3.4.0.1 .But when i tried same trigger in oracle 8i and 9i it work well.In oracle 8i and 9i it is preventing user from droping his own objects but i get other errors also along with raised error in trigger which i want to stop .The error which i am raising in trigger is
    ORA-20001 INVALID COMMAND BUT OTHER TWO ERRORS THAT R RAISED AUTOMATICALLY ARE
    ORA-00604 ERROR OCCURED AT RECURSIVE SQL LEVEL 1
    AND
    ORA-06512 AT LINE 8
    I WANT TO STOP THESE TWO ERRORS .
    PLZ HELP ME IN THIS REGARD AS SOON AS POSSBILE .
    plz tell me is there any system privilege to stop user from droping his own object or any other way along with trigger at database level.
    Thank u.

    Hi
    DBAs can use PRODUCT_USER_PROFILE (in system schema) to disable certain SQL and SQL*Plus commands in the SQL*Plus environment on a per-user basis. SQL*Plus, not Oracle, enforces this security. DBAs can even restrict access to the GRANT, REVOKE, and SET ROLE commands in order to control users' ability to change their database privileges.
    The PRODUCT_USER_PROFILE table enables you to list roles which you do not want users to activate with an application. You can also explicitly disable use of various commands, such as SET ROLE. For example, you could create an entry in the PRODUCT_USER_PROFILE table to:
    read more about this at
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a90842/ch10.htm#1005648

  • How to allow user to modify his own data with a Portal Form

    Hi,
    I have a form (Master-Detail) to update a user-profile (Master) and the user's skills (Detail).
    How can I make sure, that a user can only modify his own profile - assuming the master table has an attribute containing the users loginname for Portal?
    thanks!
    bye Stephan...

    Yes, along with the default value of wwctx_api.get_user, you also need to specify the default value type. In this case it should be Expression returning Varchar2.

  • User display only his own sales orders

    Hi ,
    I have a question , I need to setup a user in order to give him only the possibility to create,change an display his own sales orders .
    In your opinion this is possible and if yes in which way ?
    Thank you for your help
    Vittorio

    Hi Vittorio,
    You can try this method. 
    Create a Sales Group for the particular user. 
    Assign the authorization for the sales group only to that particular user.
    Make the Sales Group mandatory entry while creating the sales order (VA01 screen).
    By doing this the user can can only create / change / display sales orders under his sales group.  Hope this helps.
    Thanks,
    Kumar Venkataraman

  • My screen freezes when reading e-mails but not other applications.

    Does anyone know the reason for my screen freezing when reading e-mails bot not in other applications?

    Hi Go toSettings Email Accounts Delete Email Account that's  not working then Re Add Account back again Do this with all Accounts you have problems with. Cheers Brian

  • Restricting USER to see his related information only

    Hi frnds,
    I have a report which is having the information of Actual sales and Planned sales of all employees.
    If a user i.e the employee login into the portal is able to all employees Actual sales and Planned sales information.
    But here my requirement is the user who ever loged in has to see his Actual sales and Planned sales information only not the others.
    So here how can I restrict the user who ever loged in can see his sales information only?
    I think it is possible through authorizations. Am i correct?
    If yes How can i proceed?
    Thanks & Regards,
    sridhar

    Sridhar,
    Its possible to implement such a functionality using which user can see their specific data.
    Again, its depends on what type of application you are using.
    You have to identify each user/user group when user logsin and pass them to the backend to get his reated data. Its can be a user id of the users, or can be a group/role/or any number assigned to his UME user property(this can be easily fetchable using java based UME APIs).
    For example, If you are using any SAP backend data you can use the role authorization and pass useridentification to the application as a parameter to user related fetch the user specific data.
    Ram

  • Any possibility to assign a user to maintain his own data in SU01

    Hi All,
    For all the developers we have assigned only display view to SU01. Can we give them access to su01 to change their own data (Only tabs Address, Logon Data and Tabs should be changeable. Tabs Roles, Profiles ahould not be changeable becoz. they can assign SAP_ALL).
    Is there any way to do this?
    Thanks,
    Subbu

    Hi,
    Thanks for ur response...and sorry for asking this basic question..
    I am seeing all these in PFCG --> At present in the Authorization object  "S_USER_AUT", i have given the following:
    Activity as 03, 08 (Display and Display change documents)
    Authorization name in user mas *
    Authorization Object           *
    I am confused how to restrict SU01 and provide only SU3 transaction..For the  Authorization object "S_USER_TCD" which is under BASIS: ADMINISTRATION i have given *, even if i restrict here i think it won effect...could you pls. guide me how to restrict?
    Thanks,
    Subbu

  • How to Restrict Subscriber from displaying his own Stream?

    How to pass opponent UserID to Subscriber ???
    private function displayExistingStreams():void   
    {     var publishers:Object = _streamManager.getStreamsOfType(StreamManager.CAMERA_STREAM);
        //status_txt.text += "displayExistingStreams";
        for (var publisherID:String in publishers) {
            if (publisherID !=_userManager.myUserID) {   
                setUpSubscriber(publisherID);       
    protected function setUpSubscriber(p_publisherID:String):void {
        currentSubscriber = new WebcamSubscriber();
        currentSubscriber.displayUserBars=true;
        currentSubscriber.connectSession = cSession ;
        currentSubscriber.subscribe();
         // publisherIDs  used for restricting the list of publishers     that this subscriber should display videos for.
        currentSubscriber.publisherIDs = [p_publisherID];

    Hi ,
    You need to loop over userIDs from userManager.userCollection and get all userIDs and set webcamSubscriber.publisherIDs to all IDs except your own. And you  need to update this everytime an user enters or leaves the room ( by listening to UserEvent.USER_CREATE and UserEvent.USER_REMOVE from UserManager, if you want to dynamically maintain this publisherIDs list)
    I have replied this in other forum messages earlier.
    Hope this helps
    Thanks
    Hironmay Basu

  • How to enable a user to change his own password at EP7?

    I want to give the EP7 users the ability to change their own password at EP.
    Can we do that thru any role assignment or some development is needed?
    Any detailed help would be appreciated .
    I'll give points. Thanks!

    Hi Jones,
    It is possible to change their password in EP 7 with eu_role(Everyone Role). After you  are login in the portal, just go to your personalize and select the User profile in the personlize. In that user porfile having number of tabs, you should select the General Information and click the Modify button, after you getting the edit mode with the changing the password option. It ask old and new password, after you give the password and save it.Once you change the password, just you have to log off and Re - Login with new password. Its working fine.
    I hope this is helps to you.
    Regards
    Prakash T

  • DR8 A2 will read some discs but not othere

    Hi
    Ive recently had to completely rebuild my system due to a fault with the cpu.  On the old system, the drive work absolutely fine. But since Ive got this system up and running again (slightly higher spec) both of my DVD drives are playing up (one isnt an MSI drive but it may be relevant).
    With some of my discs (including important ones like MS Office etc) the disc will not auto run. When I open My Computer to manually start the setup the name of the DVD drive the disc has been inserted into changes to CD Rom Drive as opposed to what it should be. When I actually try to open the disc this way I am prompted to insert a disc.
    Im not sure whether this is the drive or something else. The other possibility I thought of was the drivers installed for the chipset. I have an MSI K7N2 Delta2 motherboard (nForce 2 chipset) and have installed the latest nForce drivers from NVIDIA. These drivers did include an IDE driver, so maybe that is the problem.
    Thanks in advance  

    Quote
    Originally posted by ColdFFF
    Nope, still didn't do anything
      ColdFFF Sorry it didn't work out, I did say I'm not very teckie, I'll contact a guy via email I know, he is teckie he helped me a while back. Although this may not be his speciality subject, but I wouldnt mind betting he know's someone who can help
    Cheers hondo
    Red Rockets Folding Team MSIHQ Folding Team = Protein Research

  • How to give access to user when he login with his credentials to create his own virtual machine

    Dear Experts ,
    In scvmm ..how we can allow an user to create his own VM with out providing him administrator rights...
    I am able to create machines with user accounts when I give Administrator rights only..and if i remove Administrator rights..i am gettting a message for user-"you cannot access the private cloud", where as If i give administrator rights to that
    same user , I can able to access private cloud and template for the user.
    Please suggest me and help with any useful link.
    Regards
    N.V.Srinivas ,
    [email protected]

    Self-Service user delegation
    SCVMM 2008 - 2008 R2:
    http://technet.microsoft.com/en-us/library/dd548291.aspx
    SCVMM 2012 - 2012 R2:
    http://technet.microsoft.com/en-us/library/gg696971.aspx
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.
    Disclaimer: Attempting change is of your own free will.

  • Hi. My husband and I have always shared the same iTunes account.  Since installing iCloud, all our contacts and calenders have merged on our iPhone 4, which we do not want.  How do I rectify this? Does my husband need to set up his own apple ID?

    Hi. My husband and I have always shared the same iTunes account.  Since installing iCloud, all our contacts and calenders have merged on our iPhone 4, which we do not want.  How do I rectify this? Does my husband need to set up his own apple ID?  If so, where do I need to change his email address info, so that his calender and contacts remain his?  Thank you

    You can continue to use the current AppleID for iTunes, but your husband can create a new AppleID to use to create a new iCloud account that will be his own and not overlap with yours.  If you do not have another email address to use for an AppleID, just get a free Gmail account and use that.
    You can have as many AppleIDs as you want (or at least, as many as you have email addresses for).  You can use a separate AppleID for the store, another for iCloud, and even another for iMessage if you wish.
    You will want to keep the current one as the shared one for the store as all your previous purchases are permanently tied to it, and thus you need that AppleID to update or redownload your current purchased content.

  • How to restrict user to process own company code data in z program

    Hi All,
    I have this issue. in asset management I would like to restrict user to process its own company data.
    for example A who works in company 0123 only can process comp code 0123 data whereas X who is manager can process all company code data.
    In the abap program, how can i achive this? by authority object? if yes what asset management authority object to use?
    i have company code in selection screen. so may i know what method i can achive so that A can only execute co 0123 whereas X can do for all company code.
    thanks

    Hi,
    One way would be:
    For all persons for whom you would like to 'control' the access to a specific company, SU01-->Parameters--->Give some parameter ID say XXX, & in PArameter Value key in the compnay code whose data it can process.
    Please note that this is only one time process which has to be carried out for all the users. Then in your z-program  in SELECTIO-SCREEN OUTPUT use GET PARAMETER ID 'XXX" Field w_value. If GET PARAMETER ID returns su-subrc = 0 then move w_value to your company code on the selection screen. Then Use LOOP AT SCREEN & make SCREEN-INPUT = '0' for company code so that company code will be displayed but protected thus not allowing the user to change the company code.
    I hope this helps,
    Regards
    Raju Chitale

  • User can delete his/her own transaction

    Hello Experts,
    I have an issue getting the required authorization so as to get a solution to a Business Scenario which is as below:
    User can delete his own transactions. For this I have used the Authorization object : CRM_ORD_OP which has activity 06, partner function - 00000022 and Partner Function Category -  0008. And further, I have created  CRM_ORD_LP with ACTVT - 06, CHECK_LEV - all the levels and PR_TYPE - the specific Transaction which I want deletion to happen.
    Can you please guide me, where I am going wrong. Looking forward to your reply.
    Thanks!!

    iWeb stores your site data in a domain.sites2 file in Home Folder/Library/Application Support/iWeb.
    Each of you would have to have access to the latest version of this file to be able to add blog entries.
    The easiest way to do this at home is to network the two Macs and use file sharing.
    To add an entry you would drag the domain file from the Shared folder to Home Folder/Library/Application Support/iWeb, launch iWeb, add your stuff and then place a copy of the updated domain file back in to Shared.
    If you are working remotely, you can keep the file on your iDisk or simply email it.
    The advantage of having a copy on your iDisk is that, if anything goes wrong, you have a backup - off site.

  • How to allow a user to create his workspace in java(swings)

    hello guys ..
    i have to develop an interface (GUI) where i allow the user to create his own workspace , could anybody tell me what is the code we need. are there any specific inbuilt functions and methods..
    please help
    Imran

    public class Workspaceextends javax.swing.JPanelimplements org.jivesoftware.smack.PacketListener
    The inner Container for Spark. The Workspace is the container for all plugins into the Spark install. Plugins would use this for the following:
    Add own tab to the main tabbed pane. ex.
    Workspace workspace = SparkManager.getWorkspace(); JButton button = new JButton("HELLO SPARK USERS"); workspace.getWorkspacePane().addTab("MyPlugin", button);
    Retrieve the ContactList.

Maybe you are looking for

  • POSTING_INTERFACE_CLEARING

    Hi gurus, I'm facing a problem, when using "POSTING_INTERFACE_CLEARING", populating the field DF05B-PSSKP (discount), does anyone knows using this funcion modulo how to populate this fields ? Thx in advance ... Ricardo.

  • Why do I can't make payment for some game?

    I can't make payment.

  • Why not 'uname -r' in externl modules PKGBUILD?

    I am in doubt about the correct AUR policy for PKGBUILD of external kernel modules: in the PKGBUILD and in the install file, one has often to refer to the kernel against which the module should be compiled. The best way to do this seems to me to use

  • Turning off the mousepad...

    I can't find anyway to turn off the mousepad like I could with Leopard. Am I missing something? I DO have "ignore accidentel trackpad movement", but that mode doesn't seem very effective with my palms resting on the pad while I type. I ONLY use a mou

  • Should I format type within the div?

    I would like to know what is considered more acceptable: 1. If I have <p>'s within a <div> -a) I could specify type positioning by specifying padding in the <div> or I could specify margins for the <p> within the <div>. -b) I could specify type forma