Beautifier Enhancement Request

mike

Member³
I would like the beautifier to not split up records.

For example - before the beautifier:

Code:
o_ee_bal           := l_balances(7).balance_value + l_balances(13).balance_value + l_balances(14).balance_value +
                               zben_pension_common.prior_adjustments(i_person_id, 'EE', i_start_date, i_balance_end_date);
After the Beautifier:

Code:
o_ee_bal           := l_balances(7).balance_value + l_balances(13).balance_value + l_balances(14)
                              .balance_value +
                               zben_pension_common.prior_adjustments(i_person_id, 'EE', i_start_date, i_balance_end_date);
Note that l_balances(14).balance_value is now split up and I would prefer it to not be.

Thanks,

Mike
 
@Marco

Just tried copy/pasting the above example and beautifying it in version 7.1.5.1397. Result is still incorrect (see below)

Code:
BEGIN
  o_ee_bal := l_balances(7).balance_value + l_balances(13)
             .balance_value + l_balances(14)
             .balance_value +
              zben_pension_common.prior_adjustments(i_person_id
                                                   ,'EE'
                                                   ,i_start_date
                                                   ,i_balance_end_date);
END;
 
Tried example in version 7.1.5.1398. Result is still incorrect:

Code:
BEGIN
  O_EE_BAL := L_BALANCES(7).BALANCE_VALUE + L_BALANCES(13)
             .BALANCE_VALUE + L_BALANCES(14)
             .BALANCE_VALUE +
              ZBEN_PENSION_COMMON.PRIOR_ADJUSTMENTS(I_PERSON_ID,
                                                    'EE',
                                                    I_START_DATE,
                                                    I_BALANCE_END_DATE);
END;
 
Back
Top