Previous Page | Next Page

Informats

S370FPDUw.d Informat



Reads unsigned packed decimal data in IBM mainframe format.
Category: Numeric

Syntax
Syntax Description
Details
Comparisons
Examples

Syntax

S370FPDUw.d

Syntax Description

w

specifies the width of the input field.

Default: 1
Range: 1-16
d

specifies the power of 10 by which to divide the value. This argument is optional.

Default: 0
Range: 0-31

Details

Packed decimal data contain two digits per byte. The last half of the last byte, which indicates the sign for signed packed data, is always F for unsigned packed data.

Use S370FPDUw.d on other operating environments to read unsigned packed decimal data from IBM mainframe files.


Comparisons


Examples

input @1 x s370fpdu3.; 

Data Line* Results
----+----1

12345F
12345
* The data line is a hexadecimal representation of a binary number that is stored in packed decimal form. Each two hexadecimal characters correspond to one byte of binary data, and each byte corresponds to one column of the input field.

Previous Page | Next Page | Top of Page