USP_DATALIST_APPEALPROFILEREPORT_BENEFITS
Returns benefits tied to a given appeal for displaying in a sub-report in Appeal Profile.
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @APPEALID | uniqueidentifier | IN | Appeal ID |
| @SHOW | bit | IN | Show |
| @CURRENCYCODE | tinyint | IN | Currency |
Definition
Copy
CREATE procedure dbo.USP_DATALIST_APPEALPROFILEREPORT_BENEFITS
(
@APPEALID uniqueidentifier = null,
@SHOW bit = null,
@CURRENCYCODE tinyint = null
)
as
set nocount on;
exec dbo.USP_REPORT_APPEALPROFILE_BENEFITS @APPEALID, @SHOW, @CURRENCYCODE
return 0;