sap-dtw-expert

Installation
SKILL.md

SAP DTW Expert

Quick start

  1. Search assets/TEMPLATE_INDEX.yaml by table_code or object_name to find the right template(s).
  2. Read the target .tsv file — row 1 is the DI API field name (used by DTW), row 2 is a label (ignored by DTW).
  3. 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"]
Related skills
Installs
3
Repository
kehwar/skills
First Seen
Apr 18, 2026