Say for an example if I created a procedure like below
CREATE PROCEDURE GETVALUES (@id INT)
AS
  BEGIN
      SELECT *
      INTO   #TEMPTABLE
      FROM   products
      WHERE  id = @id
      SELECT *
      FROM   #TEMPTABLE
      DROP TABLE #TEMPTABLE
  END  
If this procedure is run simultaneously by 3 or 4 users then will the data in #temptable collapse with other calls?