Hi Oli, For achieving this you need to write a custom workflow or plugin. E.g. Using pluginPlugin on Post operation of Create message. // Refer to the create record id. if (context.OutputParameters.Contains("id")) { Guid entityId=new Guid(context.OutputParameters["id"].ToString()); //Use this id to Populate Custom Text Field } more info about custom workflow and plugin, please refer below links msdn.microsoft.com/.../gg334455.aspx msdn.microsoft.com/.../gg594416.aspx Let me know if you have any other query.
↧