Advertisement
geracino

script 02

Jul 13th, 2023
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1.  
  2. select E.DTAENTRADASAIDA DTAENTRADA
  3. ,E.NROEMPRESA
  4. ,E.SEQPRODUTO
  5. ,t.desccompleta produto
  6. ,(SELECT M.DESCRICAO FROM MAX_ATRIBUTOFIXO M
  7. WHERE M.TIPATRIBUTOFIXO LIKE 'MOTIVOMOVIMENTACAO%'
  8. AND M.SEQATRIBUTOFIXO = E.MOTIVOMOVTO) MOTIVO
  9.  
  10. from mrl_lanctoestoque e
  11. ,map_produto t
  12. where t.seqproduto = e.seqproduto
  13. and e.seqmovtoestq in ( select max(a.seqmovtoestq)
  14. from mrl_lanctoestoque a, mrl_local o
  15. where a.seqproduto = e.seqproduto
  16. and a.nroempresa = e.nroempresa
  17. and a.nroempresa = o.nroempresa
  18. and a.local = o.seqlocal
  19. and o.status = 'A'
  20. and o.local = 'TROCA'
  21. and a.tiplancto = 'E'
  22. and a.tipusocgo = 'I'
  23. )
  24. and e.seqproduto In ( 172,175 )
  25. and exists ( select p.seqproduto from mrl_produtoempresa p
  26. where p.seqproduto = e.seqproduto
  27. and p.nroempresa = e.nroempresa
  28. and p.estqtroca > 0);
  29.  
  30. SELECT M.DESCRICAO FROM MAX_ATRIBUTOFIXO M
  31. WHERE M.TIPATRIBUTOFIXO LIKE 'MOTIVOMOVIMENTACAO%'
  32. AND M.SEQATRIBUTOFIXO =
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement