Tagged Questions
0
votes
2answers
269 views
Sharepoint 2007 Powershell: $item.update() gives error that file has been modified
I am trying to programmatically update some metadata for a sharepoint item using powershell. Here is my code:
$web = getWebByURL("http://test-site/spadmin/")
$itm = $web.lists["Documents"].items[0]
...
1
vote
0answers
61 views
SPListItem.Tasks always empty
I have a custom sharepoint (2007) list (named testlist) on which I attached a test workflow (built with sharepoint designer 2007 and named testwf), which only task defined in the 'Actions' section at ...
0
votes
1answer
137 views
How to Get List Values From Sharepoint 2007
I am looking for a way to get list values from SharePoint 2007. Right now I am using PowerShell, and have the following script:
#load Microsoft.SharePoint.dll
...
1
vote
1answer
525 views
Getting User details from field “AssignedTo” in a custom List
I have a Custom List, which have different fields, when I click on any user in field "assignedTo" it navigates me to another window and I can see user's Account, Name, email etc.
I am able to get all ...
0
votes
1answer
144 views
Getting Sharepoint Users and comparing them with SPList field
I have a Custom SPList that has a field "Assigned To", now I can add as many items as I want, and they can have same title and same User they are assigned to, but what I want is a script so that I ...
2
votes
1answer
161 views
SPListItem update yields ItemUpdated/ing Numbering Scheme not found
I've written a console app that searches items in a SP document library (MOSS 2007) for a specific condition and updates the value in a column for each item that meets the criterion. I run the console ...
0
votes
1answer
548 views
Microsoft.SharePoint.SPException: The security validation for this page is invalid
I used SharePoint Designer 2007 to make a Workflow that copy item of Calendar list to Contact list when I create a new item. Then I run my code that new item in Calendar list. Unfortunately, I get a ...
4
votes
2answers
171 views
Editing list item with custom field creates a new list item on current date and time
Based on How to add new field to custom list (See edit!)
It is a different question relating to the above so thought I'd create a new question as the above was technically answered.
But after adding ...
4
votes
1answer
180 views
Delayed Writes & Implications for Cross-Process Synchronization
Simple scenario: OWSTIMER creates a new SPListItem, populates it and calls .Update(). It then fires an HTTP request over to w3wp.exe (front-end app-pool) to invalidate an in-memory cache held there. ...
