sap
SKILL.md
SAP
Query business partners, sales orders, and materials via SAP OData APIs.
Environment Variables
SAP_BASE_URL- SAP API base URLSAP_API_KEY- API key
List business partners
curl -s -H "APIKey: $SAP_API_KEY" \
"$SAP_BASE_URL/sap/opu/odata/sap/API_BUSINESS_PARTNER/A_BusinessPartner?\$top=10&\$select=BusinessPartner,BusinessPartnerFullName" | jq '.d.results[]'
List sales orders
curl -s -H "APIKey: $SAP_API_KEY" \
"$SAP_BASE_URL/sap/opu/odata/sap/API_SALES_ORDER_SRV/A_SalesOrder?\$top=10&\$select=SalesOrder,SoldToParty,TotalNetAmount" | jq '.d.results[]'
Get material
curl -s -H "APIKey: $SAP_API_KEY" \
"$SAP_BASE_URL/sap/opu/odata/sap/API_PRODUCT_SRV/A_Product?\$top=10&\$select=Product,ProductType" | jq '.d.results[]'
Notes
- Always confirm before creating or modifying business data.
Weekly Installs
2
Repository
thinkfleetai/th…t-engineFirst Seen
14 days ago
Security Audits
Installed on
opencode2
gemini-cli2
claude-code2
github-copilot2
codex2
kimi-cli2