Package version:

Interface SapTableSource

A copy activity source for SAP Table source.

interface SapTableSource {
    additionalColumns?: any;
    batchSize?: any;
    customRfcReadTableFunctionModule?: any;
    disableMetricsCollection?: any;
    maxConcurrentConnections?: any;
    partitionOption?: any;
    partitionSettings?: SapTablePartitionSettings;
    queryTimeout?: any;
    rfcTableFields?: any;
    rfcTableOptions?: any;
    rowCount?: any;
    rowSkips?: any;
    sapDataColumnDelimiter?: any;
    sourceRetryCount?: any;
    sourceRetryWait?: any;
    type: "SapTableSource";
}

Hierarchy (view full)

Properties

additionalColumns?: any

Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).

batchSize?: any

Specifies the maximum number of rows that will be retrieved at a time when retrieving data from SAP Table. Type: integer (or Expression with resultType integer).

customRfcReadTableFunctionModule?: any

Specifies the custom RFC function module that will be used to read data from SAP Table. Type: string (or Expression with resultType string).

disableMetricsCollection?: any

If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).

maxConcurrentConnections?: any

The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).

partitionOption?: any

The partition mechanism that will be used for SAP table read in parallel. Possible values include: "None", "PartitionOnInt", "PartitionOnCalendarYear", "PartitionOnCalendarMonth", "PartitionOnCalendarDate", "PartitionOnTime".

partitionSettings?: SapTablePartitionSettings

The settings that will be leveraged for SAP table source partitioning.

queryTimeout?: any

Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

rfcTableFields?: any

The fields of the SAP table that will be retrieved. For example, column0, column1. Type: string (or Expression with resultType string).

rfcTableOptions?: any

The options for the filtering of the SAP Table. For example, COLUMN0 EQ SOME VALUE. Type: string (or Expression with resultType string).

rowCount?: any

The number of rows to be retrieved. Type: integer(or Expression with resultType integer).

rowSkips?: any

The number of rows that will be skipped. Type: integer (or Expression with resultType integer).

sapDataColumnDelimiter?: any

The single character that will be used as delimiter passed to SAP RFC as well as splitting the output data retrieved. Type: string (or Expression with resultType string).

sourceRetryCount?: any

Source retry count. Type: integer (or Expression with resultType integer).

sourceRetryWait?: any

Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

type

Polymorphic discriminator, which specifies the different types this object can be