S370FZDUw.d Format

Writes unsigned zoned decimal 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.

Syntax

S370FZDUw.d

Syntax Description

w

specifies the width of the output field.

Default 8
Range 1–32

d

specifies to multiply the number by 10d. This argument is optional.

Default 0
Range 0–31

Details

Use S370FZDUw.d in other operating environments to write unsigned zoned decimal data in the same format as on an IBM mainframe computer.

Comparisons

  • The S370FZDUw.d format is similar to the S370FZDw.d format except that the S370FZDUw.d format always uses the absolute value of the number.
  • The S370FZDUw.d format is equivalent to the COBOL notation PIC 9(n) DISPLAY, where the n value is the number of digits.

Example

y=put (x,s370fzdu3.);
put y $hex6.;
Value of x
Result 1
123
F1F2F3
-123
F1F2F3
1The result is a hexadecimal representation of a binary number in zoned decimal format on an IBM mainframe computer. Each pair of hexadecimal characters (such as F1) corresponds to one byte of binary data, and each byte corresponds to one column of the output field.