I just wanted to know if it's possible to configure beautifier to convert this:
into this:
The differences are the function parameters all aligned, and the return statement in a new line.
Thanks,
Code:
FUNCTION item_add(o_error_message IN OUT rtk_errors.rtk_key%TYPE,
o_seq_no IN OUT item_exp_head.item_exp_seq%TYPE,
i_item IN item_master.item%TYPE) RETURN BOOLEAN IS
into this:
Code:
FUNCTION item_add(o_error_message IN OUT rtk_errors.rtk_key%TYPE,
o_seq_no IN OUT item_exp_head.item_exp_seq%TYPE,
i_item IN item_master.item%TYPE)
RETURN BOOLEAN IS
The differences are the function parameters all aligned, and the return statement in a new line.
Thanks,