Configuration Recipes
Minimal Source Connector Configuration
name = idoc-source-connector
connector.class = org.init.ohja.kafka.connect.idoc.source.IDocSourceConnector
tasks.max = 1
sap.idoc.license.key = "Your license key here"
# The following sample configurations are for a direct connection to an SAP application server instance.
jco.client.ashost = 127.0.0.1
jco.client.sysnr = 20
jco.client.client = 100
jco.client.user = user
jco.client.passwd = password
jco.client.lang = EN
# SAP application server file path to use for querying generated IDoc files (flat file or XML)
sap.idoc#00.file.path = /usr/sap/data/out
# Kafka topic name the data for this IDoc type will be pushed to
sap.idoc#00.topic = DEBMAS
# IDoc file type (0=XML,1=flat file)
sap.idoc#00.file.type = 0
# Regular expression filter applied to the file names found in path file.path
sap.idoc#00.file.filter.regex = *.xml
Minimal Sink Connector Configuration
name = idoc-sink-connector
connector.class = org.init.ohja.kafka.connect.idoc.sink.IDocSinkConnector
tasks.max = 1
sap.idoc.license.key = "Your license key here"
# list of topics to listen on
topics = DEBMAS08
# The following configuration entries will be applied to every sink configured:
# See SAP transaction WE20
sap.idoc.sender.partner.number =
sap.idoc.sender.partner.type =
# See SAP transaction WE21 -> Transactional RFC
sap.idoc.sender.port =
# See SAP transaction WE20
sap.idoc.receiver.partner.number =
sap.idoc.receiver.partner.type =
# SAP system identification SAP<SID>
sap.idoc.receiver.port =
# name of the topic where data will be fetched from
sap.idoc#00.topic = DEBMAS08
sap.idoc#00.basic-type = DEBMAS08
sap.idoc#00.package.size = 1
jco.client.ashost = 127.0.0.1
jco.client.sysnr = 20
jco.client.client = 100
jco.client.user = user
jco.client.passwd = password
jco.client.lang = EN
1.3.6