HOLDDATA - mfx - 3.1

Syncsort™ MFX Installation

Product type
Software
Portfolio
Integrate
Product family
Syncsort™ Software
Product
Syncsort™ MFX > MFX
Version
3.1
Language
English
Product name
Syncsort™ MFX
Title
Syncsort™ MFX Installation
Topic type
Installation
Release Notes > What's New
Copyright
2024
First publish date
2010
Last edition
2024-08-27
Last publish date
2024-08-27T07:49:46.255035

HOLDDATA file identifies the PTF-in-error (PE) and High Impact or Pervasive (HIPER) conditions through SMP/E REPORT ERRSYSMODS during the automated maintenance process. This process helps you to avoid the installation process of the PTF with the mentioned conditions. The HOLDDATA file is available on the FTP server.

HOLDDATA file format

Keyword Value Description
++HOLD(TZnnnnn) PTF id Name of the PTF with an issue. Example, ++HOLD(TZ03488)
FMID(xxxx) function_id Function name or Id. Example, FMID(BSSIZ31)
REASON(xxxx) - Internal record-keeping number for the issue that was found. Example, REASON(MF04145)
ERROR DATE(xxxxx) Julian format yynnn Date when the error was reported. Example, ERROR DATE(20280)
COMMENT(xxxx) COMMENT(SMRTDATA(FIX(TZ04145) Comment
CHGDT(xxxxxx) yymmdd Date when the corrected PTF is released, otherwise it is the HOLDDATA file generation date. Example, CHGDT(230308)
CLASS
  • HIPER: The SYSMOD is held with a hold class of HIPER (High Impact)
  • PE- The SYSMOD is held with a hold class of PTF in Error.
  • SECINT- The reason ID SYSMOD identifies a fix for a security or integrity error.
 

HOLDDATA HIPER Information Flags

Reason flags for HIPER APARs are included in the comment field. This supports in prioritizing the review of any uninstalled HIPER fixes. The reason flags are listed below:
Reason Flag Keyword Description
DAL DATALOSS Causes customer data destruction, contamination or both. (incorrect output)
FUL FUNCTIONLOSS Causes a major loss of function on the sort.
PRF PERFORMANCE Causes severe impact to performance or throughput.
PRV PERVASIVE Problem that can affect many customers.
IPL Initial Program Load Causes the customer to re-IPL, reboot, recycle, or restart one or more systems or subsystems.

HOLDDATA Class(SECINT)

HOLDDATA Class is provided for a security or integrity issues with CVSS scoring. When SECINT is specified, the CVSS score is stored in the COMMENT field.

Retrieving HOLDDATA

HOLDDATA file is available on the FTP server at holddata.precisely.engineering. It can be retrieved from your z/OS environment. The port range that FTP server uses after login is 65024-65535. To enable these ports, you might need to update your firewall.

The following is a sample job to retrieve the text file:

//         JOB
//*--------------------------------------------------------------
//* >>>> use 'caps off' when editing <<<<<
//* >>>> FTP Commands use mixed case <<<<<
//* This sample JCL will retrieve Precisely enhanced HOLDDATA
//* from the secure FTP server.  Please modify as required
//* changes to fit your needs
//*--------------------------------------------------------------
//FTP     EXEC PGM=FTP,REGION=6144K,TIME=5,PARM='-a TLS ( EXIT=16'
//SYSPRINT DD  SYSOUT=*
//OUTPUT   DD  SYSOUT=*
//INPUT    DD  *
holddata.precisely.engineering
anonymous
your_name@your_company.com
locsite fwf lrecl=80 recfm=fb blksize=6400 cyl pri=1 sec=1
get holddata.txt 'SYNCSORT.HOLDDATA' (repl
quit
//*