Home
»
Microsoft Dynamics CRM
»
Hard-work-days of a Microsoft Dynamics CRM Freelance Developer
»
All Tags
»
Custom Workflow
»
Microsoft CRM 4.0
Browse by Tags
C#
Customization
Execute
Fetch
MS CRM 4.0
Reporting Services
Workflow
Related Posts
Blog Post:
Formatting datetime in workflows with custom workflow activity in Microsoft Dynamics CRM 4.0
Anonymous
I've found one weird thing in workflows - when you insert datetime value inside text field you can't format it. Result of such inserting: I decided to develop custom activity which will give possibility to format those output. This activity has two inputs - datetime value to format (CrmDateTime...
on
16 Jun 2010
Blog Post:
Custom workflow action which returns Opportunity Close object based on Opportunity object
Anonymous
All data you've input into the CRM is stored in opportunityclose record when opportunity is closed. And this data is inaccessible from workflow designer because opportunityclose record is child record for opportunity. And I'll try to fix it. I will made it using custom workflow action. So the...
on
11 Feb 2010
Blog Post:
Custom workflow action which returns current DateTime value
Anonymous
Here is the code: using System ; using System . Collections . Generic ; using System . Text ; using System . Workflow . Activities ; using Microsoft . Crm . Workflow ; using System . Workflow . ComponentModel ; using Microsoft . Crm . Sdk ; using Microsoft . Crm . Sdk . Query ; using Microsoft . Crm...
on
3 Nov 2009
Blog Post:
Custom workflow action, team members and 'to' field of email record for Microsoft Dynamics CRM 4.0
Anonymous
There was interesting question and I decided to help author of question and create such functionality. Here's the code of this custom workflow action: using System ; using System . Collections . Generic ; using System . Text ; using System . Workflow . Activities ; using Microsoft . Crm . Workflow...
on
1 Oct 2009
Blog Post:
Overriding Records per page count for Microsoft Dynamics CRM 4.0
Anonymous
I've decided to use idea and code from one of my previous posts . Idea: 1. Add field to user entity which will contain count of records to show. 2. Replace system-defined count of records with value from 1 trough catching and handling Execute message. Field: Code of the plugin: using System ; using...
on
6 Sep 2009
Blog Post:
Custom workflow action which renders and sends a report for Microsoft Dynamics CRM 4.0 with email
Anonymous
Idea of this custom workflow action is following: 1. Give user possibility to run and export report in one action. 2. Insert this exported report as attachment into email. 3. Sent this email to recipient. I've created a new project. Type of project is 'Class Library', Framework - 3.0. First...
on
4 Aug 2009
Blog Post:
Creation of Shortcut to record in Microsoft Dynamics CRM 4.0 in Workflows
Anonymous
There are a lot of such tasks to create shortcut of record which had initialized a workflow execution to be used in email notifications. Idea of realization of such functionality is not mine. Author of idea - Artem 'Enot' Grunin (Артем Enot Грунин) and I'm very appreciated to him for his...
on
25 Jun 2009