The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
14 views

WF Security Pack Activities are not showing up in the toolbox

I installed the WF Security Pack CTP 1 and referenced the assemblies in my project, but I can't figure out why the activities aren't showing up in the toolbox. I'm using Visual Studio 2012 and .NET ...
1
vote
2answers
26 views

How to get outArgument WorkflowApplication when wf wait for response(bookmark OR idle) and not complete

Accessing Out Arguments with WorkflowApplication when wf wait for response(bookmark OR idle) and not complete
0
votes
1answer
19 views

CRM 2011: Check for reference value in custom workflow assembly

I'm using the part of a coding in a customer workflow assembly in CRM 2011: [Input("Organization input")] [Output("Organization output")] [ReferenceTarget("organization")] public ...
0
votes
0answers
29 views

how to get data from wwf workflowApplication ,Runtime [duplicate]

How to GET OutRahgiri value to aspx file Without WCF in RUNTIME OR befor idle(Bookmark) WorkFlow Type:WorkflowApplication public class CustomActivity:CodeActivity { [RequiredArgument] ...
0
votes
0answers
22 views

How to get a list of MS Sample workflow activities (aka Sample activity libraries?) [closed]

What are and where can I get a list of all available Microsoft Sample Workflow Activities for .Net 4 or afterward? Once I find them, are those samples distributable? Thanks in advance.
1
vote
1answer
33 views

Why do I get strange timings when tracking my workflow?

I have a tracking participant which, when called, fires off a new thread to do the tracking work. The tracking work eventually does this: private static readonly ConcurrentDictionary<string, ...
0
votes
1answer
292 views

CRM 2011: Custom Workflow Activity Output Parameters don´t show

everyone, I'm having a problem that does not appear in the output parameter list on the right side under "Look for" underneath "Local Values", I do not understand the problem or reason for not appear, ...
0
votes
1answer
19 views

WorkFlow Ensure operations are performed in order

I was given an assignment for school that says to create a Workflow that looks like: Authentication ->if (Authentication) then { getallcompanies(); selectcompany(); } else { error ...
0
votes
1answer
172 views

SharePoint Sandboxed Custom Workflow Activity to get value from another list based on multiple criteria

I'm trying to write a sandboxed custom workflow activity that would go to another list and get a value of a field based on values of multiple other fields combined. List A State - lookup to States ...
0
votes
2answers
144 views

How can we set second picklist value dynamically with string value is know in CRM Dynamics 4.0

I have two pick-list in Car details entity. I'm setting the Model (cir_model) Picklist value with from the input parameter (that is CrmNumber) of Custom Workflow activity and it's working as expected, ...
1
vote
3answers
50 views

Why do we need to restart the CRM server after registering the custom workflow using Plugin Registration tool to make that work properly

Can we have any alternative way to make run-able the custom Workflow activity in Workflow steps. All the time what I do is register the dll using Plugin registration tool and then restart the server. ...
1
vote
0answers
68 views

How to set lookup value to a N:1 relationship record and then create it

There use to be a 1:N relationship between Contact (contact) and Car Details(cir_cardetails) - I have now passing a parameter for Contact as a lookup for Car Details like below public static ...
2
votes
1answer
86 views

Custom windows workflow activities which access the database, reuse and state

I have created a windows workflow state machine that has custom activities (CodeActivity). These custom activities need to access the database and I have a property which contains the database ...
0
votes
1answer
58 views

Add a simple process in a account.invoice workflow

I want to add a small process after an user validate an invoice in Openerp 7 (just some recording for the salesperson) but i dont know how to 'intercept' the action ?
0
votes
0answers
79 views

MWF flowchart activities and input arguments in a pure C# implementation

Among the set of examples here, there is \WF\Basic\Built-InActivities\FlowChartWithFaultHandling. There is a XAML implementation and a pure CS implementation. The pure CS implementation passes ...
0
votes
1answer
106 views

Resuming persisted WorkFlow (WorkFlow Foundation 4.5)

Im trying to resume a persisted work flow. The Workflow is running local on a client machine and is attached to a WindowsForms Application The bookmark is created in a extension activity like here: ...
0
votes
0answers
53 views

“This action has required parameters that are missing”

I made custom activity for SharePoint designer , I add __Context Property in code, But when I check my work flow for Errors I got “This action has required parameters that are missing” Error in ...
0
votes
1answer
89 views

Setting ExpressionTextBox's ExpressionType to a generic type

I'm having a slight problem using the ExpressionTextBox control in a designer for an activity that I have. How does one go about setting its ExpressionType property in XAML to a Type object that ...
0
votes
1answer
67 views

Event for “activity selected” in WF4 WorkflowDesigner.View

I want to display some help text in a docked pane for WF4 Activities as the user works with them on the WorkflowDesigner design surface (View). The help text needs to change when the user selects a ...
1
vote
1answer
405 views

The namespace '<global namespace>' already contains a definition for 'Workflow'

I'm working on a Custom workflow activity. I've created my own helper.cs (Early Bound Entity Classes) with the Code Generation Tool (CrmSvcUtil.exe) When I try to compile the code, it returns the ...
5
votes
1answer
197 views

How can I debug CRM 2011 activity workflow with plugin registration tool?

I've been doing this with plug-in and it's really useful stuff cause you don't need be attached to IIS process. This tutorial explain how to do that locally: ...
0
votes
1answer
232 views

How to run executable file after TFS Build

My task is: after TFS build 1) On a server X stop file Example.exe 2) Copy files from Drop Location into server X 3) Run a brand-new version of Example.exe on a server X I'm updating ...
0
votes
1answer
55 views

