UFN_MERCHANDISEPRODUCTINSTANCE_BUILDDESCRIPTION

Returns a description composed of a product name and any sale options configured for the instance.

Return

Return Type
nvarchar(150)

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


        CREATE function dbo.UFN_MERCHANDISEPRODUCTINSTANCE_BUILDDESCRIPTION(@ID uniqueidentifier)
        returns nvarchar(150)
        with execute as caller
        as begin
            return (
                select dbo.UFN_MERCHANDISEPRODUCTINSTANCE_BUILDDESCRIPTION_2(@ID, 1)
            )
        end