spCustomFormAutoSavedForms_GetByFormGuid

Parameters

Parameter Parameter Type Mode Description
@FormGuid uniqueidentifier IN

Definition

Copy

        create procedure dbo.spCustomFormAutoSavedForms_GetByFormGuid
        (
          @FormGuid uniqueidentifier
        )
        as

        select FormGuid, FormData from dbo.CustomFormAutoSavedForms
        where FormGuid = @FormGuid