USP_MKTSEGMENTATIONEXPORTPROCESS_DELETE
Executes the "Marketing Effort Export Process: Delete" record operation.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | Input parameter indicating the ID of the record being deleted. |
@CHANGEAGENTID | uniqueidentifier | IN | Input parameter indicating the ID of the change agent invoking the delete. |
Definition
Copy
CREATE procedure dbo.[USP_MKTSEGMENTATIONEXPORTPROCESS_DELETE]
(
@ID uniqueidentifier,
@CHANGEAGENTID uniqueidentifier
)
as begin
set nocount on
--exec dbo.[USP_MKTSEGMENTATIONEXPORTPROCESS_DELETEBYID_WITHCHANGEAGENTID] @ID, @CHANGEAGENTID
-- this process is no longer allowed to be deleted!
-- it is only deleted when the mailing is deleted, like the activation process
exec dbo.[USP_RAISE_ERROR];
return 1;
end