ScrewTurn Wiki

Edit

wikibot

Functiondbo.ufnGetProductListPrice
DescriptionScalar function returning the list price for a given product on a particular order date.

Edit

Source

CREATE FUNCTION [dbo].[ufnGetProductListPrice](@ProductID [int], @OrderDate [datetime])
RETURNS [money] 
AS 
BEGIN
    DECLARE @ListPrice money;

    SELECT @ListPrice = plph.[ListPrice] 
    FROM [Production].[Product] p 
        INNER JOIN [Production].[ProductListPriceHistory] plph 
        ON p.[ProductID] = plph.[ProductID] 
            AND p.[ProductID] = @ProductID 
            AND @OrderDate BETWEEN plph.[StartDate] AND COALESCE(plph.[EndDate], CONVERT(datetime, '99991231', 112)); -- Make sure we get all the prices!

    RETURN @ListPrice;
END;

Edit

References

Dependency TypeObject TypeReferenced Object
SelectTableProduction.Product
SelectTableProduction.ProductListPriceHistory

Edit

automatically generated

function dbo.ufnGetProductListPrice
DescriptionScalar function returning the list price for a given product on a particular order date.


CREATE FUNCTION [dbo].[ufnGetProductListPrice](@ProductID [int], @OrderDate [datetime])
RETURNS [money] 
AS 
BEGIN
    DECLARE @ListPrice money;

    SELECT @ListPrice = plph.[ListPrice] 
    FROM [Production].[Product] p 
        INNER JOIN [Production].[ProductListPriceHistory] plph 
        ON p.[ProductID] = plph.[ProductID] 
            AND p.[ProductID] = @ProductID 
            AND @OrderDate BETWEEN plph.[StartDate] AND COALESCE(plph.[EndDate], CONVERT(datetime, '99991231', 112)); -- Make sure we get all the prices!

    RETURN @ListPrice;
END;

Dependency TypeObject TypeReferenced Object
SelectTableProduction.Product
SelectTableProduction.ProductListPriceHistory

ScrewTurn Wiki version 2.0.36. Some of the icons created by FamFamFam.