USP_DATALIST_MERCHANDISEDEPARTMENTTAXES

Returns all taxes that apply to merchandise if the merchandise department is taxable.

Parameters

Parameter Parameter Type Mode Description
@MERCHANDISEDEPARTMENTID uniqueidentifier IN Input parameter indicating the context ID for the data list.

Definition

Copy


CREATE procedure dbo.USP_DATALIST_MERCHANDISEDEPARTMENTTAXES(@MERCHANDISEDEPARTMENTID uniqueidentifier)
as
    set nocount on;

    select
        cast(cast(0 as binary) as uniqueidentifier) as ID,
        null as NAME,
        null as TOTALTAX
    where
        0 = 1;

    return 0;