1 When the macro has four dots, the order of resolution is: 2 &&_uniqDbTable&_n....clnt_nr 3 &_uniqDbTable1...clnt_nr (break down: two && to one & and 4 dots to 3 dots) 4 V_HM_CE_CUST_ATTR ..clnt_nr (break down: one & is dropped and 1 dot is dropped) - so result is two dots 5 When the macro has 3 dots, the order of resolution is: 6 &&_uniqDbTable&_n...clnt_nr 7 &_uniqDbTable1..clnt_nr (break down: two && to one & and 3 dots to 2 dots) 8 V_HM_CE_CUST_ATTR.clnt_nr (one & is dropped) - so result is one dot Note: numbers on 1st position on each line designates line number. Observe that in line 3 when 3 dots are present, there is only one &, but, in line 6 when 3 dots are present, there are two &. Hope, that makes sense.
... View more