USP_DATALIST_APPEALPROFILEREPORT_SOLICITORS
Returns all solicitors and their teams for an appeal.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@APPEALID | uniqueidentifier | IN | Appeal ID |
@SHOW | bit | IN | Show |
@CURRENTAPPUSERID | uniqueidentifier | IN | Input parameter indicating the ID of the current user. |
@CURRENCYCODE | tinyint | IN | Currency |
Definition
Copy
CREATE procedure dbo.USP_DATALIST_APPEALPROFILEREPORT_SOLICITORS
(
@APPEALID uniqueidentifier = null,
@SHOW bit = null,
@CURRENTAPPUSERID uniqueidentifier = null,
@CURRENCYCODE tinyint = null
)
as
set nocount on;
exec dbo.USP_REPORT_APPEALPROFILE_SOLICITORS @APPEALID, @SHOW, @CURRENTAPPUSERID, @CURRENCYCODE
return 0;