UFN_MERCHANDISE_GETNEWPRODUCTINSTANCEOPTIONS

Returns the available options for a new product instance.

Return

Return Type
table

Parameters

Parameter Parameter Type Mode Description
@MERCHANDISEPRODUCTID uniqueidentifier IN

Definition

Copy


CREATE function dbo.UFN_MERCHANDISE_GETNEWPRODUCTINSTANCEOPTIONS(@MERCHANDISEPRODUCTID uniqueidentifier)
returns table as
  return
        select
          OPTIONNAME,
          OPTIONID
        from dbo.UFN_MERCHANDISE_GETNEWPRODUCTINSTANCEOPTIONS_2(@MERCHANDISEPRODUCTID)