// Example 1 QueryByAttribute qba = new QueryByAttribute(); qba.EntityName = EntityName.salesorderdetail.ToString(); qba.ColumnSet = new AllColumns(); qba.Attributes = new string[] { "salesorderid" }; qba.Values = new object[] { soid }; BusinessEntityCollection bec = crmService.RetrieveMultiple(qba);
Then I was switch on the Fulfill Sdk Message and everything start working fine!
1. open up the SdkMessage view, filter by Name and find the SdkMessageId
2. open up the SdkMessageFilter view, filter by SdkMessageId you got from step 1.
3. change IsCustomProcessingStepAllowed to 'True'
update dbo.SdkMessageFilter set IsCustomProcessingStepAllowed=1 where SdkMessageId= (select top 1 SdkMessageId from dbo.SdkMessage where name ='Fulfill')
I have a question, why the Fulfill message has been unplugged from customization?
Комментариев нет:
Отправить комментарий