EXEC TAA NEW Statement

Für Syntax siehe hier.

Beispiele

New Einzelobjekt:

  1. EXEC TAA
  2. NEW LRPPME1
  3. END-EXEC
if (this.Lrppme1 == null) {
   this.Lrppme1 = this.Data.New(SnstrPpme.Type, "Lrppme1");
} else {
   Lrppme1.Initialize();
}

New Listenobjekt

  1. EXEC TAA
  2. NEW LNLPPM2
  3. END-EXEC
if (this.DataLnlppm2 == null) {
    this.DataLnlppm2 = this.Data.NewList(SnstrPpme.Type, "Lnlppm2");
} else {
    this.DataLnlppm2.Clear();
    Lnlppm2.Initialize();
}