Hi All,
I am trying to send some data into application server. The file contains a field of length 435 characters. But when i am tranfering i can see only 248 characters in the file(in application server).
Is this is a limitation or am i doing any thing wrong..!!
I am sending data in text mode. and also specified the length.
<u>my coding:</u>
<b>open dataset LOGFILE_GOR for output in text mode encoding default.
loop at lt_upload into ls_upload.
transfer ls_upload to LOGFILE_GOR length 435.
endloop.
Close dataset LOGFILE_GOR.</b>
While i am writing using write statements i can see the all data(435 characters). But when i am transfering i can see only first 248 chars.
Please give some suggitions how to fix this.
Thanks in advance.
Srini