sample code
DECLARE @StudentVariable AS StudentType -- StudentType is a UDT with columns ID, Name and Fee
INSERT INTO @StudentVariable ([StudentID], [StudentName], [StudentFees]) VALUES(1,'Smith','20000')
--Before executing SP, we need to hold the input data (table data) in some table variable(i.e. @StudentVariable )
EXEC dbo.StudentDetailProcedure @StudentVariable