USP_RELATIONSHIP_GETCONSTITUENTS
Returns constituent information for a given relationship.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@RELATIONSHIPID | uniqueidentifier | IN |
Definition
Copy
create procedure dbo.USP_RELATIONSHIP_GETCONSTITUENTS
(
@RELATIONSHIPID uniqueidentifier
)
as
begin
select * from dbo.UFN_RELATIONSHIP_GETCONSTITUENTS(@RELATIONSHIPID)
end