2007 Mar 22 6:50 AM
Hi,
REPORT zprograma.
data :s1(18) type c,
s2(10) type c,
s3 type string.
s1 = 'abap'.
s2 = 'objects'.
concatenate s1 s2 into s3 separated by space.
write s3.
Output: abap objects
My requirement is to get Output as:
"abap objects"
The second string should start at 19th position rather than start as 6th position.
Could u pls help me to clear on this.
Thanks
Bala Raja
2007 Mar 22 6:57 AM
Hi ,
Please use shift for s1 and s2 so that your position is altered as required and then pass them to the third string .
Thanks .
Hi ,
Please use shift for s1 and s2 so that your position is altered as required and then pass them to the third string .
Thanks .
2007 Mar 22 6:57 AM
Hi ,
Please use shift for s1 and s2 so that your position is altered as required and then pass them to the third string .
Thanks .
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |