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
Skip
Amount of rows to skip
public Nullable<int> Skip { get; set; }
Property Value
Take
Amount of rows to take
public Nullable<int> Take { get; set; }
Property Value
Fields
Fields to read as a select statement
public IEnumerable<string> Fields { get; set; }
Property Value
Filters
Filters to apply to the read operation
public IEnumerable<string> Filters { get; set; }
Property Value
Path
public string Path { get; set; }
Property Value
TargetPath
public string TargetPath { get; set; }
Property Value
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
Constructors
ReadTableNodeConfiguration()
Caution
Constructors of types with required members are not supported in this version of your compiler.
public ReadTableNodeConfiguration()