USP_UIWIDGETCATALOG_GETINFO

Gets information about a UI widget.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


CREATE procedure dbo.USP_UIWIDGETCATALOG_GETINFO(@ID uniqueidentifier)
as
begin

    select
    ID,
        UIWIDGETSPECXML,
    TSLONG
    from dbo.UIWIDGETCATALOG where ID = @ID;

end