Skip to main content

ReadTableNodeConfiguration

Namespace: Meshmakers.Octo.Communication.Adapters.Sap.Nodes.Extract.DataServices

Node Configuration to read data from a table in SAP using Data Services

public record ReadTableNodeConfiguration : SourceTargetPathNodeConfiguration, INodeConfiguration, IEquatable<NodeConfiguration>, ITargetPathNodeConfiguration, IEquatable<TargetPathNodeConfiguration>, IPathNodeConfiguration, IEquatable<SourceTargetPathNodeConfiguration>, IEquatable<ReadTableNodeConfiguration>

Inheritance Object → NodeConfiguration → TargetPathNodeConfiguration → SourceTargetPathNodeConfiguration → ReadTableNodeConfiguration
Implements INodeConfiguration, IEquatable<NodeConfiguration>, ITargetPathNodeConfiguration, IEquatable<TargetPathNodeConfiguration>, IPathNodeConfiguration, IEquatable<SourceTargetPathNodeConfiguration>, IEquatable<ReadTableNodeConfiguration>

Remarks:

This node uses function module /SAPDS/RFC_READ_TABLE

Properties

TableName

The name of the table to read

public string TableName { get; set; }

Property Value

String

Skip

Amount of rows to skip

public Nullable<int> Skip { get; set; }

Property Value

Nullable<Int32>

Take

Amount of rows to take

public Nullable<int> Take { get; set; }

Property Value

Nullable<Int32>

Fields

Fields to read as a select statement

public IEnumerable<string> Fields { get; set; }

Property Value

IEnumerable<String>

Filters

Filters to apply to the read operation

public IEnumerable<string> Filters { get; set; }

Property Value

IEnumerable<String>

Path

public string Path { get; set; }

Property Value

String

TargetPath

public string TargetPath { get; set; }

Property Value

String

TargetValueWriteMode

public WriteMode TargetValueWriteMode { get; set; }

Property Value

WriteMode

TargetValueKind

public ValueKind TargetValueKind { get; set; }

Property Value

ValueKind

Description

public string Description { get; set; }

Property Value

String

Constructors

ReadTableNodeConfiguration()

Caution

Constructors of types with required members are not supported in this version of your compiler.


public ReadTableNodeConfiguration()