Показать сообщение отдельно
Старый 04.04.2014, 09:34   #11  
Lavdislav is offline
Lavdislav
Участник
 
34 / 10 (1) +
Регистрация: 28.02.2014
Цитата:
Сообщение от Lavdislav Посмотреть сообщение
На сегодня рабочий день закончился, так что завтра всё проверю, спасибо что помогаешь.
Думаю да, ошибка именно в том месте падает. Хмм, получилось так:
Код:
public override void Execute()
        {
            Entity record = crmService.Retrieve(TargetEntity.LogicalName, TargetEntity.Id, new ColumnSet("subject", "regardingobjectid"));

            if (TargetEntity.Contains("regardingobjectid"))
            {
                string uniq = "";

                int uniqLength = 1024;

                if (executionContext.MessageName == MessageName.Update)
                    {
                        record = crmService.Retrieve(TargetEntity.LogicalName, TargetEntity.Id, new ColumnSet("subject", "regardingobjectid"));
                    }
                    else
                    {
                        record = TargetEntity;
                    }

                if (record.Contains("regardingobjectid"))
                {
                    uniq = record.GetAttributeValue<EntityReference>("regardingobjectid").Name;

                    RetrieveEntityRequest rerq = new RetrieveEntityRequest
                    {
                        LogicalName = record.GetAttributeValue<EntityReference>("regardingobjectid").LogicalName,
                        RetrieveAsIfPublished = true
                    };

                    RetrieveEntityResponse rers = (RetrieveEntityResponse)crmService.Execute(rerq);

                    uniq = rers.EntityMetadata.DisplayName.UserLocalizedLabel.Label + " " + "[" + uniq + "]";
                }

                if (!record.Contains("subject") || record["subject"].ToString() != uniq)
                {
                    uniq = string.Format("{0}", uniq.Length > uniqLength ? (uniq.Substring(0, uniqLength - 3) + "...") : uniq);
                    record["subject"] = uniq;
                    if (executionContext.MessageName == MessageName.Update)
                    {
                        crmService.Update(record);
                    }
                }
            }
        }
Но опять же ругается на Create of bf_evaluatingobject на то что нету с таким Id