spDelete_ClientUserMailForwarding
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @PKID | int | IN | |
| @CurrentUsersID | int | IN |
Definition
Copy
CREATE PROCEDURE [dbo].[spDelete_ClientUserMailForwarding]
(
@PKID int,
@CurrentUsersID int
)
AS
BEGIN
declare @Guid uniqueidentifier
begin transaction
DELETE FROM [ClientUserMailForwarding] WHERE [ID] = @PKID
commit
RETURN
END