Previous Topic Next topic Print topic


USER ID and PASSWORD fields

For COBOL CICS screen-based service interfaces, you can use two special COBOL fields, USER ID and PASSWORD, to map to input interface fields. The purpose of these two fields is to control access to your application by collecting the user ID and password when you want to verify users before granting authorization to access the application.

You enable the run-time functionality for USER ID and PASSWORD by editing the merncntl.igc file, found in the %ProgramFiles(x86)%\Micro Focus\Enterprise Developer\etc\cntlfiles folder, as follows:

  1. Find these lines:
    % if not &defined(&cntl-security-on)
      % * &cntl-security-on = "yes"
      % &cntl-security-on = "no"
    % end
  2. Remove the asterisk and its preceding space from the following line:
    % * &cntl-security-on = "yes"

    So that it reads:

    % &cntl-security-on = "yes"
  3. Add an asterisk and a space to the following line:
    % &cntl-security-on = "no"

    So that it reads:

    % * &cntl-security-on = "no"
  4. Save and close the file.

This changes the security setting from the default of no to yes, so that user IDs are validated against those defined in the Enterprise Server System Name Table (SNT).

Previous Topic Next topic Print topic