Skip to content

ERPConnect.Queries.QueryField

Namespace: ERPConnect.Queries
Assembly: ERPConnectStandard20.dll

QueryField.

public class QueryField

Inheritance

objectQueryField

Inherited Members

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

Constructors

QueryField()

Constructs an empty Query field object

public QueryField()

QueryField(string, string, int, int, string)

Constructs an QueryField object

public QueryField(string Name, string ABAPType, int Length, int Decimals, string Description)

Parameters

Name string

Name of the field

ABAPType string

ABAP type

Length int

Length of field

Decimals int

Number of decimals digits

Description string

Description

Properties

ABAPType

ABAP type

public string ABAPType { get; set; }

Property Value

string

Decimals

Number of decimals digits

public int Decimals { get; set; }

Property Value

int

Description

Description

public string Description { get; set; }

Property Value

string

Length

Length of field

public int Length { get; set; }

Property Value

int

Name

Name of the field

public string Name { get; set; }

Property Value

string