Files
GMW/GMW_DB/dmtx/Stored Procedures/stp_verificaDtx.sql
T
Samuele Locatelli e7da820ab0 pulizia codice SQL x maiuscole/minuscole
fix webconfig 218_test
2014-05-20 08:19:05 +02:00

26 lines
572 B
Transact-SQL

/*************************************************
* STORED stp_verificaDtx
*
* verifica il DataMatrix se presente nella tab dei cartellini acquisiti ed OK
*
* Steamware, S.E.L.
* mod: 2014.03.07
*
*************************************************/
CREATE PROCEDURE [dmtx].[stp_verificaDtx]
(
@DataMatrix NVARCHAR(50)
-- ,@Esito NVARCHAR(5) OUTPUT
)
AS
-- resetto esito!
DECLARE @Esito NVARCHAR(5) = NULL
-- calcolo!
SELECT @Esito = EsitoMarcatura
FROM dmtx.v_ElencoDatamatrixBMW AS Dtx
WHERE DataMatrix = @DataMatrix
SELECT ISNULL(@Esito,'ND') as StatoDtx
RETURN