Writes zoned decimal separate trailing-sign data in IBM mainframe format.
Category: | Numeric |
Alignment: | Left |
Interaction: | When the DECIMALCONV= system option is set to STDIEEE, the output that is written using this format might differ slightly from previous releases. For more information, see DECIMALCONV= System Option in SAS System Options: Reference. |
y=put (x,s370fzdt4.); ; put y $hex8.;
Value of
x |
Result 1
|
---|---|
123 |
F1F2F34E |
-123 |
F1F2F360 |
1The result is a hexadecimal representation of a binary number in zoned decimal format on an IBM mainframe computer. Each two hexadecimal characters correspond to one byte of binary data, and each byte corresponds to one column of the output field. |