SourceCode/PROMS/SQL/TestPasteSibBef.sql

26 lines
964 B
Transact-SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

USE [VEPROMS]
DECLARE @RC int
DECLARE @ItemID int
DECLARE @StartItemID int
DECLARE @Type int
DECLARE @DTS datetime
DECLARE @UserID nvarchar(100)
DECLARE @NewItemID int
-- TODO: Set parameter values here.
SET @ItemID = 4642
SET @StartItemID = 4601
SET @Type = 20002
SET @DTS = getdate()
SET @UserID = 'Kathy'
EXECUTE @RC = [VEPROMS].[dbo].[PasteItemSiblingBefore]
@ItemID
,@StartItemID
,@Type
,@DTS
,@UserID
,@NewItemID OUTPUT
USE [MASTER]