UFN_RELATIONSHIP_VALIDRECEIVESREPORTCARD

Validates the 'receives report card' relationship between a student and an individual/faculty.

Return

Return Type
bit

Parameters

Parameter Parameter Type Mode Description
@RELATIONSHIPCONSTITUENTID uniqueidentifier IN
@RECIPROCALCONSTITUENTID uniqueidentifier IN

Definition

Copy


create function dbo.UFN_RELATIONSHIP_VALIDRECEIVESREPORTCARD
(
    @RELATIONSHIPCONSTITUENTID uniqueidentifier,
    @RECIPROCALCONSTITUENTID uniqueidentifier
)
returns bit
with execute as caller
as begin

    -- should only be between individual -> student.

    return dbo.UFN_RELATIONSHIP_ISINDIVIDUALTOSTUDENT(@RELATIONSHIPCONSTITUENTID, @RECIPROCALCONSTITUENTID);
end