Allow write to list but restrict viewing the entries

We have a small application that allows people to submit entries to a list using CSOM (sp.js) and we want to allow anybody to submit entries to the list but we also want to ensure they can NOT see the entries in the list that other people have submitted.
We then want an administrator or list owner to be able to view all entries.  Can we do this?

Go to your List Settings Page -> Advanced Settings.
For 'Read Access', select the radio button 'Read items that were created by the user'
And for Create and edit access, select 'Create items and edit items that were created by the user'.
Save you changes. Now users will be able to view/edit items created by them. Site Collection Admin will be able to see all items.
Ram Prasad Meenavalli | MCITP | MCTS SharePoint | MCPD SharePoint | http://www.spdeveloper.co.in

Similar Messages

  • Allow user to select data, see the tables list but not view the table/view/stored procs definition

    Hi,
    May I know how to achieve the above ? Please enlighten me.
    TIA !

    So you want users to be able to see the name of the table, but not the definition? I am afraid that this is not possible. You can give users access to a table and hide the definition, but the name is considered part of the definition.
    Olaf mentioned VIEW DEFINITION. What he did not say is that when you have SELECT permission (or EXECUTE permission on a stored procedure), the permission VIEW DEFINITION is implied by the stronger permission. For this reason you need to explicitly DENY this
    permission as shown in the script below.
    In the script I create a user without a login and then impersonate a user. This is an excellent way to test permissions.
    [sql]
    CREATE TABLE tabbe (a int NOT NULL)
    go
    CREATE USER usse WITHOUT LOGIN
    go
    GRANT SELECT ON tabbe TO usse
    DENY VIEW DEFINITION ON tabbe TO usse
    go
    EXECUTE AS USER = 'usse'
    go
    SELECT * FROM tabbe
    go
    SELECT name FROM sys.objects WHERE type = 'U'
    EXEC sp_help tabbe
    go
    REVERT
    go
    DROP USER usse
    DROP TABLE tabbe
    {/sql]
    Note: rather than denying VIEW DEFINITION on an individual object you can leave out "ON tabbe" to deny the permission across the database.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • I accidently click on ''Import the list'' but now all the music have  an exclamation point I think they are all in Musique.txt on the desk... How can i take back these music on my library? I tried : Import the list and take Music.txt , but it do not work

    I accidently click on ''Import the list'' but now all the music have  an exclamation point I think they are all in Musique.txt on the desk... How can i take back these music on my library? I tried : Import the list and take Music.txt , but it do not work

    Ok, I had a glitch, forced to restart, and lost my train of thought.
    Reinstalling iTunes should fix the major issue that might have gone wrong, perhaps your explaination points will disappear and everything will be peachy again.
    But if they don't, you can open the XML file in iTunes Folder using a Text edit program to see what the common pathname is to the iTunes Music folder or where your content is located.
    If you moved the itunes folder, it needs to go back.
    I can't  download iTunes to my Vista virtual machine to test it out right now because iTunes is down, so I can't verify the pathname, perhaps your issue and the iTunes being down are related somehow?
    You don't want to import all your music again, but it's a option, but you lose all your playlists, that's what I'm trying to recover.
    If oyu don't have a whole lot of playlists, then simply select all the explaimation point music and delete, select File from the menu and import your itunes folder again.

  • HT201210 what is error code (1)?  it is not listed but this is the error i get trying to restore my 3gs.

    what is error code (1)?  it is not listed but this is the error i get trying to restore

    Take a look here for Apple's suggestions on that error:
    http://support.apple.com/kb/TS3694#error1
    Regards.

  • HT204370 A movie shows in my purchased list but not in the Movies list...

    A movie shows in my purchased list but not in the Movies list...

    The purchase history on your iTunes account will only show purchases from the iTunes stores (iTunes, app store, ibookstore, Mac app store), not from Apple online or bricks-and-mortar stores.
    Does anything show on your credit card ? If the email is genuine then it's possible that your and their email addresses are similar and that they gave the wrong id (or the store typed it incorrectly), it doesn't necessarily mean that anybody has access to your account.
    For the contact, you will initially just receive an acknowledgement email, the proper reply may take 24 (possibly 48) hours.

  • My Sigma 17-70 f2.8-4DC is on the supported lens list but not in the Profile Downloader.

    My Sigma 17-70 f2.8-4DC is on the supported lens list but not in the Profile Downloader.
    How can I download the profile?
    Thanks very much.

    The “Lens Profile Downloader” is not where you get lenses “on the list”, rather it is where you get lenses that third-parties have provided, so usually for lenses not on the list.
    I see three Sigma 17-70 f/2.8 DC variations for 5 different camera manufacturers so I’d expect you should see the lens listed if you select a raw photo.  There is no profile for JPGs.
    Here are the profiles for Canon:
    Canon (SIGMA 17-70mm F2.8-4 DC MACRO OS HSM C013) - RAW.lcp
    Canon (Sigma_17-70mm_F2.8-4.5_DC_MACRO_HSM ) - RAW.lcp
    Canon (Sigma_17-70mm_F2.8-4_DC_MACRO_OS_HSM ) - RAW.lcp
    What is your actual situation, are you looking at a JPG that won’t have a lens profile, or is the lens profile not in the list for your camera or is it just not being found automatically when you set Lens Profile Setup to Auto.

  • In month view, the entries hide each other. They stack up.

    I'm running a 2.3 GHz Intel Core i5 with 2GB 1333 MHz DDR3 memory system with iCal version 7.0. In month view, the entries sometimes stack on top of each other garbling the image, rather than listing down the day. I am beginning to miss appointments and this is frustrating. I have quit calendar and restarted several times.

    Whenever installing a new version, at least review the information about new features.
    Turn off the infernal Align To Pixel Grid feature.
    JET

  • Those values which are there in the IN list but  not in the table.

    Hi All,
    We have a table global_title_isbn having 18 columns with primary key on title_isbn. This table contains approx. 10 million rows.
    Normally what we used to get was 10-15 comma seperated list of ISBNs for some business process , for them we have to check into the table to figure out what all ISBNs are not there in the table.
    But now a days we are getting a list of more than 100 ISBNs and there are times when only less than 40 ISBNs exist in the table. So figuring out what all ISBN are not there in the given list is very tiresome job.
    Is there any way using SQL we get list of only those ISBN which are not there in the table from the list,
    eg
    select * from global_title_isbn where title_isbn in ( a comma seperated list);
    will give me those ISBNs which are there in the global_title_isbn and in the given list..
    Desired O/P
    a list of ISBN which are there in the given list but do not exist in the table.
    PS:-- I have only read access . I cannot create any table/view etc and PLSQL stored procedure.....
    Regards
    Vineet

    I see no problem with my solution.
    See examples below:
    create table global_title_isbn (title_isbn varchar2(10));
    insert into global_title_isbn values ('8888888');
    commit;
    -- your_string is '9999999','8888888','17262','19283263','328732'
    select rtrim(ltrim(extractvalue(list_isbn.column_value,'e'), ''''), '''') as title_isbn
      from table(xmlsequence
                  (extract
                    (xmltype('<coll><e>' ||replace(:your_string, ',', '</e><e>') ||'</e></coll>')
                  , '/coll/*') )
                ) list_isbn
    where not exists (select 1
                         from global_title_isbn gt
                        where gt.title_isbn = rtrim(ltrim(extractvalue(list_isbn.column_value,'e'), ''''), ''''));
    output:
    9999999
    17262
    19283263
    328732
    drop table global_title_isbn;
    create table global_title_isbn (title_isbn number(10))
    insert into global_title_isbn values (8888888);
    commit;
    -- your_string is '9999999','8888888','17262','19283263','328732'
    select rtrim(ltrim(extractvalue(list_isbn.column_value,'e'), ''''), '''') as title_isbn
      from table(xmlsequence
                  (extract
                    (xmltype('<coll><e>' ||replace(:your_string, ',', '</e><e>') ||'</e></coll>')
                  , '/coll/*') )
                ) list_isbn
    where not exists (select 1
                         from global_title_isbn gt
                        where gt.title_isbn = rtrim(ltrim(extractvalue(list_isbn.column_value,'e'), ''''), ''''));
    output:
    9999999
    17262
    19283263
    328732

  • I have my download list but I deleted the file on my computer and want it back, is there a way of using the list to get it back?

    I have the download list for firefox but accidentally deleted the file on my computer. I need the file and was wondering if there was a way of using the download list to access the file somehow, I don't think the file os on the internet either as I haven't found it

    Hello!<br>
    Go to the downloads window, right-click, and click "copy download link" or "go to download page". You should then be able to re-download it only if it's still in the downloads window

  • How do i sync all my iphone 5g photos and contacts to my new windows computer.  I have followed instructions but the following instructions don't seem to exist!!!In iTunes, in the source list, under Devices, click the entry for your iPhone or iPod touch.

    How do i sync all my iphone 5g photos and contact to my new windows computer. I am following the itunes instructions but they don't seem to apply.  In the source list click devices (so far so good) then click the entry for your iphone or ipod.  that doesn't exist. HELP asap

    hayley7070 wrote:
    How do i sync all my iphone 5g photos and contact to my new windows computer. I am following the itunes instructions but they don't seem to apply
    What instructions?
    In the source list click devices (so far so good) then click the entry for your iphone or ipod.  that doesn't exist. HELP asap
    You don't import photos from the iPhone to your computer using iTunes.
    See this -> iOS: Importing personal photos and videos from iOS devices to your computer
    Note this only applies to photos taken with the iPhone. Any photos you previously added to your iPhone using iTunes should be copied from old computer to new computer.

  • Why don't the iPad restrictions allow tv content to be restricted in the same way as film content?

    I want to restrict the tv content on my son's iPad, especially as we've just enabled family sharing.  Unfortunately, in the UK, it seems you have the options of allowing all shows, allowing none at all or allowing those with a caution rating.  There is nothing in between.  As an interim measure, I've set the the "allowed content" to align with US ratings as this gives me a lot more options and prevents him downloading Breaking Bad & Homeland!!
    Has anyone found a way around this for the UK?

    It seems VZ would dearly like the channels themselves to "do the deed" eg; HBO/Go, etc.... EPIC FAIL, Verizon. Other providers already have implemented this, VZ's EMPTY PROMISES for almost 2 years leave a bad taste. Let's face it, VZ just won't (or can't) deliver on it's commitments.

  • I lost an album off my iTunes list, but I have the email from Apple with the receipt of the purchase. Can I get the album again for free?

    I have a new macBook, so backed up my iPad first time in two years. Lost a James Taylor album I purchased in July 2010. I still have the reciept email form Apple thanking me for buying it on iTunes. Its not showin in my purchased folder. Can I download it for free somehow?
    Thanks.

    If you live in one of the countries where itunes in the Cloud is availanble for music redownloads. See the list here:  http://support.apple.com/kb/HT5085
    Here are the instructions: 
    Downloading past purchases from the App Store, iBookstore, and iTunes Store: http://support.apple.com/kb/HT2519

  • N95 Adobe pdf opesn but doesnt view the doc

    hello
    my new n95 receive pdf doc ..
    save ok ..
    try to open ok the adobe reader open
    and then a grey page no view of the doc ????
    memory problem ??? program problem ??
    thanks for your answer

    Edit>Preferences>Accessibility
    Check the document color settings.

  • I added exceptions for the pop up blocker but most of the time it still does not allow the pop ups for the sites I listed as exceptions

    the pop up blocker is inconsistent. i added websites to the exceptions list but most of the times when i load firefox it does not allow the exceptions...sometimes it does but i can't find any reason or consistency as to why it sometimes allows them and sometimes doesn't. They are clearly listed on the exceptions option.
    What is wrong?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/945652]]</blockquote>

  • In application express under object browser i cant view the list of tables

    Hi,
    In the application Express workspace when i click on Object Browser, we have a list of existing tables which displays. But cant view the table list now. could you please help. I can retrieve the data from the table in the region. I dont know how it got hidden.
    Regards,

    Please tell us your first name and put it into your handle and profile to help us.
    ...we have a list of existing tables which displays.
    But cant view the table list now.
    cant -> can't
    Aren't those contradictory statements?
    What is your version of Application Express?
    Scott

Maybe you are looking for