RE: While using a workflow to send an email message with the record URL. The URL is "Record URL(Dynamics)" function. When we update to UCI version, the "Record URL(Dynamics)" are still referring to Old URL(Web Client). Is this an expect
Hi Kaira,
This is a known issue, and currently by design.
Cause:
Workflows generates legacy webclient url , the legacy webclient url does not contain appid information eventually routing user to the default app module.
Resolution:
We can create a customworkflow activity to append appid to record url which will route user to the required app.
1. Create a custom workflow activity which accepts two input arguments i.e. Record URL , AppId.
2. Accept the two input parameters , create output parameter by appending AppId to Record URL.
3. The output argument of the custom workflow activity can now be used in subsequent steps.
4. Since url created in output argument contains app module related information user will now be routed to the required app module (based on the appid present in the url).
- Please let me know if this answers your query.