spGetUserImportExceptions
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@IMPORTID | int | IN |
Definition
Copy
CREATE PROCEDURE [dbo].[spGetUserImportExceptions]
(
@IMPORTID int
)
AS
SELECT [RowIndex], [Username], [StatusTxt]
FROM [UserImportMasterList] where [UserImportID]=@IMPORTID and [Status] >0 order by [rowIndex]