public Transaction()
 {
     this._BatchSteps = new BatchStepCollection();
     this._TCode = "";
     this._Type = TransactionType.Multiple;
     this._Returns = new BatchReturnCollection();
     this._CustomFunctionName = "";
 }
Example #2
0
 public Transaction()
 {
     this._BatchSteps         = new BatchStepCollection();
     this._TCode              = "";
     this._Type               = TransactionType.Multiple;
     this._Returns            = new BatchReturnCollection();
     this._CustomFunctionName = "";
 }
 public Transaction(string sysName)
 {
     this._BatchSteps = new BatchStepCollection();
     this._TCode = "";
     this._Type = TransactionType.Multiple;
     this._Returns = new BatchReturnCollection();
     this._CustomFunctionName = "";
     this._des = SAPDestination.GetDesByName(sysName);
     this._sysName = sysName.ToUpper().Trim();
 }
Example #4
0
 public Transaction(string sysName)
 {
     this._BatchSteps         = new BatchStepCollection();
     this._TCode              = "";
     this._Type               = TransactionType.Multiple;
     this._Returns            = new BatchReturnCollection();
     this._CustomFunctionName = "";
     this._des     = SAPDestination.GetDesByName(sysName);
     this._sysName = sysName.ToUpper().Trim();
 }