sap-dtw-expert
Installation
SKILL.md
SAP DTW Expert
Quick start
- Search
assets/TEMPLATE_INDEX.yamlbytable_codeorobject_nameto find the right template(s). - Read the target
.tsvfile — row 1 is the DI API field name (used by DTW), row 2 is a label (ignored by DTW). - Fill data from row 3 onward; every column in row 1 is available, only a subset is mandatory.
Template lookup
import yaml, pathlib
index = yaml.safe_load(pathlib.Path("assets/TEMPLATE_INDEX.yaml").read_text())
matches = [e for e in index if e["table_code"] == "OCRD"]
matches = [e for e in index if "BusinessPartner" in e["object_name"]]
matches = [e for e in index if e["module"] == "Business Partners"]