0 Accessing Workflow Data Via Dynamic Data Block 1 Jeremy Turgeon posted 10 Years Ago My understanding is that only the Dynamic Data block can display information recorded in a workflow entry form. I've attempted, with my limited skill in SQL, to pull this information from the database without success. I've also tried to use a workflow to write the desired values to a custom Person Attribute which works and is accessible from Reports but I don't know how to access it from SQL. How can I reference this information both inside a custom attribute and inside a workflow? Thanks in advance!
Jeremy Turgeon 10 years ago This is working well for people whose accounts I've manually created internally. But when someone creates a web account and completes the workflow that this query reports on their information doesn't show up.Also, new accounts created through the Register external button of the Login page are created without any connection status or RecordStatusValueId.
Rock RMS 10 years ago Yes, workflows entered from people who are not logged in will not have an initator property. We'll look into the lack of connection status and record states on the register page.
Jeremy Turgeon 10 years ago I figured out what the problem was. The original script seems to have mixed up pa.AliasPersonId with the correct value which is pa.Id. The line should read INNER JOIN [PersonAlias] pa ON pa.Id = w.[InitiatorPersonAliasId]