// Methods
 public QuerySelectionParameter()
 {
     this._Name = "";
     this._FieldName = "";
     this._DescriptionText = "";
     this._ABAPType = "C";
     this._Ranges = new RangeCollection();
 }
Beispiel #2
0
 // Methods
 public QuerySelectionParameter()
 {
     this._Name            = "";
     this._FieldName       = "";
     this._DescriptionText = "";
     this._ABAPType        = "C";
     this._Ranges          = new RangeCollection();
 }
 public QuerySelectionParameter(string Name, string FieldName, string DescriptionText, int Length, bool Obligatory, bool NoDisplay, Kind Kind)
 {
     this._Name = "";
     this._FieldName = "";
     this._DescriptionText = "";
     this._ABAPType = "C";
     this._Ranges = new RangeCollection();
     this.Name = Name;
     this.FieldName = FieldName;
     this.DescriptionText = DescriptionText;
     this.Length = Length;
     this.Obligatory = Obligatory;
     this.NoDisplay = NoDisplay;
     this.Kind = Kind;
 }
Beispiel #4
0
 public QuerySelectionParameter(string Name, string FieldName, string DescriptionText, int Length, bool Obligatory, bool NoDisplay, Kind Kind)
 {
     this._Name            = "";
     this._FieldName       = "";
     this._DescriptionText = "";
     this._ABAPType        = "C";
     this._Ranges          = new RangeCollection();
     this.Name             = Name;
     this.FieldName        = FieldName;
     this.DescriptionText  = DescriptionText;
     this.Length           = Length;
     this.Obligatory       = Obligatory;
     this.NoDisplay        = NoDisplay;
     this.Kind             = Kind;
 }