‎2007 Jul 02 5:55 AM
Hi All,
I need to send data to Application Server. Each record should be length 504. But i am not able to send data more than 255 characters in length in a single line.
Is there any way to send more than 255 characters in a single record(single line) to the Application server.
Thanks
Arun
‎2007 Jul 02 6:00 AM
Application Server File will be stored upto the maximum length,
but we can not view the length more than 255 charecters
OPEN DATASET outfile_fcsr FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
LOOP AT t_zdlqran3.
TRANSFER t_zdlqran3 TO outfile_fcsr LENGTH 700.
ENDLOOP.
CLOSE DATASET outfile_fcsr.
‎2007 Jul 02 6:00 AM
Application Server File will be stored upto the maximum length,
but we can not view the length more than 255 charecters
OPEN DATASET outfile_fcsr FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
LOOP AT t_zdlqran3.
TRANSFER t_zdlqran3 TO outfile_fcsr LENGTH 700.
ENDLOOP.
CLOSE DATASET outfile_fcsr.