Error Compress File

Hi,
i try to compress file to will import.

My FDT:

Level I Name I Length I Format I Options I Flags I Encoding

1 I AA I 6 I U I I I
1 I AB I 50 I A I I I
1 I AC I 70 I A I I I
1 I AD I 60 I W I DE,UQ I I
1 I AE I 8 I P I I I

My File (TXT) sample (1 line), separator = “;”

123456;
12345678901234567890123456789012345678901234567890;1234567890123456789012345678901234567890123456789012345678901234567890;
123456789012345678901234567890123456789012345678901234567890;
0;

But there are error in field AE.

As I fill a field format U length 6? in TXT file

Format “P” is packed decimal, not text. You would need to use a hex editor to put the packed values in a text file. 8P will occupy 5 bytes. For example, 12345678 will be stored as x’012345678C’

Thanks.

Hi.

One more question in compress file.

A have:
1 I AA I 6 I U I I I
1 I AB I 50 I A I I I
1 I AC I 70 I A I I I
1 I AD I 60 I W I DE,UQ I I

In my file TXT:
000001;CLAUDIO;JOAO;PEDRO;

but it shows an error:
input record is too short.

Now i write new file TXT:
000001;CLAUDIO …(blank space);JOAO … (blank space);PEDRO … (blank space);

there is an option that is not necessary to format the columns with spaces?