2007 Nov 01 4:17 PM
Hi,
report zars no standard page heading
line-size 170
line-count 65(4).
data: begin of d1600,
field1(5),
field2(10),
field3(3).
data: end of d1600.
move '1' to d1600-field1. " Only 1
move ' 3' to d1600-field3. " Space and 3
concatenate d1600 space into d1600.
condense d1600 no-gaps.
.
After concatenate result showing like
FIELD1 1
FIELD2
FIELD3 3
After condense system showing like
FIELD1 13
FIELD2
FIELD3
But i want the results after condense this way
FIELD1 1 3
FIELD2
FIELD3
a®
Hi,
report zars no standard page heading
line-size 170
line-count 65(4).
data: begin of d1600,
field1(5),
field2(10),
field3(3).
data: end of d1600.
move '1' to d1600-field1. " Only 1
move ' 3' to d1600-field3. " Space and 3
concatenate d1600 space into d1600.
condense d1600 no-gaps.
.
After concatenate result showing like
FIELD1 1
FIELD2
FIELD3 3
After condense system showing like
FIELD1 13
FIELD2
FIELD3
But i want the results after condense this way
FIELD1 1 3
FIELD2
FIELD3
a®
2007 Nov 01 4:23 PM
remove no-gaps from the below statement
condense d1600 no-gaps.
Reward if it helps,
Satish
2007 Nov 01 4:24 PM
2007 Nov 01 4:24 PM
2007 Nov 01 4:24 PM
try this instead..
report zars no standard page heading
line-size 170
line-count 65(4).
data: begin of d1600,
field1(5),
field2(10),
field3(3).
data: end of d1600.
move '1' to d1600-field1. " Only 1
move ' 3' to d1600-field3. " Space and 3
concatenate d1600-field1 d1600-field3 into d1600-field1.
clear d1600-field3.
~Suresh
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |