spCustomFormEntryAttribute_GetByEntryID

Parameters

Parameter Parameter Type Mode Description
@EntryID uniqueidentifier IN

Definition

Copy

    create procedure [dbo].[spCustomFormEntryAttribute_GetByEntryID]
    (
          @EntryID uniqueidentifier
    )

    as

      select
          [EntryID],
          [AttributeType],
          [AttributeValue],
          [ChangeDate],
          [ChangeUserID]
      from dbo.CustomFormEntryAttribute
      where [EntryID] = @EntryID