/** SetupSFields Method. */
 public void setupSFields() {
   super.setupSFields();
   this.getRecord(AirPricing.AIR_PRICING_FILE)
       .getField(AirPricing.RATE_ID)
       .setupDefaultView(
           this.getNextLocation(ScreenConstants.NEXT_LOGICAL, ScreenConstants.ANCHOR_DEFAULT),
           this,
           ScreenConstants.DEFAULT_DISPLAY);
   this.getRecord(AirPricing.AIR_PRICING_FILE)
       .getField(AirPricing.CLASS_ID)
       .setupDefaultView(
           this.getNextLocation(ScreenConstants.NEXT_LOGICAL, ScreenConstants.ANCHOR_DEFAULT),
           this,
           ScreenConstants.DEFAULT_DISPLAY);
   this.getRecord(AirPricing.AIR_PRICING_FILE)
       .getField(AirPricing.COST)
       .setupDefaultView(
           this.getNextLocation(ScreenConstants.NEXT_LOGICAL, ScreenConstants.ANCHOR_DEFAULT),
           this,
           ScreenConstants.DEFAULT_DISPLAY);
 }