dbo.ufnGetSalesOrderStatusText
Documentation | AdventureWorks |
Schema | dbo |
Name | ufnGetSalesOrderStatusText |
Module | Sales |
Scalar function returning the text representation of the Status column in the SalesOrderHeader table.
Input/Output
Mode | Name | Data type | Description | |
---|---|---|---|---|
1 | OUT | Returns | nvarchar(15) | |
2 | IN | Status | tinyint | Input parameter for the scalar function ufnGetSalesOrderStatusText. Enter a valid integer. |
Input parameter for the scalar function ufnGetSalesOrderStatusText. Enter a valid integer. |
Script
CREATE FUNCTION [ufnGetSalesOrderStatusText](@Status [tinyint]) RETURNS [nvarchar](15) AS -- Returns the sales order status text representation for the status value. BEGIN DECLARE @ret [nvarchar](15); SET @ret = CASE @Status WHEN 1 THEN 'In process' WHEN 2 THEN 'Approved' WHEN 3 THEN 'Backordered' WHEN 4 THEN 'Rejected' WHEN 5 THEN 'Shipped' WHEN 6 THEN 'Cancelled' ELSE '** Invalid **' END; RETURN @ret END; |
Exported: 2019-02-04 23:13, Last imported: 2018-03-07 11:56