joeroe3380
MIS
HI gurus!
I have a input file as follows:
nvl(BIN_NBR, ' ') ,
ACTN_CD ,
nvl(NBR, ' ') ,
DC_ACTN_CD ,
SORT_ID ,
ID_ACTN_CD ,
S_ID ,
CN_ID ,
ASD_CNT ,
nvl(COFG_CD, 0) ,
SPRINT_CD_ACTN_CD ,
my desired output is :
nvl(BIN_NBR, ' '),
ACTN_CD,
nvl(NBR, ' '),
DC_ACTN_CD,
SORT_ID,
ID_ACTN_CD,
S_ID,
CN_ID,
ASD_CNT,
nvl(COFG_CD, 0),
SPRINT_CD_ACTN_CD,
That is the comma (,) should be appended at the end of each statement whereas in the original input i have spaces between the two.
Please advice on how to achieve this.
Thanks
Roe
I have a input file as follows:
nvl(BIN_NBR, ' ') ,
ACTN_CD ,
nvl(NBR, ' ') ,
DC_ACTN_CD ,
SORT_ID ,
ID_ACTN_CD ,
S_ID ,
CN_ID ,
ASD_CNT ,
nvl(COFG_CD, 0) ,
SPRINT_CD_ACTN_CD ,
my desired output is :
nvl(BIN_NBR, ' '),
ACTN_CD,
nvl(NBR, ' '),
DC_ACTN_CD,
SORT_ID,
ID_ACTN_CD,
S_ID,
CN_ID,
ASD_CNT,
nvl(COFG_CD, 0),
SPRINT_CD_ACTN_CD,
That is the comma (,) should be appended at the end of each statement whereas in the original input i have spaces between the two.
Please advice on how to achieve this.
Thanks
Roe