Bind variables formatting to upper case

maheshdm

Member
Hello there,
My organization's coding standards says all bind Variables and apex items should be in Upper Case in SQLs. Since I work many times on Apex SQLs, I have lot of apex items
like :P1_USER_ID or :P10_ITEM_NO, etc. Can you please somebody guide me what pl/sql beautifier rule or any other pl/sql developer setting should be changed to format bind variables in upper case.
Thank you so much.
Good day.
 
There is currently no option for the PL/SQL Beautifier to convert bind variables specifically. You can only configure it to convert all identifiers to uppercase, including local variables, table names, column names, and so on.
 
Back
Top