Answered by:
How to acess List GUID and URL in the workflow?

Question
-
I am making a sharepoint 2010 workflow that generates a link to a ics file so that it can create an outlook appointment, but the problem is I need to pass the list path and GUID in the string builder to create the link. I don't want to hardcode those values in (and I don't want to create a column and put those values in), how can I access those values in the workflow?
Thanks
Thursday, September 20, 2012 3:16 PM
Answers
-
- Marked as answer by Xue-Mei Chang-MSFT Monday, October 1, 2012 1:56 AM
Monday, September 24, 2012 10:06 AM
All replies
-
You can set and reuse this values in an association form.
Regards,
Bubu
http://zsvipullo.blogspot.it
Please mark my answer if it helped you, I would greatly appreciate it.Thursday, September 20, 2012 4:45 PM -
Regards,
Bubu
http://zsvipullo.blogspot.it
Please mark my answer if it helped you, I would greatly appreciate it.Thursday, September 20, 2012 4:48 PM -
Is there any easy and simple way to do this, the above methods are very complicated to me...Thursday, September 20, 2012 5:59 PM
-
sharepoint designer workflow, Although I am able to use visual studio 2010 to do this as well, but I would only go with it on last resort since its very complicated.Friday, September 21, 2012 9:04 PM
-
-
- Marked as answer by Xue-Mei Chang-MSFT Monday, October 1, 2012 1:56 AM
Monday, September 24, 2012 10:06 AM -
You can get the List GUID by capturing the Workflow Status URL in a string and manipulating the string down to just the list ID.
Copy 108 Characters from the end of the Workflow Context: Workflow Status URL (Output to Variable:substring1)
then Copy 44 Characters from start of the substring1 (Output to Variable:ListID)
Wednesday, January 21, 2015 2:48 PM