UFN_BATCHEVENT_GETCOORDINATORS

Returns all coordinators for a given batch event record.

Return

Return Type
table

Parameters

Parameter Parameter Type Mode Description
@BATCHEVENTID uniqueidentifier IN

Definition

Copy


create function dbo.UFN_BATCHEVENT_GETCOORDINATORS
(
    @BATCHEVENTID uniqueidentifier
) returns table as
    return (
        select
            ID,
            CONSTITUENTID
        from
            dbo.BATCHEVENTCOORDINATOR
        where
            BATCHEVENTID = @BATCHEVENTID
    );