USP_POSTTOGLPROCESS_CUSTOMPREPOST

Parameters

Parameter Parameter Type Mode Description
@POSTTOGLPROCESSID uniqueidentifier IN

Definition

Copy


create procedure dbo.USP_POSTTOGLPROCESS_CUSTOMPREPOST
(
    @POSTTOGLPROCESSID uniqueidentifier
)
as
    set nocount on;
    -- This sp is for Professional Services to create custom prepost operations

    -- Add custom routines here   

    -- Product Development should NOT alter this spec


    return 0;