This KD includes a few Batch Reports at the Profile level, specifically wanting to see the Security setting.
Release : 5.4
Component : TPX for z/OS
The following are example Batch Administration jobs/reports that use Batch Variables related to profiles:
BRPROF1 - This report is showing a couple Profile columns, one being the Security field PIDXSCTY.
These are found in the doc: TPX Profile Variables(by Variable Name)
BRPROF2 - This report includes all the Profile Variables.
BRUSRPRF: This is a user report, showing Static users and up to 5 of their profiles.
Note the use of the 'Special Batch Variable' VUSRPROF: You use this variable to extract users by the profiles that are assigned to the user record.
A few notes on the Extract:
EXTRACT GIVING(EXTFILE) PROF AND NO SESSIONS (PIDXNAME(--------)) <<< the dashes mean give all of the Profiles
EXTRACT GIVING(EXTFILE) PROF AND NO SESSIONS (PIDXNAME(BASEPROF)) <<<< only a specific profile
EXTRACT GIVING(EXTFILE) PROF AND NO SESSIONS (PIDXNAME(BASE----)) <<< only profiles starting with 'BASE'
See Extract Statement for details on options.
See the various types of variables available under the section: Batch Variables
The variables used will depend on what type of information is needed on the report.