Sharepoint 2010 如何使用web服务更新查找字段

Sharepoint 2010 如何使用web服务更新查找字段,sharepoint-2010,caml,Sharepoint 2010,Caml,我有一个Nintex工作流,我正在使用“调用Web服务”操作在另一个站点中添加一个新的列表项。我想从源列表中的查找字段更新目标列表中的查找字段。这是我的CAML查询 <UpdateListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/"> <listName>Kaizen Blast Objectives</listName> <upda

我有一个Nintex工作流,我正在使用“调用Web服务”操作在另一个站点中添加一个新的列表项。我想从源列表中的查找字段更新目标列表中的查找字段。这是我的CAML查询

<UpdateListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/">
            <listName>Kaizen Blast Objectives</listName>
            <updates>
              <Batch OnError="Continue" ListVersion="1" ViewName="">
                <Method ID="1" Cmd="New">
                  <Field Name="ID">New</Field>
                  <Field Name="Title">{ItemProperty:Title}</Field>
                  <Field Name="Event_x0020_Driver">{ItemProperty:Event_x0020_Driver}</Field>
                  <Field Name="Problem_x0020_Statement">{ItemProperty:Problem_x0020_Statement}</Field>
                  <Field Name="Group1">{ItemProperty:Group}</Field>
                </Method>
              </Batch>
            </updates>
        </UpdateListItems>

改善爆破目标
新的
{ItemProperty:Title}
{ItemProperty:Event_x0020_Driver}
{ItemProperty:Problem_x0020_Statement}
{ItemProperty:Group}
“Group1”是目标列表中的查找字段,“Group”({ItemProperty:Group})是源列表中的查找字段

像我这样简单的任务似乎不起作用

编辑 目标列表中的查找字段是站点列


有什么想法吗?

我想出来了。更新查找字段时,格式必须为id#价值即使源字段和目标字段的数据类型相同,这也是正确的。

如果您不介意我提问的话,您的语句的最终格式是:{ItemProperty:Group}?我在更新查找字段时遇到类似的问题。