Created
May 16, 2014 17:35
-
-
Save edumelzer/832746d553bc18bf091f to your computer and use it in GitHub Desktop.
Resolvendo no_data_found em Regras de cálculo após mudança na inicialização de pagamentos.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
while vcod_pagamento <= 999 loop | |
-- | |
begin | |
-- | |
ps_var.valor_pagamento(vcod_pagamento) := ps_var.valor_pagamento(vcod_pagamento); | |
-- | |
exception when no_data_found then | |
-- | |
ps_var.valor_pagamento(vcod_pagamento) := 0; | |
-- | |
end; | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment