‎2009 Dec 04 12:32 PM
Hello Fellas ...
I'm creating a file that must have 350 positions. The last field, that is called observation, has a 45 postions.
The problem is:
If that field do not have 45 postions, the file is generated with with less than 350 postions.
Look at my code and see if there is something wrong:
CONCATENATE filename file_number file_ext INTO file.
OPEN DATASET file FOR OUTPUT IN TEXT MODE
ENCODING NON-UNICODE IGNORING CONVERSION ERRORS.
DATA: trans_file TYPE string.
TRANSFER trans_file TO file LENGTH cg_350.
Thx for any help ...
‎2009 Dec 04 12:38 PM
Hello Bruno,
If you are meaning positions as the length of the file, and if you are checking the file in AL11, there is a limitation that only 255 characters per line will be displayed, though it doesnt mean that data is not written to the file. You can confirm this by downloading the AL11 file using the transaction CG3y.
Vikranth
‎2009 Dec 04 12:38 PM
Hello Bruno,
If you are meaning positions as the length of the file, and if you are checking the file in AL11, there is a limitation that only 255 characters per line will be displayed, though it doesnt mean that data is not written to the file. You can confirm this by downloading the AL11 file using the transaction CG3y.
Vikranth
‎2009 Dec 04 1:00 PM
Ow man ...
You are right. Upload file from AL11 makes the file wrong. Thx!!