Created by column in sharepoint 2010

we have 5 different site list that uses the created by column to help us identify who created what. for some reasons one of the site list is showing system account in the created by column and not sure how it was changed to this?
all other list are showing the correct user who created each entry
any ideas?

Have you migrated one of the lists via the content and structure feature from elsewhere within the site collection? 
This may have led to the creation of these items under the system account.
Steven Andrews
SharePoint Business Analyst: LiveNation Entertainment
Blog: baron72.wordpress.com
Twitter: Follow @backpackerd00d
My Wiki Articles:
CodePlex Corner Series
Please remember to mark your question as "answered" if this solves (or helps) your problem.
No

Similar Messages

  • How to Create Custom List in SharePoint 2010 Programmatically ?

    Hi,
    i have tried the following way, 
    http://devendra-sharepoint.blogspot.in/2012/01/creating-list-programatically-in_30.html
    But i am not able to create list.
    Becuase i am getting the following error.
    'Microsoft.SharePoint.SPWeb' does not contain a definition for 'EnsureList' and no extension method 'EnsureList' accepting a first argument of type 'Microsoft.SharePoint.SPWeb' could be found (are you missing a using directive or an assembly reference?)
    Please advice.
    Thanks,
    Aasai

    Hi,
    You can use list.Fields.Add() to add column in list. See below blog:
    http://www.c-sharpcorner.com/blogs/3764/create-sharepoint-list-programmatically.aspx
    Use this to delete list:
    http://www.c-sharpcorner.com/UploadFile/54db21/delete-list-in-sharepoint-2010-programmatically-using-vs-201/
    See this for remove user/group from list:
    http://www.c-sharpcorner.com/UploadFile/54db21/remove-group-permission-to-list-in-sharepoint-2010-programma/
    Hope it could help
    Hemendra: "Yesterday is just a memory,Tomorrow we may never see"
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • Setting the default value to taxonomy column in sharepoint 2010 using client object model

    I am creating a metadata column and I want to set its default value in sharepoint 2010 using client object model. Can anyone help me?
    My code for creating metadata column is as below:
                ClientContext clientContext = new ClientContext(siteUrl);
                Web site = clientContext.Web;
                List list = site.Lists.GetByTitle("LibraryName");
                FieldCollection collField = list.Fields;
                string fieldSchema = "<Field Type='TaxonomyFieldType' DisplayName='SoftwareColumn' Name='SoftwareColumn' />";
                collField.AddFieldAsXml(fieldSchema, true, AddFieldOptions.DefaultValue);
                //oneField.DefaultValue = "ASP.NET|4c984b91-b308-4884-b1f1-aee5d7ed58b2"; // wssId[0].ToString() + ";#" + term.Name + "|" + term.Id.ToString().ToLower();
                clientContext.Load(collField);           
                clientContext.ExecuteQuery();

    Hi,
    Please try the code like this:
    ClientContext clientContext = new ClientContext("http://yoursite/");
    List list = clientContext.Web.Lists.GetByTitle("List1_mmsfield");
    clientContext.Load(list);
    clientContext.ExecuteQuery();
    FieldCollection fields = list.Fields;
    clientContext.Load(fields);
    clientContext.ExecuteQuery();
    Field f = fields.GetByTitle("mms");
    clientContext.Load(f);
    clientContext.ExecuteQuery();
    Console.WriteLine(f.Title + "---" + f.DefaultValue);
    //2;#A2|a0a95267-b758-4e4d-8c39-067069fd2eef
    //1;#A1|641f5726-992c-41c8-9ddc-204a60b88584
    f.DefaultValue = "1;#A1|641f5726-992c-41c8-9ddc-204a60b88584";
    f.Update();
    clientContext.Load(f);
    clientContext.ExecuteQuery();
    Console.WriteLine(f.Title + "---" + f.DefaultValue);
    Best regards
    Patrick Liang
    TechNet Community Support

  • Error creating subsite from template - SharePoint 2010

    I appreciate the help from anyone who can help in my situation.
    I am trying to create a subsite whose parent is a SharePoint Server 2010 website. When I'm doing that, I go to:
    Site Actions > Create > Sites and Workspaces
    My purpose is to create a subsite using the "Web Databases > Issues Web Database" template. When I do that, the page tries to create a website for a long time, and when it finishes, the following error message page appears:
    Preparing Site ...
    Someone has recently made changes to this site and the site is being updated. If the site remains offline for an extended period of time, contact a site owner. Wait
    a moment and refresh your browser
    However, when I use another template, say "Collaboration > Team Site", such website is created successfully and is fully functional.
    Can anybody help me with this issue? My vast expertise in SharePoint extends to one week. I have no idea how to figure this out.
    Thank you so much for everything! Have a great year.

    you have to create access service application. See below
    You have to make sure you did the following:
    Created a Access Service Application
    (Central Administration – Manage Service Applications – New – Access Services)
    Started the Access Database Service
    (Central Administration – Manage Services on Server)
    then open up the SharePoint 2010 Management Shell, and give the following powershell command: enable-spSessionStateService –DataBaseName <SomeNewDatabaseName>
    above command will create a session state database and turns on the session state service.
    Refresh your browser and you are  all set to go
    http://neelb.wordpress.com/2011/05/12/108/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Unable to Create Work Document in SharePoint 2010 by one user

    Hi,
       We have a unique issue. One user in our organisation is not able to create Word Document in our SharePoint environments.
    We have SharePoint 2010 Enterprise Edition and Office 2010 Professional Edition. This issue is faced by only one user in our organization. no issues for thousands of other users.
    We tested with our multiple SharePoint environments of different type of web applications. No where user is able to create Word Document using New Document functionality.
    User is able to create Excel, PowerPoint documents of all extensions. User is able to upload Word Document. User is able to Edit the existing word documents both in browser and Word client.
    Since it fails in all SharePoint environments, I am suspecting some common failure point like User Profile issue, CAL etc. Any suggestions from experts like you is highly appreciated.
    Thanks in advance.

    Hi Sivanandham,
    Could you please test two more options below with the user for narrowing down the issue scope?
    Create a new content type inheriting from content type Document and then upload a new word file as the template to the new content type.
    Change the word template for the content type with issue when the user creates a document from the content type.
    Please also check ULS log for more detailed error for further research.
    Best regards,
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Creating "Conditional Sections" in Sharepoint 2010

    Hi,  I have a created a home page for my team site with several image buttons that are linked to other lists/pages. For one of these buttons  i want to create another section of buttons for the user to select the kind of review to update. Is it
    possible to do that  and make that section "sort of conditional"? i.e. it should only be shown when the user clicks the 1st button?
    For example
    I have the below image buttons. 
    1. Add New Review
    2. View Updated Reviews
    3. View Closed Review
    So when the user clicks on "Add New Review", he/she will be directed to another section within the same page to select the kind of review he/she wants to add. This will be done via image buttons as well.
    e,g image buttons for "1. Internal Review" "2. External Review" etc. 
    These 2nd set of buttons will only appear when the user clicks on the 1st button "Add New Review". 
    Is it possible to do this?
    I hope i have explained well. Any assistance would be appreciated
    Regards, Aarti

    Hi Aarti,
    It seems you want to create an accordion menu to show and hide the children menus, here are two articles about this topic which should help, you can take a look.
    http://blogs.c5insight.com/Home/tabid/40/entryid/341/Create-an-Accordion-Navigation-for-SharePoint-2010-using-jQuery.aspx
    http://www.synergyonline.com/Blog/Lists/Posts/Post.aspx?ID=158
    Thanks
    Daniel Yang
    TechNet Community Support

  • How to create time column in SharePoint custom list.

    Hi,
    Actually my requirement is, I should create a Custom List in SharePoint which should has "Effort" column with the "Time" type.
    User Should enter only Hours and minutes in that field. How should i do it?
    By Default we can have "Date and Time" or "Date" alone. There is no feature to have only "Time" :(
    Thanks in advance.
    Poomani Sankaran

    you can use JSLink script for that. You can use text field attache JSlink script and change her client side rendering. some information and samples about client side rendering: https://code.msdn.microsoft.com/office/Client-side-rendering-JS-2ed3538a
    I's good because in worst case you will have pure SP text field. In case of migration to new version or cloud you will have no problems. 
    Even more you can attache Jquery UI Time spinner http://jqueryui.com/spinner/#time or you can download Time picker extension http://trentrichardson.com/2010/04/19/timepicker-addon-for-jquery-ui-datepicker/
    and create fancy time picking design.
    Tomas.

  • How to change format of OOB columns in sharepoint 2010?

    Hi,
    I have an requirement of changing of date format from 12/05/2014  to 12 May 2014 in a list for 2 Out of Box columns: Created , Modified. Can some one please help me on this.
    Please find the screenshot in which columns are highlighted:
    Badri

    Hi,
    Please check below:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/ade1b4a2-7eac-479a-9dde-baa66eb18e36/how-to-change-date-format-of-sharepoint-list
    http://www.sharepointusecases.com/2009/01/customizing-datetime-format-on-a-list-view-web-part/
    Hope it helps!
    Thanks,
    Avni Bhatt

  • How to filter lookup column in sharepoint 2010

    Hi,
       I have three list, Designation, Employee & Client respectively. Designation have one column as Designation having values like director,hr,etc. The designation column is lookup in employee list in which other columns are empName, empAddress
    etc. Now in my client list there is Client name field & another fields are director & hr. So now i wanted to filter all those employees having designation director & hr from employee list to my client list's director & hr field respectively.
    so how can i achieve this?

    Take a look at this codeplex project:
    http://filteredlookup.codeplex.com/
    Or via this way (SharePoint Designer - Datasource:
    http://sharepointbergen.blogspot.com/2007/04/creating-filtered-lookup-fields-in.html
    Regards, Marijn Somers|| http://www.beyond-it.be || Twitter: http://twitter.com/marijnsomers || http://marijnsomers.blogspot.com

  • Create List Item using SharePoint 2010 Workflow

    Hello everyone.
    I found in youtube video using SP Employee Onboarding Web Part, idea is quite simple and powerful. But this web part available only in SP 2013, and I use 2010. So I wanted to develop my own version.
    Questions is:
    I have 2 lists Employee OnBoards (list contains data about new employee) and Employee OnBoards Tasks (list contains approval task). Where field Employee Name from Employee OnBoards list is lookup field in Employee OnBoards Tasks list.
    I need emplement next:
    When new Item created in Employee OnBoards list, it should copy Employee Name value to the Name field of the Employee OnBoards Tasks list.
    I hope I explained understandable.
    Thanks.

    Hi Azamat,
    This you can do by using SharePoint Designer workflow.
    Create a sharepoint designer workflow and invoke that when new item will create in the list Employee
    OnBoards.
    then use Copy List item action to copy employee name to employee on board task list.
    Below link will help you how to use copy list item action in a workflow.
    http://blogs.salmanghani.info/copy-item-workflow-using-sharepoint-designer-2010/
    Hope this will help you.
    Regards
    Soni K

  • Unable to export all columns from sharepoint 2010 survey

    Have a user that cannot export all columns from a sharepoint survey. When exported, he only gets 3 columns. We've tried a number of things, including exporting from the overview view. We've also made sure that readers had full edit rights, etc. Just for
    background, this survey does contain branching logic. Any ideas?

    I have had
    exactly the same problem before.
    There's already a ton of suggestions on these blogs, and I suspect there is a bug somewhere.
    As I'm lucky to have Reporting Services in SharePoint mode, I've been using it to export Survey data, pre-process it, and export it to Excel or PDF.

  • How to Prevent duplicates on Combination of Lookup columns in sharepoint 2010 using infopath 2010 form.

    Hi All,
    I have list with some Lookup columns like  City, Pin, and Text Column Name. All these are required columns.
    Now I want to prevent duplicates while submitting InfoPath form if a Combination of  City,Pin & Name. (like a Composite primary in Database is used.)
    Can some one help me on how to achieve this using InfoPath  2010 Rules, writing  rule in Xpath.
    Thanks in Advance.

    1. Add a secondary data connection to the list where the form will be submitted.
    2. Prior to submit via rules, set the query fields in the above connection: City, Pin & Name with values entered in the form. Query the data source and check if the result has values.
    3. Show error messages accordingly if exists else continue with Submit.
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

  • How to have repeating columns for SharePoint list

    Hi
    I am working on SharePoint 2013 environment and trying to customize a SharePoint list using infopath form.
    Have a list called "Future Actions" and users need to submit their actions. An user can submit
    n number of Planned actions and every user will submit different number of actions.
    Columns:
    1. Title                                   TEXT
    2. Month                                 Choice
    3. Planned Actions                   TEXT
    I want to capture user's actions in the same form, such that he would have option to expand the
    Planned actions column to add n number of Actions.
    Simply, For one Month, user should be able to define all actions in one form. and the number of planned actions will vary from user to user.
    Pls suggest

    Hi,
    The OOTB can't provide a feature to meet your requirement.
    Here is a similar thread for your reference:
    http://social.msdn.microsoft.com/Forums/en-US/e475cc7f-435f-4e6e-b579-c74311d67b4e/creating-repeating-columns-in-sharepoint-2010-list
    In SharePoint 2013, we can also customize a special field type using client-side rendering.
    http://msdn.microsoft.com/en-us/library/office/jj220061(v=office.15).aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Sharepoint 2013 designer assign to task with created by column failing

    We are getting below exception when we assign a task to created by column in sharepoint 2013 designer workflow.
    It was working till last week.
    RequestorId: c70d0b6d-a1c7-6825-5dec-3bc13f0713bf. Details: System.ArgumentNullException: Value cannot be null. Parameter name: Input at Microsoft.Activities.Expressions.SplitString.Execute(CodeActivityContext context) at System.Activities.CodeActivity`1.InternalExecute(ActivityInstance
    instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation) 
    MCTS Sharepoint 2010, MCAD dotnet, MCPDEA, SharePoint Lead

    Hi,
    According to your post, my understanding is that you got exception when we assign a task to created by column in sharepoint 2013 designer workflow.
    To troubleshoot the issue, I recommend to capture the created by field value in a variable.
    You can add a "Set variable workflow" action and get the value of this field. Then, add a "Log on workflow history" action and log the value of the variable and see if it is capturing the right value. And in the task action, put the variable
    on the user field and do some tests.
    In addition, you need to make sure the variable return field as "string" or "Email Address”.
    Here is a similar thread for you to take a look at:
    http://sharepoint-community.net/forum/topics/sharepoint-2013-workflow-action-send-email-only-works-for-me?xg_source=activity
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • "Assigned To" SharePoint 2010 Question

    Any thoughts about how to implement an "Assigned To" column within a SharePoint 2010 list that would consist of "Person or Group" items and allow the default value for this column to be set to a defined SharePoint group?

    Please use People Picker (Person or Group) for it, In Sharepiont object model it is SPFieldType.Userfield.
    SPList list = web.Lists.TryGetList("Tasks");
                        if (list != null)
                            // get the SharePoint group
                            SPUser user = web.EnsureUser(@"domainName\userName");
                            // Create a new task item
                            SPListItem task = list.Items.Add();
                            SPFieldUserValue assignToGroup = new SPFieldUserValue(web, user.ID, user.Name);
                            task["AssignedTo"] = assignToGroup;
                            task["Title"] = "Testing";
                            task["Description"] = "Testing";                      
                            task.Update();
    check the below articles
    http://www.c-sharpcorner.com/Blogs/10457/programmatically-create-a-task-item-and-assign-to-a-user-in.aspx
    http://www.c-sharpcorner.com/UploadFile/54db21/create-peoplegroup-field-in-sharepoint-2010-programmatically/

Maybe you are looking for

  • Inserting a line in a internal table

    Hello guys , I want to insert in the forst line of my internal table son titles in order to move the entire table to txt file , But I dont kno how I can put the titles in the first line, any suggestion ? DO I have to use a index?

  • How to read data from success function

    Hi, In the success function of my POST method, I want to read a property from the data parameter. This is my code: success : function(data, response) {                                 console.log(data);                                 alert("succes")

  • How to add more chart sheets in excel

    I am working on a VI for data analysis. I have data coming from a spreadsheet file, and I used the excel macro example.vi and I was able to produce a single chart(with column 1 as X-axis and column 2 as Y axis). But I have eight columns of data and I

  • Lining up text in a list box

    I have a listbox full of data that will hopefully someday look like this: Page          Description                                        Severity   10            Image DPI too small                           Error   23            Font missing - Avi

  • Transporting objects from Development System to Testing,Quality and Produtn

    Hi Experts, We have developed one scenario in our project in Development System. Now we need to transport the same to Testing System and test it there and then transport to Quality system and after that to production system. Can any one let me know w