Specifying DFHSIT macro parameters

You can specify most system initialization parameters in a DFHSIT macro.

Procedure

  1. Code the following macro parameter first:
    TYPE={CSECT|DSECT}
    This parameter specifies the type of SIT to be generated.
    CSECT
    A regular control section that is normally used.
    DSECT
    A dummy control section.
    For example:
    DFHSIT	TYPE=CSECT,       *
    The asterisk (*) can be any character in column 72 to indicate the macro continues on the next line.
  2. Use the following syntax to add system initialization parameters to the macro:
    Read syntax diagramSkip visual syntax diagram DFHSIT TYPE=CSECTTYPE=DSECTparameter=value
    where parameter is the system initialization parameter that you want to code, and value is the appropriate parameter value. You should code the parameters and keywords in uppercase, except for parameters where case is important. For example, any parameter that specifies the name of a z/OS® UNIX directory is case sensitive. The system initialization parameters are described in detail in System initialization parameter descriptions and summary.

    For example:

    
    ADI=30,                        * 
    AIBRIDGE=AUTO,                 * 
    AIEXIT=DFHZATDX,               * 
    AILDELAY=0,                    *
    The asterisk (*) can be any character in column 72 to indicate the macro continues on the next line.
  3. Terminate your macro parameters with the following statement:
    END DFHSITBA

Example

For information on the sample system initialization tables provided, see Defining resources in CICS control tables.