USP_DATALIST_RELATIONSHIPTREE
Lists all relationships for any given constituent.
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @CONSTITUENTID | uniqueidentifier | IN | Input parameter indicating the context ID for the data list. |
| @CURRENTAPPUSERID | uniqueidentifier | IN | Input parameter indicating the ID of the current user. |
Definition
Copy
create procedure dbo.USP_DATALIST_RELATIONSHIPTREE
(
@CONSTITUENTID uniqueidentifier,
@CURRENTAPPUSERID uniqueidentifier
) as
set nocount on;
exec dbo.USP_RELATIONSHIPTREE_GET @CONSTITUENTID, @CURRENTAPPUSERID