Sharepointでは、リストアイテムをあるリストから別のリストにコピーする方法を教えてください。たとえば、「リストA」から「リストB」にコピーします(どちらもサイトのルートにあります)
「リストA」に新しいリストアイテムが追加されたときに、このコピーを発生させたい
ItemAddedイベントレシーバー内のSPListItemのCopyTo()メソッドを使用しようとしましたが、コピー先のURLがわかりませんでした。
実際、ラースが言ったように、アイテムを移動してバージョンを保持し、ユーザー情報を修正するのは難しい場合があります。以前にも同様のことを行ったので、コード例が必要な場合は、コメントでお知らせください。ガイダンスを提供できます。
CopyTo メソッド(これを採用する場合)には、次のような絶対Uriが必要です。 http://Host/site/web/list/filename.doc
したがって、イベントレシーバーでこれを実行する場合は、必要な要素を含む文字列を連結する必要があります。次のようなもの(これは他の方法で実行できることに注意してください):
string dest=
siteCollection.Url + "/" + site.Name + list.Name + item.File.Name;
これが私が使用するコードです。 SharePointに表示されるSPlistItemと宛先リストの名前を渡します(URLではありません)。唯一の制限は、両方のリストが同じサイトにある必要があることです。
private SPListItem CopyItem(SPListItem sourceItem, string destinationListName) {
//Copy sourceItem to destinationList
SPList destinationList = sourceItem.Web.Lists[destinationListName];
SPListItem targetItem = destinationList.Items.Add();
foreach (SPField f in sourceItem.Fields) {
//Copy all except attachments.
if (!f.ReadOnlyField && f.InternalName != "Attachments"
&& null != sourceItem[f.InternalName])
{
targetItem[f.InternalName] = sourceItem[f.InternalName];
}
}
//Copy attachments
foreach (string fileName in sourceItem.Attachments) {
SPFile file = sourceItem.ParentList.ParentWeb.GetFile(sourceItem.Attachments.UrlPrefix + fileName);
byte[] imageData = file.OpenBinary();
targetItem.Attachments.Add(fileName, imageData);
}
return targetItem;
}
リストアイテムを別のリスト(avepoint、metavisなど)にコピーするためのツールは市場に数多くありますが、これを1つのリストだけで実行することを計画している場合、かなり高価です。
たとえば、週に1回これを手動で実行できる場合は、次のツールを見てください。 http://en.share-gate.com/sharepoint-tools/copy-move-sharepoint-list-items-with-メタデータとバージョンの履歴
すべてのメタデータ、タイムスタンプ、作成者情報、バージョン履歴を保持したい場合、SharePointでファイル、アイテム、フォルダーをコピーおよび移動するのは難しい場合があります。見てみましょう ShareMove for SharePoint -WebサービスAPIもあります。
SPListItemではなくSPFileでCopyTo(url)メソッドを呼び出すようにしてください。例えば:
ItemUpdated(SPItemEventProperties properties)
{
//...
string url = properties.Web.Site.Url + "/" + properties.Web.Name + "Lists/ListName/" + properties.ListItem.File.Name;
//properties.ListItem.File.MoveTo(url);
properties.ListItem.File.CopyTo(url);
//...
}
_private void CopyAttachmentsToList(SPListItem srcItem, SPListItem tgtItem)
{
try
{
//get source item attachments from the folder
SPFolder srcAttachmentsFolder =
srcItem.Web.Folders["Lists"].SubFolders[srcItem.ParentList.Title].SubFolders["Attachments"].SubFolders[srcItem.ID.ToString()];
//Add items to the target item
foreach (SPFile file in srcAttachmentsFolder.Files)
{
byte[] binFile = file.OpenBinary();
tgtItem.Update();
tgtItem.Attachments.AddNow(file.Name, binFile);
tgtItem.Update();
}
}
catch
{
//exception message goes here
}
finally
{
srcItem.Web.Dispose();
}
}
_
この行tgtItem.Update();
を追加することを忘れないでください。そうしないと、エラーが発生します。
私も同じ問題を抱えていました。
代わりに少し実験した後
targetItem[f.InternalName] = sourceItem[f.InternalName];
私が使用した:
targetItem[childField.Title] = sourceItem[parentField.Title];
C#サーバー側コードを使用して、1つのSharePointリストまたはライブラリから別のSharePointリストまたはライブラリにリストアイテムをコピーする
// Itecollectionはソースリストからのデータのコレクションです
public void CopyItemsFromOneListToAnotherList(SPListItemCollection itemCollection)
{
using (SPSite site = new SPSite(siteUrl))
{
using (SPWeb web = site.OpenWeb())
{
//Get destination list/library
//destListName - Destination list/library name
SPList destList = web.Lists.TryGetList(destListName);
foreach (SPListItem sourceItem in itemCollection)
{
//Add new Item to list
SPListItem destItem = destList.Items.Add();
foreach (SPField field in sourceItem.Fields)
{
if (!field.ReadOnlyField && !field.Hidden && field.InternalName != "Attachments")
{
if (destItem.Fields.ContainsField(field.InternalName))
{
//Copy item to destination library
destItem[field.InternalName] = sourceItem[field.InternalName];
}
}
}
//Update item in destination library or list
destItem.Update();
Console.WriteLine("Copied " + sourceItem["ID"] + "to destination list/library");
}
}
}
}
フィールドをコピーしてバージョンを保存する方法:
public static SPListItem CopyItem(SPListItem sourceItem, SPList destinationList)
{
SPListItem targetItem = destinationList.AddItem();
//loop over the soureitem, restore it
for (int i = sourceItem.Versions.Count - 1; i >= 0; i--)
{
//set the values into the archive
foreach (SPField sourceField in sourceItem.Fields)
{
SPListItemVersion version = sourceItem.Versions[i];
if ((!sourceField.ReadOnlyField) && (sourceField.InternalName != "Attachments"))
{
SetFields(targetItem, sourceField, version);
}
}
//update the archive item and
//loop over the the next version
targetItem.Update();
}
foreach (string fileName in sourceItem.Attachments)
{
SPFile file = sourceItem.ParentList.ParentWeb.GetFile(sourceItem.Attachments.UrlPrefix + fileName);
targetItem.Attachments.Add(fileName, file.OpenBinary());
}
targetItem.SystemUpdate();
return targetItem;
}
private static bool SetFields(SPListItem targetItem, SPField sourceField, SPListItemVersion version)
{
try
{
targetItem[sourceField.InternalName] = version.ListItem[sourceField.InternalName];
return true;
}
catch (System.ArgumentException)//field not filled
{
return false;
}
catch (SPException)//field not filled
{
return false;
}
}
これは、クロスサイトコピーを可能にするSylvianと同等のPowerShellです。彼のコードも同様に変更できます...
param([string]$sourceWebUrl, [string]$sourceListName, [string]$destWebUrl, [string]$destListName)
$sourceWeb = get-spweb $sourceWebUrl;
$sourceList = $sourceWeb.Lists[$sourceListName];
$destWeb = get-spweb $destWebUrl;
$destList = $destWeb.Lists[$destListName];
$sourceList.Items |%{
$destItem = $destList.Items.Add();
$sourceItem = $_;
$sourceItem.Fields |%{
$f = $_;
if($f.ReadOnlyField -eq $false -and $f.InternalName -ne "Attachments" -and $sourceItem[$f.InternalName] -ne $null){
$destItem[$f.InternalName] = $sourceItem[$f.InternalName];
}
}
$destItem.Update();
}
使用するには、copy-listitems.ps1ファイルにコピーして貼り付け、Sharpoint powerhsellコマンドラインを使用して実行します...
それで、リストにはまったく同じまたは類似した列がありますか?どちらの方法でも、「リストA」でアイテムが作成されたときに自動的に実行される単純なワークフローを作成できます。問題のワークフローは比較的シンプルなので、2つのリストの列を簡単に一致させることができるため、SharePoint Designer(無料)を使用して作成することをお勧めします。以下のウォークスルーは、開始するのに役立つはずです。