You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ITSM/.svn/pristine/c3/c3b102893aa3f03f728d20a4a5c...

28 lines
1.5 KiB

USE [Vertragsverwaltung_20160404]
GO
/****** Object: StoredProcedure [dbo].[my_security_get_formdata] Script Date: 02.12.2016 09:08:54 ******/
DROP PROCEDURE [dbo].[my_security_get_formdata]
GO
/****** Object: StoredProcedure [dbo].[my_security_get_formdata] Script Date: 02.12.2016 09:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[my_security_get_formdata]
@formname VARCHAR(255)
AS
BEGIN
SELECT * FROM securityobject WHERE aktiv=1 AND SecurityForm=@formname
END
GO