Custom list 2013 user have access to only data that they entered

I am using a custom list 2013 that is updated by InfoPath 2013 and I am using Workflow 2013. I have set the following options in the advance settings for the custom list to be the following:
1. Read access-Read items that were created by the user,
2. create and Edit access: create items and edit items that were created by the user.
I basically want the users to only have access to the entries they made to the custom list.
This seemed to work ok at first. Now some of the users can see files created by the other person.
This is may first sharepoint 2013 project and I have been changing permissions on various groups due to what I am testing at the time with my user test accounts. Could this be the reason why my test accounts can see the data entered by each other?
For the users to be able to enter data into a test custom list 2013 and only see the data they entered, should the users only have 'edit' permission access? Does the permission levels make a difference?
Basically can you tell me what I can do so that the users can only see the data that they entered?

Hi wendy,
In SharePoint permissions, "Override List Behaviors" permission can  discard or check in a document which is checked out to another user, and change or override settings which allow users to read/edit only their own items.
By Default, the Edit permission level doesnot contain "Override List Behaviors" permission, the Design permission level and the Full control permission level contains "Override List Behaviors" permission. So if your user account has Design
permission or Full control permission, the user can see files created by the other person.
Thanks,
Eric
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Eric Tao
TechNet Community Support

Similar Messages

  • SharePoint 2013 access to custom lists a user creates

    In an InfoPath custom list form 2013, I have setup a group of test users with 'view' access to my test SharePoint website. These users are able to enter data in a custom list.
    When the user looks at the data that they originally entered by accessing the data from the sharepoint website, the InfoPath Form looks like the form is read only. However if the user clicks the auto generated edit buttons on the top of the form, they are
    able to change the data in the list.
    Basically I would like a way for the user to not be able to change the original data in the custom list.
    Is there a way that I can accomplish this goal like:
    1. disable the autogenerated buttons,
    2. have all the textboxes set as read only,
    3. change some kind of an access level?
     Would you let me know what method works and how to accomplish my goal?

    In InfoPath Designer go to File, Info, Form Options.
    In the Web Browser category uncheck Show InfoPath Commands in Ribbon or Toolbar.
    Mike Smith TechTrainingNotes.blogspot.com
    Books:
    SharePoint 2007 2010 Customization for the Site Owner,
    SharePoint 2010 Security for the Site Owner

  • How to get list of users with access of MM01 (create & change)

    Hi all,
    i have to take out list of user having access for MM01 (create material), when i use SUIM to get the list it shows all the list of users including the users with DISPLAY & CHANGE, but i want only those users who had the access of CREATE & CHANGE.
    please help out me, its very urgent.
    Thanks & Regards
    Syed..

    Hi Syed,
    You can try to get it from S_BCE_68001398. Key in the required transaction code.
    Thanks and Regards
    Points reward is much appreciated

  • I no longer have access to system folders that allow me to remove old or incorrect PAGES templates. Need to find out how to do that. The only way I can do it now is to blank the template and replace the bad template with a blank.

    I no longer have access to system folders that allow me to remove old or incorrect PAGES templates. Need to find out how to do that. The only way I can do it now is to blank the template and replace the unwanted template with a blank. It was previously possible to go to MY TEMPLATES and remove the unwanted templates. I don't if this issue is before or since installation of 10.8 (a nightmare in my case, which led to significant failure issues).  And because I haven't tried to remove templates since finally managing to install 10.8 (now at 10.8.4), I don't know if this is typical of the newer OS or a problem. I've been a Mac user for more than 25 years, but I think I'm nearing the end of the road. By the way, I've never needed to do this before because the manuals always offered an answer... they don't seem to do that anymore. In any case, I don't know how this works... I'd prefer an email reply if that's possible. But that would probably be too easy, and I don't know how to get a reply.

    Thanks, I appreciate the help.  I think this is one of the problems Apple is creating by changing the OS so often. I had fomer colleagues at [a major aerospace contractor] who told me that so many original files were ultimately lost because of the deadly change in the "Save As" operation that they are now afraid of every OS update. Apple has badly damaged their support base with that very prominent company (they won't update now until they've fully examined and understand changes in the pre-conditioned nature of OS computer functions), and they are a whole lot less enthaled with Mac-related equipment/software. Can't blame them, I too used orginal files that way (as easy-to-use templates), and lost some important files before I realized what was happening (to late to revert). Companies should not have to retrain employees each time an OS gets an update, it's can be very expensive several different ways. They learned a painful lesson with that one. And because I'm now retired and don't use multiple devices, I need iCloud like I need a hole in the head... but I'm told there's no way to keep Apple out of my computer. Fortunately, because of major problems when initially installing Mountain Lion, one hold-over of the hardware/software damage I experienced was that iCloud can no longer access my computer even though everything else is working fine again. That was the only "good luck" I had as a result of that expensive nightmare.

  • How can I see which roles or users have access to a table?

    How can I see which roles or users have access to a table?
    For a given table, how can I see the grants, who and what?
    Many thanks

    dba_tab_privs.
    Grantee can be a role or an user, as roles are fake users.
    Sybrand Bakker
    Senior Oracle DBA

  • Query to find the list of users having access to a particular scenario

    Hi,
    I am learning Hyperion Planning 9.2 x version. I wanted to know the query to find the list of users having access to Plan Iteration - 1 scenarion.
    As I am new to Hyperion Essbase and Hyperion Planning, I am assuming these ideas work out to get the desired result.
    1) As Hyperion Planning uses Relational DB to store the User Security information, we can query the list of users who is having access to Plan Iteration - 1 Scenario.
    I am not sure if this solution works. Please correct me If I am wrong.
    2) We can also query from the essbase editor to find out who all having access to this scenario.
    If the above is correct, can you please provide me the query.
    I am really need of this and I will be happy if any one provide the solution.
    Thanks & Regards,
    Upendra. Bestha

    Hi,
    If you are looking for some SQL to retrieve the access rights by member then you can use something like (SQL Server code though can easily be modified for Oracle)
    SELECT usr.object_name as Username,mem.object_name as Member,
    'Access Rights' = CASE acc.access_mode
    WHEN -1 THEN 'None'
    WHEN 1 THEN 'Read'
    WHEN 2 THEN 'Write'
    WHEN 3 THEN 'Write'
    ELSE 'Unknown' END,
    'Relation' = CASE acc.flags
    WHEN 0 THEN 'Member'
    WHEN 5 THEN 'Children'
    WHEN 6 THEN 'Children (inclusive)'
    WHEN 8 THEN 'Descendants'
    WHEN 9 THEN 'Descendants (inclusive)'
    ELSE 'Unknown' END
    FROM
    hsp_access_control acc, hsp_object mem, hsp_object usr
    WHERE acc.object_id = mem.object_id
    AND acc.user_id = usr.object_id
    AND mem.object_name = 'Plan Iteration - 1'
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • In ACS 5.1 is there a way to show what users have access to a firewall?

    I have an auditor wanting a screenshot of all users that have acces to configure our firewall, I am unfamiliar with 5.1. Is there a way of running such a report on a paticular device?

    There is not report you can run in order to show which users have access to which devices, your best bet is to take a screenshot of your authorization policy which shows the permissions. Then take a screenshot of all the users that are present in the user groups, and then another screenshot the network device group of the firewalls.
    Hope that helps,
    Tarik Admani
    *Please rate helpful posts*

  • Revoke PUBLIC access to package - find out which users have access

    We're in a situation where an audit required that we revoke PUBLIC access from a package.  The problem is that when we did this the functionality stopped working.  Does anybody know a quick way to tell what users have access to any package?

    Found answer

  • I have 5 computers authorized on my account and I would like to deauthorize all of them. When I try it tells me I cannot do so until January 2016. Is there a way around this? I no longer have access to the computers that are authorized.

    I have 5 computers authorized on my account and I would like to deauthorize all of them. When I try it tells me I cannot do so until January 2016. Is there a way around this? I no longer have access to the computers that are authorized.

    Did you recently deauthorize a bunch of computers?  You can only deauthorize all once  year.
    iTunes Store: Authorize or deauthorize your Mac or PC - http://support.apple.com/kb/HT1420 - and another helpful post: https://discussions.apple.com/message/17828050
    You will have to contact Apple and request they remove the lock on a reset.  iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • HT4859 I need help! I know longer have access to the email that I opened my icloud account with and I can't remember my password. I have tried asking Apple for help and no one has been able to! Any advice

    I need help! I no longer have access to the email that I opened my icloud account with many years ago and I can't remember my password anyway! However it continues to backup all my stuff. But I have no access to go in and delete items or manage my account. The pop-ups now tell me that my account is full and it will no longer be able to backup items. I would like to go in and delete items that I do not need to make room, but I can't! I have personally gone into the Apple genius store and presented the problem as well as called Apple support and talked with a live person. And no one has been able to help me. I cannot believe that I have basically lost my iCloud accessibility? I have a lot of money vested in music and priceless pictures! Please can someone help me?

    I don't know what you mean by "closed" - icloud accounts stay in existence even if you disconnect all devices from the account.  You can't delete them.
    If you don't recall the ID or the password, and if the link above doesn't provide another way to get to the account, then you are out of luck.

  • How do i verify my icloud account if i no longer have access to the email address they want me to verify it with??

    how do i verify my icloud account if i no longer have access to the email address they want me to verify it with??

    Go to http://appleid.apple.com and click 'Manage your account'. You will be able to change the non-Apple email address you use as a login. You will then need to log out and in again on all your devices.

  • HT4113 I no longer have access to the computer that my ipod is sync'd to and my phone is disabled, having forgotten my password. What can I do to resolve?

    I no longer have access to the computer that my ipod is sync'd to and have forgotten my password so the device is disabled. How do I resolve this?

    recovery mode
    open itunes on computer
    plug cable into computer not iOS device
    turn device off
    hold home button and plug cable into IOS device.  do not release home button until an itunes graphic appears on IOS device.
    look to computer should have message about recovery mode click ok and restore
    Peace, Clyde
    if u need an article see
    http://support.apple.com/kb/HT1808

  • I recently changed jobs and no longer have access to the computer that contained my Firefox bookmarks. I don't have a Firefox profile. Is there any way to find and transfer my bookmarks to my new computer?

    I recently changed jobs and no longer have access to the computer that contained my Firefox bookmarks. I don't have a Firefox profile. Is there any way to find and transfer my bookmarks to my new computer?

    If you don't have access to the old computer any longer, '''no'''. Unless you were using something like the Google Toolbar & Google Bookmarks or Xmarks, which would have your bookmarks in an online account that you could access. Firefox doesn't include an online storage feature for personal data, yet. That is coming in a future version.
    If you have a friend at your old job maybe they have access to that old PC and they could export your bookmarks to a file and email that file to you.

  • Why does everyone else on their school ipad have access to the App Store and basically anything they want? Why is it that I don't have access to any of that?  How do I get access to that stuff?

    Ok I don't know why in the world everyone else has access to the App Store and almost anything they want. Guess what I have access to? Yea that's right I have access to nothing that they have! I believe that their iPads are glitching and that might be how they got access to them! I hate how I don't have any access when I don't have access to anything that they have access to! They have almost no restrictions on their iPads and I have all the restrictions that the school sets!

    I don't know if you're looking for us to offer a solution to you?  We can't.  If your school has set restrictions on your iPad, you need to discuss this with your school system admin.

  • I don't know why I can't buy an app it always says that I have to change my address and the thing I I can't change my address due to that I have money in my accunt that they won't let me spandet

    I don't know why I can't buy an app it always says that I have to change my address and the thing I I can't change my address due to that I have money in my accunt that they won't let me spandet

    Your payment method must be associated withe same country where you reside in order to update your apps.
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location."
    The Complete Guide to Using the iTunes Store
    Same policy for the Mac App Store.
    Open the App Store then scroll to the bottom of the window then select the round flag icon on the right to change the country.

Maybe you are looking for

  • Unable to load rdbnet.dll

    Hello, I'm trying to use the provider Oracle.DataAccess.Rdb.dll with the following statement in c# RdbConnection connection = new RdbConnection(); connection.ConnectionString = string.Format("User Id={0};Password={1};Server={2};Database={3};",login,p

  • How can I open links from mail in the background?

    I receive a lot of digest emails with lots of links. I would like to be able to click all of the links in a given email, have Safari open those pages in the background, and then when I'm done selecting the links I can switch to Safari and read them a

  • Problem in CSV Output

    when i am trying look at the csv outpt even if i am not giving the table header row in the template design it is taking some other header rows and displaying it in the output i need just the data in the csv output how to solve this issue Can you give

  • Lost the icon for sending or receiving Texts; where did it go to?

    I can't find the icon for sms. Would you know how to get it back?

  • Expanding/Shrinking film rolls

    I'm working on backing up my iPhoto Library. I'm wanting to select groups of film rolls until the disk is shown to be full. I have 12,000 photos at present and all the film rolls are currently expanded. I've been going along and clicking on the down