public ScTimestampField newResultEffectiveLocalTsField(String label) {
   ScTimestampField e;
   e = new ScTimestampField();
   e.setTimeZoneUtility(AcTimeZoneUtility.instance);
   e.setValueAdaptor(getResultEffectiveLocalTsAdaptor());
   e.setLabel(label);
   e.setValidator(AcGpsReportTransferValidator.instance.getResultEffectiveLocalTsValidator());
   return e;
 }
 public ScTimestampField newEffectiveUtcTsField(String label) {
   ScTimestampField e;
   e = new ScTimestampField();
   e.setTimeZoneUtility(AcTimeZoneUtility.instance);
   e.setValueAdaptor(getEffectiveUtcTsAdaptor());
   e.setLabel(label);
   e.setValidator(AcItemResultValidator.instance.getEffectiveUtcTsValidator());
   return e;
 }
 public ScTimestampField newCreatedUtcTsField(String label) {
   ScTimestampField e;
   e = new ScTimestampField();
   e.setTimeZoneUtility(AcTimeZoneUtility.instance);
   e.setValueAdaptor(getCreatedUtcTsAdaptor());
   e.setLabel(label);
   e.setValidator(AcGlobalDeviceValidator.instance.getCreatedUtcTsValidator());
   return e;
 }
 public ScTimestampField newExpectedDeliverLocalTsField(String label) {
   ScTimestampField e;
   e = new ScTimestampField();
   e.setTimeZoneUtility(AcTimeZoneUtility.instance);
   e.setValueAdaptor(getExpectedDeliverLocalTsAdaptor());
   e.setLabel(label);
   e.setValidator(AcConsignedItemSummaryVoValidator.instance.getExpectedDeliverLocalTsValidator());
   return e;
 }