VS2010 Custom Activity Designer Not Being Used

I have a solution which has a custom activity defined, and I made a designer to go along with it (see below). I have 3 projects, one for the custom activity, one for the designer for the custom ...
0
votes
0answers
81 views

How to invoke a Workflow Activity with PowerShell script?

How can I start up a workflow (contained in a custom assembly) by using a PowerShell script?
3
votes
2answers
735 views

CRM 2011 Custom Workflow

I GO THE PLUGIN WORKING, AND I HAVE UPDATED THE WORKING CODE HERE. HOPE IT HELPS!! I'm creating a workflow which has a plugin to retrieve a contact entity from a "FROM" field of an Email record. ...
0
votes
0answers
45 views

Activity Workflow with Custom Portlet

I 've integrated Activity workflow with Liferay 6.1. Trying to configure the workflow with custom portlet . Given all the entry in service.xml with reference package and overridden updateStatus ...
0
votes
1answer
191 views

Assign value to workflow variable

I have one question about Windows Workflow Foundation 4. I have an activity named PositionArrayActivity. This activity has a Sequence activity inside it. I need that in Execute method (during the ...
0
votes
1answer
188 views

WorkflowRuntime Execution

I designed a Workflow in WF4 in visual studio . It is so simple and I only want to execute this in this way. using (WorkflowRuntime workflowRuntime = new WorkflowRuntime()) { ...
0
votes
1answer
238 views

CodeActivity InArgument<T> accessing values of T

I have a bit of a twist that is a little more trouble than I thought it would be. Normally I would have an InArgument and use it as below: public InArgument<Int32> XYZ_ID { get; set; } public ...
0
votes
0answers
26 views

.net workflow. private memebr is shared between instances

I'm using .net 4.5 workflow services with appfabric. in my workflow I have a custom code activity that contains a private member of type Dictionary. the data that this member contains is shared ...
0
votes
3answers
177 views

Custom WF4 Activity: Why e.Handled = true in DoubleClick don't stops bubbling

Hallo I'm using custom WF4 activity which can be nested by self. I have to catch a double-click event, so I rewrote OnPreviewMouseDoubleClick method. My problem is that when activity is inside the ...
1
vote
1answer
368 views

Domain Driven Design in a Workflow-enabled MVC Application - Design Decision

I'm building an N-Tier MVC 4 Application that implements the Repository and UnitOfWork patterns as well as Domain Driven Design using an abstracted CommandProcessor layer that validates and executes ...
0
votes
0answers
55 views

Workflow Foundation ActivityDesigner custom Connection Count and Locations

My end goal is to have an ActivityDesigner that has multiple connection points designating multiple inputs and multiple connection points designating multiple outputs. In Windows Workflow Foundation ...
0
votes
1answer
23 views

How to check property value in a WCF activity?

I am really new to windows workflow and I need to create an activity. I did that: class CustomActivity : Activity { } This activity has custom a property and I did that: class CustomActivity : ...
0
votes
0answers
17 views

How to get the Result from an Activity sequence which calls InvokeMethod()

I hope someone can guide me here.. and my apologies in advance if this is elementary (I'm very new to this). I checked the URI and I DO receive the oData response when calling the URI from a browser. ...
0
votes
1answer
88 views

Custom Workflow Activity Function Error

I have following code to fetch an entity records: private void FetchEvent(string EventId, IOrganizationService crmService) { // Create the ColumnSet to be retrieved. ColumnSet ...
1
vote
1answer
647 views

ListItem Update from Client Object Model Not Triggering OnWorkflowItemChanged Activity

I am experiencing difficulty creating a file in a document library using the client object model. My custom Visual Studio 2010 workflow is not detecting the updates I am making to the file's list item ...
0
votes
1answer
193 views

List event receiver to record date, when the workflow status on the item has been updated??

Here is the code I have to record the date when the workflow status on an item has been updated/changed. I created accustom column named Completed Date as a Date type in the list to display the date. ...
0
votes
1answer
176 views

WF4 disable copy-paste in WorkflowItemsPresenter in my Custom Sequence

I'm using WorkflowItemsPresenter in my Custom Sequence Activity and I would like to disable Copy and Paste of activities there. I found some solutions which using ICompositeView interface and I was ...
0
votes
1answer
109 views

Custom Activity override double-click and disable open Activity in detail

I'm using custom Activity and overriding OnMouseDoubleClick method. Everything works good but after double click on Activity is that self displayed in designer. It means that in designer is not shown ...
1
vote
1answer
169 views

Passing Lambda expression to Workflow Code Activity as a parameter

I am wondering if Lamda expression could be passed to Windows workflow Code Activity as a parameter? I am trying to query ldap for user objects based on a lambda expression which would be passed to a ...
1
vote
1answer
71 views

Can I pass an Activity into an Activity and have it execute it?

I want a workflow to execute another workflow. The latter workflow will be dynamically created and passed in. Is it possible to have an InArgument that is executed by the Activity that holds it? I ...
0
votes
1answer
211 views

CRM 2011 Custom Workflow - Get the current fiscal year

I have a custom CRM 2011 workflow which needs to know the current fiscal year. Currently I am just passing in an integer value (2012) for the condition operator, see below: ...
0
votes
0answers
54 views

create custom workflows through the net

I have created a WPF rich application that allows users to create customs workflow activities (create, edit, save, run), which is working ok. I have also created a WPFBrowser application version, and ...
1
vote
2answers
525 views

Dynamically set the 'ReferenceTarget' attribute for custom workflow activity in CRM 2011

I have a custom workflow activity that creates a record based on the input parameters passed (entityName and Name). Now, i want to be able to pass the created record as an output parameter. But to ...
1
vote
1answer
366 views

Custom Workflow Step - Retrieve Field From Entity

I have a workflow activity which I use to send out e-mails to suppliers on a regular basis and scheduling follow-up phone calls etc if there is no reply. However my problem is that I somehow need to ...
0
votes
1answer
227 views

I Want To Instatantiate System Workflow Using PlugIn In Online CRM2011

I have a workflow which need to update a custom entity(say-customentity) But it will update which record that need to be pass(i.e GUID of that record) using PlugIn. This PlugIn Fires On Some Event ...
0
votes
1answer
189 views

Tracking child workflow internal activities

I'm facing a problem concerning WF4 and CustomTrackingRecord for Child Workflow loaded dynamically from .xaml by WorkflowInvoker. The execution works really well and I'm able to track InArguments and ...
0
votes
1answer
499 views

TFS 2012 custom build workflow; no build coverage found

In a custom TFS 2012 workflow I'm using the following code snippet: IBuildDetail buildDetail = context.GetValue(BuildDetail); var testManagementService = TfsTeamProjectCollectionFactory ...
1
vote
0answers
133 views

Updating a sharepoint 2003 list with user data provided in Nintex workflow

Apologies for the naivety of the question, but I am brand new to using Nintex workflow in Sharepoint. Having not found examples in the Nintex manuals or online, the simple task I wish to perform is ...

1 2 3 4 5