UFN_BUSINESSPROCESSCOMMPREF_GETINCLUSIONS
Returns business process communication preferences inclusion solicit codes.
Return
| Return Type |
|---|
| table |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @BUSINESSPROCESSPARAMETERSETID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_BUSINESSPROCESSCOMMPREF_GETINCLUSIONS
(
@BUSINESSPROCESSPARAMETERSETID uniqueidentifier
)
returns table
as
return(select
ID,
SOLICITCODEID
from dbo.BUSINESSPROCESSCOMMPREFINCLUSIONS
where BUSINESSPROCESSPARAMETERSETID = @BUSINESSPROCESSPARAMETERSETID)