<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Getting to Workflow Information</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2007/09/30/getting-to-workflow-information.aspx</link><description>Hi, I'm Phil Allen, a developer with the SharePoint Designer team who works primarily on Workflow. Today I'd like to describe how you can get some important data about your workflow as usable data within a workflow action. This is all about creating new</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Techy News Blog &amp;raquo; Getting to Workflow Information</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2007/09/30/getting-to-workflow-information.aspx#5218919</link><pubDate>Mon, 01 Oct 2007 09:33:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5218919</guid><dc:creator>Techy News Blog » Getting to Workflow Information</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.artofbam.com/wordpress/?p=4142"&gt;http://www.artofbam.com/wordpress/?p=4142&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>WSS 3.0 &amp; MOSS: Recopilación de enlaces interesantes (VIII)</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2007/09/30/getting-to-workflow-information.aspx#5356729</link><pubDate>Mon, 08 Oct 2007 09:56:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5356729</guid><dc:creator>Blog del CIIN</dc:creator><description>&lt;p&gt;Despu&amp;#233;s de una semana un tanto ajetreada en el CII, noi pod&amp;#237;amos faltar al tradicional recopilatorio&lt;/p&gt;
</description></item><item><title>re: Getting to Workflow Information</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2007/09/30/getting-to-workflow-information.aspx#5383362</link><pubDate>Tue, 09 Oct 2007 18:55:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5383362</guid><dc:creator>Di Giorgio Domenico</dc:creator><description>&lt;p&gt;Hi, i have problem with __Context property, the value is alway null. I have followed step by step instructions on this article but not work for me. I'm using WSS 3.0 only and not SPD. Can you help me?&lt;/p&gt;
&lt;p&gt;Thanks &lt;/p&gt;</description></item><item><title>WSS 3.0 &amp; MOSS: Recopilación de enlaces interesantes (IX)</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2007/09/30/getting-to-workflow-information.aspx#5782359</link><pubDate>Tue, 30 Oct 2007 18:49:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5782359</guid><dc:creator>Blog del CIIN</dc:creator><description>&lt;p&gt;Despu&amp;#233;s de alg&amp;#250;n tiempo sin postear el habitual recopilatorio de recursos interesantes de WSS 3.0 &amp;amp;amp;&lt;/p&gt;
</description></item><item><title>re: Getting to Workflow Information</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2007/09/30/getting-to-workflow-information.aspx#5788090</link><pubDate>Wed, 31 Oct 2007 03:00:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5788090</guid><dc:creator>Maarten Sundman</dc:creator><description>&lt;p&gt;Slightly off topic, but I'm making a workflow in SPD and trying to pull the initiating user information. I don't see any intuitive way of doing this. Am I missing something here?&lt;/p&gt;
&lt;p&gt;Any help is appreciated.&lt;/p&gt;</description></item><item><title>re: Getting to Workflow Information</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2007/09/30/getting-to-workflow-information.aspx#7026173</link><pubDate>Tue, 08 Jan 2008 12:43:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7026173</guid><dc:creator>Custom activity inheritance and DependencyProperty (__Context, __ListId, __ListItem)</dc:creator><description>&lt;p&gt;I've create BaseItemActivity class which declares __Context, __ListId and __ListItem properties. Activities inherited from BaseItemActivity doesn't work correctly in SPD. Does it mean that every activity which uses current item must declare its own __Context, __ListId and __ListItem?&lt;/p&gt;
&lt;p&gt;public abstract class BaseItemActivity : Activity&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;// Fields&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;public static DependencyProperty __ContextProperty = DependencyProperty.Register(&amp;quot;__Context&amp;quot;, typeof(WorkflowContext), typeof(BaseItemActivity));&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;public static DependencyProperty __ListIdProperty = DependencyProperty.Register(&amp;quot;__ListId&amp;quot;, typeof(string), typeof(BaseItemActivity));&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;public static DependencyProperty __ListItemProperty = DependencyProperty.Register(&amp;quot;__ListItem&amp;quot;, typeof(int), typeof(BaseItemActivity));&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;Correct binding generated by SPD:&lt;/p&gt;
&lt;p&gt;__ListItem=&amp;quot;{ActivityBind ROOT,Path=__item}&amp;quot; __Context=&amp;quot;{ActivityBind ROOT,Path=__context}&amp;quot; __ListId=&amp;quot;{ActivityBind ROOT,Path=__list}&amp;quot;&lt;/p&gt;
&lt;p&gt;Binding generated by SPD when inheriting from BaseItemActivity (__ListId and __ListItem are empty, __Context is ???)&lt;/p&gt;
&lt;p&gt;&amp;lt;... __ListItem=&amp;quot;0&amp;quot; __ListId=&amp;quot;&amp;quot; ...&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;ns1:MyActivity.__Context&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;ns2:C__153 xmlns:ns2=&amp;quot;clr-namespace:My.WorkflowActions.ProxySupport;Assembly=My.WorkflowActions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/ns1:MyActivity.__Context&amp;gt;&lt;/p&gt;</description></item><item><title>re: Getting to Workflow Information</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2007/09/30/getting-to-workflow-information.aspx#7044987</link><pubDate>Wed, 09 Jan 2008 22:58:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7044987</guid><dc:creator>Sandeep</dc:creator><description>&lt;p&gt;Hi i have used ur blog to create the custom activity which returns me the UTC time, but when i use the sharepiouint designer string builder to cretae the string and append the datetime varible to it, it converts the datetime backt ot the local time while appending it to the string, but the same things work when i assing the valut ot datetime column, any solution for this.&lt;/p&gt;
&lt;p&gt;Sandeep &lt;/p&gt;</description></item><item><title>Crerando sitio y webpart programaticamente en SharePoint 2007</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2007/09/30/getting-to-workflow-information.aspx#7582588</link><pubDate>Sun, 10 Feb 2008 16:52:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7582588</guid><dc:creator>Haaron Gonzalez</dc:creator><description>&lt;p&gt;La semana pasada surgi&amp;#243; el siguiente requerimiento algo especial, en este escenario se cuenta con un&lt;/p&gt;
</description></item><item><title>Creating Re-usable Email Templates for SharePoint Designer 2007 Workflows</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2007/09/30/getting-to-workflow-information.aspx#8722237</link><pubDate>Sat, 12 Jul 2008 03:04:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8722237</guid><dc:creator>Microsoft SharePoint Designer Team Blog</dc:creator><description>&lt;p&gt;Hi there, I’m Jordan Hull, a Software Development Engineer in Test on the SharePoint Designer Workflow&lt;/p&gt;
</description></item><item><title>re: Getting to Workflow Information</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2007/09/30/getting-to-workflow-information.aspx#9375320</link><pubDate>Mon, 26 Jan 2009 00:55:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9375320</guid><dc:creator>diseño web</dc:creator><description>&lt;p&gt;Muy interesante, muy buen art&amp;#237;culo...&lt;/p&gt;</description></item></channel></rss>