The components that make up the stripping process are:
- eSTRIP which handles the input parameter cards and reading of any external data. It then calls ADASTRIP.
- eSTRIPX, an ADASTRIP user exit. An input parameter to ADASTRIP requesting that the eSTRIP user exit is present.
How does it work?
eSTRIP reads the parameter cards.
These are either stored in memory for later use by eSTRIPX or acted upon by reading, sorting and creating the in-memory tables.
Benefits
200 files (an ADASTRIP limitation) can be stripped in a single invocation of eSTRIP, with dependent "child" files being stripped in a subsequent invocation
The values in the sequential file need not be sorted beforehand as this will be done when they are loaded into the memory table.
The ISN (##) can also be used as values to be saved or tested against.
The following USER exits are included in ESTRIP:
- STRIPCSV - Converts ADASTRIP output to a Comma-separated-value format. Negative zoned decimal numbers are catered for and decimal points can be inserted.
Natural Date and Time fields will be converted to an acceptable format.
- ZONEDEC
Sorts out the negative zoned decimal fields that cause a problem when the data is transferred to a different platform.
Example:
Value + 123 = F1F2F3
value – 123 = F1F2D3
Is changed to –123 for SQL databases that don’t know what to do with F1F2D3
- STRIPZIP
Combines the features of Zonedec and Zipditto to convert the ADASTRIP output into compressed ASCII data as one smooth operation.
for more information on this product.