Executing the function with the table type and parameter
use prism
DECLARE @Variable AS audit.ChangeRequestActivityQueueType
INSERT INTO @Variable([ChangeRequestId],[Guid],[Timestamp],[ChangeRequestHistoryTransactionId],[CommentHistoryId])
VALUES(12345,NEWID ( ),'2-21-2020',12345,12345)
SELECT * from [audit].[GetChangeRequestSecurityUpdateActivities](@StudentVariable)
DECLARE @Variable AS audit.ChangeRequestActivityQueueType
INSERT INTO @Variable([ChangeRequestId],[Guid],[Timestamp],[ChangeRequestHistoryTransactionId],[CommentHistoryId])
VALUES(12345,NEWID ( ),'2-21-2020',12345,12345)
SELECT * from [audit].[GetChangeRequestSecurityUpdateActivities](@StudentVariable)
Comments
Post a Comment