Find form based on internal label: Difference between revisions
Jump to navigation
Jump to search
Created page with "If you want to know the ID of a form, and you only know the internal label, use this query: SELECT [Id] FROM [Form] WHERE [InternalLabel] = 'FormLabel';" |
No edit summary |
||
Line 2: | Line 2: | ||
SELECT [Id] FROM [Form] WHERE [InternalLabel] = 'FormLabel'; | SELECT [Id] FROM [Form] WHERE [InternalLabel] = 'FormLabel'; | ||
or for SQL Server: | |||
select id from Form where InternalLabel = #INTERNALLABEL# | |||
sample: https://dev.ssp7.smt-x.com/common/Admin/WsCallAddEdit.aspx?genericid=358 |
Revision as of 07:22, 6 October 2022
If you want to know the ID of a form, and you only know the internal label, use this query:
SELECT [Id] FROM [Form] WHERE [InternalLabel] = 'FormLabel';
or for SQL Server:
select id from Form where InternalLabel = #INTERNALLABEL#
sample: https://dev.ssp7.smt-x.com/common/Admin/WsCallAddEdit.aspx?genericid=358