Enhancement Request : Beautifier Options Uppercase for Constants and Exceptions

orca777

Member³
Hi,
Beautified Code

Code:
EXCEPTION
          WHEN no_data_found THEN
            lb_h_saetze_notwendig := FALSE;
            --dann gibt es naemlich keine Saetze in HPLF
          WHEN e_h_saetze_notwendig THEN
            lb_h_saetze_notwendig := TRUE;
            EXIT;
        END bl_1;
Code i wished ...

Code:
EXCEPTION
          WHEN NO_DATA_FOUND THEN
            lb_h_saetze_notwendig := FALSE;
            --dann gibt es naemlich keine Saetze in HPLF
          WHEN E_H_SAETZE_NOTWENDIG THEN
            lb_h_saetze_notwendig := TRUE;
            EXIT;
        END bl_1;
Exceptions and constants are a special group of identiefiers.

Carl
 
One of the PL/SQL Beautifier Rules you can define is the "Special Case" word list. Here you can can enter NO_DATA_FOUND, VALUE_ERROR, and so on. For program specific constants this will not be useful of course.

I have added your suggestion to the list of enhancement requests though.
 
We have no short term plans for this. Right now you will still have to use the "Special Case" word list.
 
Back
Top