Que tal
Estoy haciendo una TN para bloquear Pedidos de compras que no le hayan puesto indicador de impuestos a alguna partida, pero cuando agrego dos o más articulos, el sistema me marca el siguiente error:
[Microsoft][SQL Server Native Client 11.0][SQL Server]Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression. (CINF)
Me pueden orientar a resolver esto? Gracias!
Mi código es:
IF @Object_type = '22' AND @transaction_type IN ('A', 'U')
BEGIN
IF(SELECT T0.TaxCode TOP1 FROM POR1 T0
WHERE T0.DocEntry = @list_of_cols_val_tab_del) IS NULL
BEGIN
SET @Error = 1
SET @error_message = 'Te falta indicador de impuestos en alguna partida'
END
END