UFN_RELATIONSHIP_VALIDEMERGENCYCONTACT
Validates the emergency contact 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_VALIDEMERGENCYCONTACT
(
@RELATIONSHIPCONSTITUENTID uniqueidentifier,
@RECIPROCALCONSTITUENTID uniqueidentifier
)
returns bit
as begin
-- should only be between individual -> student.
return dbo.UFN_RELATIONSHIP_ISINDIVIDUALTOSTUDENT(@RELATIONSHIPCONSTITUENTID, @RECIPROCALCONSTITUENTID);
end