UFN_SALESORDER_GETREFUNDSTATUS
Returns the refund status of the sales order
Return
| Return Type |
|---|
| int |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_SALESORDER_GETREFUNDSTATUS
(
@ID uniqueidentifier
)
returns int
as begin
return (select REFUNDSTATUS from dbo.UFN_SALESORDER_GETREFUNDSTATUS_BULK() where ID = @ID);
end