Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 269165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T23:47:35+00:00 2026-05-11T23:47:35+00:00

All – I am using WSS 3.0. Currently, HR will upload an employee’s internal

  • 0

All –

I am using WSS 3.0. Currently, HR will upload an employee’s internal company resume to a document library on our site, but for privacy reasons, we must then restrict access to that document library, which forces users to then go through HR each time they want to update their resume.

My thought is to create a list with attachments enabled that allows users to only view/edit their own items, and then give HR permission to manage all entries. This works with the exception that HR will need to create the initial list item and attach the resume, which means the list item will be “created by {hr}” and not visible/editable by the end user whose resume is attached.

Any ideas on how I can either allow HR to modify the “created by” field on upload so end users will see and can edit their resume, or go about this in a different way?

Thanks!

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T23:47:36+00:00Added an answer on May 11, 2026 at 11:47 pm

    Create a document library to hold the resume’s. Then give the HR department (SharePoint User group) “read / write all” permissions on the library, the give everyone else read / write your own” rights. Create a Content Type called “Resume” based on the out-of-the-box Document content type. Then add a field that contains the Employee (SPUser field) whom the resume concerns to the content type (and any other fields required, i.e. name, address etc.). Have HR fill this in correctly when creating the listitem (make the fields required).

    Then, write a itemeventreceiver bound to the content type you just created and override the ItemUpdated event.

    The code would be something like the following:

    public override void ItemUpdated(SPItemEventProperties properties)
    {
      SPSecurity.RunWithElevatedPrivileges(delegate
      {
        using (SPWeb web = properties.OpenWeb())
        {
           web.AllowUnsafeUpdates = true; 
           var item = web.Lists[properties.ListId].GetItemById(properties.ListItemId);
           if (item != null)
           {
             if (item.Fields.ContainsField("Employee"))
             {
               item["Author"] = item["Employee"]; 
               // Author is the internal name of the Created by field, 
               // always use Internal Names!
               DisableEventFiring();
               item.SystemUpdate();
               EnableEventFiring();
             }
           }
         }
       });
    }
    

    you can bind the ItemEventReceiver using a FeatureReceiver to the content type like so:

    SPContentType docCt = web.ContentTypes[new SPContentTypeId("CONTENTYPE ID GOES HERE")];
    docCt.EventReceivers.Add(SPEventReceiverType.ItemUpdated, "ASSEMBLYNAME, Version=1.0.0.0, Culture=neutral, PublicKeyToken=TOKEN", "FULLY QUALIFIED CLASSNAME");
    docCt.Update();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

All, I am using the Flot graphing library in my rails application. I currently
All front-end developers know the pain of coding for Firefox, then viewing our then
All, I currently have two projects that are under SourceSafe that I am unable
All, I am running into an issue using JTextArea and JScrollPane. For some reason
All, We are using SQL Server 2008 with Collation Setting as 'SQL_Latin1_General_CP1_CI_AS'. We are
All, In Apple's sample code DateCell http://developer.apple.com/library/ios/#samplecode/DateCell/Introduction/Intro.html the ivar pickerView is declared in MyTableViewController.h
All the examples I can find using DLLImport to call C++ code from C#
All APIs in Hibernate are from 1.4 and are thus not using java generics.
All, I am using the JQuery Autocomplete Plugin 1.0.2 in a JQuery UI Dialog.
All our applications rely on a certain amount of client data i.e. Lookups for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.