How SYSID is used in the F ACF2,REFRESH(GSO recordid),SYSID(sysid) to select a GSO recordid in the INFOSTG database? A site has several GSO OPTS records stored under several SYSIDs, some are explicit SYSIDs such as SYSA, SYSB or SYSC and other are masked such as SYS*, SY** or ****.
Release : 16.0
Component : CA ACF2 for z/OS
The example shows how the SYSID is used in relationship to the 'F ACF2,REFRESH(OPTS),SYSID(sysid)' when there are multiple GSO OPTS records stored in the ACF2 INFOSTG database with both specific SYSIDs and masked SYSIDs.
The following should be considered.
For example:
Three GSO OPTS records exist in the ACF2 INFOSTG database under different SYSIDs, two SYSID are masked.
Type SYSID Record
GSO MES* / OPTS
GSO PROD / OPTS
GSO **** / OPTS
The TSO, ACF, 'SHOW SYSTEMS' command displays:
CURRENT SYSID=MESB STARTUP SYSID=MESB BUILT ACCVT=MESB
Example 1
Command 'F ACF2,REFRESH(OPTS)' is issued.
Since no SYSID was specified on the command, the 'active' SYSID MESB will be used to search for GSO OPTS records. The 'GSO MES* / OPTS' will be used because it is the most specific SYSID that matches.
Example 2
Command 'F ACF2,REFRESH(OPTS),SYSID(MES3)' is issued.
Since SYSID(MES3) was specified on the command, the 'active' SYSID MESB is ignored and SYSID MES3 will be used to search for GSO OPTS records. The 'GSO MES* / OPTS' will be used because it is the most specific SYSID that matches.
Example 3
Command 'F ACF2,REFRESH(OPTS),SYSID(PROD)' is issued.
Since SYSID(PROD) was specified on the command, the 'active' SYSID MESB is ignored and SYSID PROD will be used to search for GSO OPTS records. The 'GSO PROD / OPTS' will be used because it is the most specific SYSID that matches.
Example 4
Command 'F ACF2,REFRESH(OPTS),SYSID(TEST)' is issued.
Since SYSID(TEST) was specified on the command, the 'active' SYSID MESB is ignored and SYSID TEST will be used to search for GSO OPTS records. The 'GSO **** / OPTS' will be used because it is the most specific SYSID that matches.
Example 5
Command 'F ACF2,REFRESH(OPTS),SYSID(-)' is issued.
Since SYSID(-) was specified on the command, the 'active' SYSID MESB is ignored and SYSID - will be used to search for GSO OPTS records. Note that the '-' is treated as a literal dash and not a masking character. The 'GSO **** / OPTS' will be used because it is the most specific SYSID that matches.
Example 6
Command 'F ACF2,REFRESH(OPTS),SYSID(*)' is issued.
Since SYSID(*) was specified on the command, the 'active' SYSID MESB is ignored and SYSID * will be used to search for GSO OPTS records. Note that the '*' is treated as a literal asterisk and not a masking character. The 'GSO **** / OPTS' will be used because it is the most specific SYSID that matches.