spGetBackOfficeCodeTable
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@CodeTableID | int | IN |
Definition
Copy
CREATE PROCEDURE [dbo].[spGetBackOfficeCodeTable]
(
@CodeTableID int
)
AS
BEGIN
SELECT [XMLData] FROM dbo.BackOfficeCodeTables WHERE CodeTableID = @CodeTableID
RETURN
END