java.lang.Object
com.blackhillsoftware.smf.cics.monitoring.fields.MonitoringField
com.blackhillsoftware.smf.cics.monitoring.fields.TrannumField

public class TrannumField extends MonitoringField
Class used to define a CICS Transaction number field. Defined as a Packed Decimal field (type P) but some transaction number fields may contain a String value. Getting the value returns an Object, which may be an Integer if the value is packed decimal value or a String. Fields are accessed via the MonitoringPerformanceRecord. See the MonitoringPerformanceRecord documentation for a code example to show how to define and access the fields.
  • Method Details

    • define

      public static TrannumField define(String owner, String identifier)
      Define a TrannumField representing a field identified by owner and name
      Parameters:
      owner - the owner of the field e.g. "DFHTASK"
      identifier - the 4 character identifier for the field including type e.g. "P031"
      Returns:
      TrannumField entry identifying the field