Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- select E.DTAENTRADASAIDA DTAENTRADA
- ,E.NROEMPRESA
- ,E.SEQPRODUTO
- ,t.desccompleta produto
- ,(SELECT M.DESCRICAO FROM MAX_ATRIBUTOFIXO M
- WHERE M.TIPATRIBUTOFIXO LIKE 'MOTIVOMOVIMENTACAO%'
- AND M.SEQATRIBUTOFIXO = E.MOTIVOMOVTO) MOTIVO
- from mrl_lanctoestoque e
- ,map_produto t
- where t.seqproduto = e.seqproduto
- and e.seqmovtoestq in ( select max(a.seqmovtoestq)
- from mrl_lanctoestoque a, mrl_local o
- where a.seqproduto = e.seqproduto
- and a.nroempresa = e.nroempresa
- and a.nroempresa = o.nroempresa
- and a.local = o.seqlocal
- and o.status = 'A'
- and o.local = 'TROCA'
- and a.tiplancto = 'E'
- and a.tipusocgo = 'I'
- )
- and e.seqproduto In ( 172,175 )
- and exists ( select p.seqproduto from mrl_produtoempresa p
- where p.seqproduto = e.seqproduto
- and p.nroempresa = e.nroempresa
- and p.estqtroca > 0);
- SELECT M.DESCRICAO FROM MAX_ATRIBUTOFIXO M
- WHERE M.TIPATRIBUTOFIXO LIKE 'MOTIVOMOVIMENTACAO%'
- AND M.SEQATRIBUTOFIXO =
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement