2007 Jan 23 11:32 AM
hai all
i want to upload one field which has 300 chars. so in database i have two fields
so ineed to split that string 300 chars into 150 and 150 chars and passed to different fields in table using lsmw
please help
hai all
i want to upload one field which has 300 chars. so in database i have two fields
so ineed to split that string 300 chars into 150 and 150 chars and passed to different fields in table using lsmw
please help
2007 Jan 23 11:34 AM
Use the code:
v_var(150): First 150 characters
v_var+150: Last 150 characters
Manoj
2007 Jan 23 11:36 AM
data : c1(300),
c2(150),
c3(150).
*assume c1 contains 300 characters
c2 = c1+0(150).
c3 = c1+150(150)
move c2 and c3 values to u r database table fields
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |