Beautifier Problem 1

Killservice

Member²
Hello,

I don't know if this Problem is only pld 4b5 Problem or other Versions to.
if you beautifie this code

Code:
DECLARE
  TYPE t_record IS RECORD(
     var1      NUMBER(3)
    ,variable2 VARCHAR2(100)
    ,var_3     NUMBER(1)
    ,var_4_id  VARCHAR2(5));

  TYPE t_sa_33_tar IS TABLE OF t_record;
  io_t_sa_33_tar t_sa_33_tar;
  l_rec_ris      t_record;
BEGIN
  io_t_sa_33_tar(io_n_idx).var1 := l_rec_ris.var1;
  io_t_sa_33_tar(io_n_idx).variable2 := l_rec_ris.variable2;
  io_t_sa_33_tar(io_n_idx).var_3 := l_rec_ris.var_3;
  io_t_sa_33_tar(io_n_idx).var_4_id := l_rec_ris.var_4_id;
END;

You don't have all ":=" equal justified.
I expect somthing like that

Code:
DECLARE
  TYPE t_record IS RECORD(
     var1      NUMBER(3)
    ,variable2 VARCHAR2(100)
    ,var_3     NUMBER(1)
    ,var_4_id  VARCHAR2(5));

  TYPE t_sa_33_tar IS TABLE OF t_record;
  io_t_sa_33_tar t_sa_33_tar;
  l_rec_ris      t_record;
BEGIN
  io_t_sa_33_tar(io_n_idx).var1      := l_rec_ris.var1;
  io_t_sa_33_tar(io_n_idx).variable2 := l_rec_ris.variable2;
  io_t_sa_33_tar(io_n_idx).var_3     := l_rec_ris.var_3;
  io_t_sa_33_tar(io_n_idx).var_4_id  := l_rec_ris.var_4_id;
END;
 
Last edited:
Back
Top