Beautifier and Collections in Packages

I am having a very frustrating issue with collections. I am assigning values in my package but because of the way that the formatter does collections I cannot see the value while debugging. The beautifier puts it as:
l_tab(l_cnt).v_cell_phone := l_tab(l_cnt)
.v_bnr_cell_phone;

instead of:
l_tab(l_cnt).v_cell_phone := l_tab(l_cnt).v_banr_cell_phone;

Is there a setting that I am missing to keep the beautifier from doing this?

Help is always appreciated!!
 
You can try to suppress formatting for this piece of code.
From the manual.pdf:
25.4 Suppressing formatting
If you have a piece of PL/SQL code that you want to manually format, and therefore suppress formatting by the PL/SQL Beautifier, you can use the NoFormat Start and NoFormat End directives. For example:
...
TimeOut := 1000;
-- NoFormat Start
DBMS_Alert.WaitOne('SHUTDOWN',
Message, Status,
TimeOut);
-- NoFormat End
if Status = 0 then
...
Hope this helps.
 
Back
Top