I have a transaction notification where it doesn't work no matter how many tweaks I make. SAP is version 10, if you test this same transaction on a SAP 9.3 it works without problems.
Can anyone tell me what could be happening?
if :object_type = '1470000113' and (:transaction_type = 'A' or :transaction_type = 'U' ) then
SELECT
count(1)
into error
from "OPRQ" T0
inner join "PRQ1" T1 on T1."DocEntry" = T0."DocEntry"
WHERE
T1."Usage" = '1'
and
T1."U_U_PosicaoEstoque" is null
and
T1."DocEntry" = :list_of_cols_val_tab_del;
IF(:error6> 0) THEN
error := 1;
error_message := 'Para esta utilização por gentileza preencher a Posição do Estoque!';
End if;
End if;