UFN_NON_NEGATIVE_WAITINGPERIOD
Checks to make sure that the waiting period of a tax claim is not negative
Return
Return Type |
---|
bit |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@WAITINGPERIOD | smallint | IN |
Definition
Copy
create function dbo.UFN_NON_NEGATIVE_WAITINGPERIOD
(
@WAITINGPERIOD smallint
)
returns bit
with execute as caller
as begin
if (@WAITINGPERIOD < 0)
return 0;
return 1;
end