Pass GUID in SmartForm link

  • 12 July 2014
  • 1 reply
  • 2 views

Badge +1

Hi,
i have created a smartform in which i have save the data in Microsoft CRM in which after submit the form we generate AutoGuid of every form.
Now i want to email the link of filled form with append guid now my current link generted is http://k2.denallix.com/Runtime/Runtime/Form/New+Req/?AutoGuid=59e2d1bd-d1a8-4b81-9da5-49c91ca2be49 i have pass the hardcoded GUID in workflow i want it to dyanmically means when i fill the form an email is generated in which there is link of that form with guid.

 

Thanks,
Nimit Singh Thakur


1 reply

Badge +7

Hi,

Here is my understanding.

When you submit the form, GUID will be generated for every request. So once the form submitted, triggers the workflow where your sending an email. But in the email body you need the Form URL to be displayed along with the GUID which will be a parameter in the URL.

 

If this is the case.

 

Please create a data field of datatype GUID in the process, while configuring the rule for starting the workflow, please pass this GUID into the process datafield.

 

and in the Email body:

say for example

 

use hyperlink expression 

Hyperlink(Click Here, http://k2.denallix.com/runtime/newrequest/?AutoGUID=[Datafield]/

 

I believe this should work

 

Reply