简体   繁体   English

无法使用csom使用查找表GUID更新任务或项目上的CustomField

[英]Unable to update CustomField on a Task or Project with Lookup table GUID using csom

Has someone managed to update custom fields programmatically on a Task or a Project which uses lookup values? 有人设法在使用查找值的任务或项目上以编程方式更新自定义字段吗? I'm using CSOM, code is below, c#. 我正在使用CSOM,代码在下面,c#。 Lookup Custom Field does update but field set to blank, overwriting previous value entered using Web App. 查找自定义字段确实更新但字段设置为空白,覆盖使用Web App输入的先前值。 Updates to 'Text' Custom fields work fine. “文本”自定义字段的更新工作正常。

private void SendCode()
{
    ProjectContext context;
    using (context = new ProjectContext(ConfigurationManager.AppSettings["psUrl"]))
    {
        context.Load(context.Projects,
            pj => pj.Include(
                p => p.Id,
                p => p.Name));
        context.Load(context.CustomFields,
            lts => lts.Include(
                lt => lt.Name,
                lt => lt.InternalName));

        context.ExecuteQuery();
        // Output Status is a Custom Filed referring to a lookup table called Output Status with 6 status values
        string customFieldName = "Output Status";
        // A routine to get the correct GUID from the lookup Table
        object customFieldValue = new Guid("1aded2bc-67ad-49e4-9c52-a9dca4ea09a5");
        foreach (PublishedProject pp in context.Projects)
        {
            DraftProject proj2Edit = pp.CheckOut().IncludeCustomFields;
            context.Load(proj2Edit.Tasks,
                ts => ts.Include(
                    t => t.Id,
                    t => t.Name,
                    t => t.CustomFields,
                    t => t.OutlineLevel,
                    t => t.IsSummary));
            context.ExecuteQuery();
            var cfInternalName = context.CustomFields.First(cf => cf.Name == customFieldName).InternalName;
            DraftTask newTask = proj2Edit.Tasks.First(t => t.Name == "REI and PPR Monitoring");
            newTask[cfInternalName] = customFieldValue;  // How should you be setting the GUID?
            proj2Edit.Publish(true);
            QueueJob qJob = context.Projects.Update();
            JobState jobState = context.WaitForQueue(qJob, QueueTimeout);
        }
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM