Hi experts,
I am looking into a simple concatenating logic.
User enters more than one option in selection box.
I want to display as
Sel1,Sel2,Sel3
I try way as given below but every time workspace variable bus_areas get clear and i retain only last value followed by a comma.
Data :bus_areas(60) type C.
loop at s_gsber.
concatenate s_gsber-LOW ',' into bus_areas.
endloop.
How can i achieve SEL1,SEL2,SEL3