2007 Apr 19 11:57 AM
Hi all,
I have a problem in Tranfering data into the application server when i do that data is getting trucated.Is there any length restriction ? could anyone tell us the reason why it's happening so...
OPEN DATASET V_FILENAME FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
IF NOT SY-SUBRC IS INITIAL.
MESSAGE E000 WITH TEXT-026.
EXIT.
ENDIF.
TRANSFER V_LINEOUT TO V_FILENAME length 3000.
Thanks,
SriRatna
2007 Apr 19 12:05 PM
dont specify the length explictly
TRANSFER V_LINEOUT TO V_FILENAME
Hi all,
I have a problem in Tranfering data into the application server when i do that data is getting trucated.Is there any length restriction ? could anyone tell us the reason why it's happening so...
OPEN DATASET V_FILENAME FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
IF NOT SY-SUBRC IS INITIAL.
MESSAGE E000 WITH TEXT-026.
EXIT.
ENDIF.
TRANSFER V_LINEOUT TO V_FILENAME length 3000.
Thanks,
SriRatna
2007 Apr 19 12:05 PM
dont specify the length explictly
TRANSFER V_LINEOUT TO V_FILENAME
2007 Apr 19 12:07 PM
what is the length of V_LINEOUT ?
If length of V_LINEOUT is more than 3000 data gets truncated.
dont specify that
just use
TRANSFER V_LINEOUT to V_FILE.
null
2007 Apr 19 12:19 PM
Hi ,
V_LINEOUT length is less than 1000 only.Though we don't specify the length data is getting truncated.
Thanks,
Sriratna
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |