Skip to content

ERPConnect.Utils.BatchStep

Namespace: ERPConnect.Utils
Assembly: ERPConnectStandard20.dll

BatchStep represents a single step for a SAP transaction

public class BatchStep

Inheritance

objectBatchStep

Inherited Members

object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Constructors

BatchStep()

Initializies an empty batch step.

public BatchStep()

BatchStep(string, string, bool, string, string)

Initializes a new Batch Step

public BatchStep(string ProgramName, string DynproNumber, bool BeginNewDynpro, string FieldName, string FieldValue)

Parameters

ProgramName string

Name of the ABAP program

DynproNumber string

Name of the current dynpro number

BeginNewDynpro bool

True / false whether the step begins to fill a new dynpro

FieldName string

Name of the dynprofield to be set

FieldValue string

Value of the field to be set

Properties

BeginNewDynpro

True / false whether the step begins to fill a new dynpro

public bool BeginNewDynpro { get; set; }

Property Value

bool

DynproNumber

Name of the current dynpro number

public string DynproNumber { get; set; }

Property Value

string

FieldName

Name of the dynprofield to be set

public string FieldName { get; set; }

Property Value

string

FieldValue

Value of the field to be set

public string FieldValue { get; set; }

Property Value

string

ProgramName

Name of the ABAP program

public string ProgramName { get; set; }

Property Value

string