38 lines
1.0 KiB
Transact-SQL
38 lines
1.0 KiB
Transact-SQL
USE [FabApprovalSystem]
|
|
GO
|
|
/****** Object: StoredProcedure [dbo].[MRBInsertItem] Script Date: 11/21/2024 11:29:05 AM ******/
|
|
SET
|
|
ANSI_NULLS ON
|
|
GO
|
|
SET
|
|
QUOTED_IDENTIFIER ON
|
|
GO
|
|
-- =============================================
|
|
-- Author: <Author,,Name>
|
|
-- Create date: <Create Date,,>
|
|
-- Description: <Description,,>
|
|
-- =============================================
|
|
CREATE PROCEDURE [dbo].[MRBInsertItem] @MRBNumber INT OUT,
|
|
@OriginatorID INT AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from
|
|
-- interfering with SELECT statements.
|
|
SET
|
|
NOCOUNT ON;
|
|
|
|
-- Insert statements for procedure here
|
|
/****** Script for SelectTopNRows command from SSMS ******/
|
|
INSERT INTO
|
|
MRB (OriginatorID, Owner, CurrentStep)
|
|
VALUES
|
|
(@OriginatorID, @OriginatorID, 1)
|
|
SET
|
|
@MRBNumber = CAST(SCOPE_IDENTITY() AS INT) -- Enter default values for the Dispositions Items for the respective MRB
|
|
INSERT INTO
|
|
MRBDispositionByMRB (MRBNumber, DispositionType, DispositionName)
|
|
SELECT
|
|
@MRBNumber,
|
|
DispositionAlias,
|
|
DispositionName
|
|
FROM
|
|
MRBDispositionType
|
|
END
|
|
GO |