Is there a table somewhere that I can simply grab all forms created and their respective URL link? Even better if it would bring in their description as well.
Question
Question
Is there a way to grab all form names and their respective url link?
asked on March 28, 2016
0
0
Replies
replied on March 28, 2016
Hi David,
I think you will find everything you need in the cf_business_processes table. ( believe you are looking for the entire process and not individual forms )
I have used this table in the past to list our active process and url information.
You can adjust your query to give the complete URL and other options but a quick query I use is:
SELECT
name,
description,
friendly_name
FROM [LFForms].[dbo].[cf_business_processes]
where is_activated = 1
Think this will get you started.
Andrew
0
0
replied on March 28, 2016
Hi there,
Are you referring to all the business processes and it's URL? or Forms? Can you tell me more about your use case?
0
0
You are not allowed to follow up in this post.