Saturday, May 19, 2012

MSCRM 2011 - Q2 2012 Service Release Multi Browser Support


Client Software
  • Internet Explorer 7 or above on Windows 7, Vista and XP
  • Safari 5.1.1 or above on Mac OS-X or iOS5
  • Firefox 6 or above on Windows 7, Vista and XP or Mac OS-X or iOS5
  • Chrome 13 or above on Windows 7, Vista and XP.

Nicola Grillo

MSCRM 2011 - Retrieve Attachments by ID

// Comment
QueryExpression query = new QueryExpression

                    {
                        EntityName = ActivityMimeAttachment.EntityLogicalName,
                        ColumnSet = new ColumnSet("activitymimeattachmentid"),
                        Criteria = new FilterExpression
                        {
                            Conditions =
                        {
                            new ConditionExpression
                            {
                                AttributeName = "objectid",
                                Operator = ConditionOperator.Equal,
                                Values = {"activity/customentity ID"}
                            },
                            new ConditionExpression
                            {
                                AttributeName = "objecttypecode",
                                Operator = ConditionOperator.Equal,
                                Values = {Email.EntityLogicalName}
                            }
                        }
                        }
                    };
EntityCollection results = service.RetrieveMultiple(query);


Nicola Grillo

Friday, April 13, 2012

SI - Scribe Insight to Trigger Microsoft Dynamics CRM workflow processes



The Adapter for Dynamics CRM 2011 includes a new adapter object that can be used to trigger CRM workflow processes. The triggerworkflow object can execute both on-demand and child workflows via a DTS file. To use the triggerworkflow object you must create a new step selecting it from the adapter objects list. Only execute action is avilable and only two fields can be used to trigger the workflow. You can run multiple workflow using step approach. 





Entityid = Entity Process Guid
workflowid= Process Guid


Nicola Grillo

References:
Release Notes Scribe Adapter for Microsoft Dynamics CRM