Beautifier DECL1 :
This what i liked too DECL2 :
You see the aligned Assignment, and ...
i would like to that constants/Type/SubTypes identifiers are uppercased.
DECL2 is much more readable for me!
Carl
Code:
cn_hplf_empfang_bezug CONSTANT t_bezug := 'E';
cn_hplf_versand_bezug CONSTANT t_bezug := 'V';
cn_zust_bezug CONSTANT t_bezug := 'Z';
cn_sepo_bezug CONSTANT t_bezug := 'S';
cn_efzu_bezug CONSTANT t_bezug := 'B';
Code:
CN_HPLF_EMPFANG_BEZUG CONSTANT T_BEZUG := 'E';
CN_HPLF_VERSAND_BEZUG CONSTANT T_BEZUG := 'V';
CN_ZUST_BEZUG CONSTANT T_BEZUG := 'Z';
CN_SEPO_BEZUG CONSTANT T_BEZUG := 'S';
CN_EFZU_BEZUG CONSTANT T_BEZUG := 'B';
i would like to that constants/Type/SubTypes identifiers are uppercased.
DECL2 is much more readable for me!
Carl