Reads zoned decimal data in which zeros have been left blank.
Category: | Numeric |
Interaction: | List input is incompatible with binary input when this informat is specified in an INFORMAT= statement or an ATTRIB= statement using the INFORMAT= argument. SAS issues a warning and uses formatted input to read the data. |
See: | ZDBw.d Informat: z/OS in SAS Companion for z/OS |
input @1 x s370fzdb8.;
Data Line 1
|
Result
|
---|---|
----+----1
|
|
40404040F14040C0
|
1000
|
4040404040F1F2D3
|
–123
|
1The data lines contain a hexadecimal representation of a binary number that is stored in zoned decimal format on an IBM mainframe operating environment. Two hexadecimal characters correspond to one byte of binary data, and each byte corresponds to one column of the input field. |