I have the following structure:
A package PCK_LANCAMENTOSERVICO within a procedure called P_Integra.
This procedure calls another procedure in another package PCK_LANCAMENTO called P_BeforeLancamento
The procedure P_BeforeLancamento calls another procedure called P_ProximoLanc in PCK_UTIL
I'm debugging the P_Integra(PCK_LANCAMENTOSERVICO) procedure. If a put a breakpoint in P_Integra procedure, this works ok. If a put a breakpoint in P_ProximoLanc procedure, this works fine. But if a put a brekpoint in P_BeforeLancamento, the debugger doesn't stop on breakpoint.
I added debug information in all packages. The package PCK_LANCAMENTOSERVICO has 500 lines. The package PCK_LANCAMENTO has 4000 lines and the package PCK_UTIL has 300 lines.
The debugger doesn't work in SQL Developer neither in PL/SQL Developer.
Is there a know issue about this? Size of package? Or another thing?
Thanks a lot
André