cancel
Showing results for 
Search instead for 
Did you mean: 

Data set char Length.

Former Member
0 Kudos
76

Dear All,

I am Transferring file to data set. I can only transfer 144 chars.

How can I transfer data to Data set more then 144 chars.

Thanks,

Regards,

Venkat

Accepted Solutions (0)

Answers (1)

Answers (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

Why don't you post a sample of your coding. We can't much from just your description alone. Are you transfering a string? Or looping through a table?

Former Member
0 Kudos

Hello Thomas Jung,

I am Transfering a string.

x_content is XSTRING here.

DATA: FNAME TYPE STRING.

fname = 'Y:\INTERFACE\'.

concatenate: fname filepath into fname.

open dataset fname for output in binary mode.

transfer x_content to fname.

I think in AL11 in the desply I can see only 144 chars in a line.

Thanks,

Venkat

Former Member
0 Kudos

It is the problem with disply.

Regards,

Venkat