Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Transfer data to Application Server

Former Member
0 Likes
352

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
309

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.

1 REPLY 1
Read only

Former Member
0 Likes
310

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.