UFN_POSTTOGLPROCESS_CUSTOMIZE

Table function to allow customization of the post process

Return

Return Type
table

Parameters

Parameter Parameter Type Mode Description
@InRecords UDT_GENERICIDANDBIT IN
@ID uniqueidentifier IN

Definition

Copy


    CREATE function [dbo].[UFN_POSTTOGLPROCESS_CUSTOMIZE]
    (@InRecords UDT_GENERICIDANDBIT readonly, @ID uniqueidentifier)
    returns @WORKTABLE table
        (
        GLTRANSACTIONID uniqueidentifier
        )            
    with execute as caller
    as
    begin
    /* Products - DO NOT EDIT THIS FUNCTION!  It is only for users to customize their post process*/
    /* This is a default that just returns the input records */

    insert into @WORKTABLE (GLTRANSACTIONID)
    select ID from @InRecords

    return
    end