Agent skill

sap

Query SAP systems — business partners, sales orders, materials, and financials via OData APIs.

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/sap-thinkfleetai-thinkfleet-engine

Metadata

Additional technical details for this skill

thinkfleetbot
{
    "emoji": "\ud83c\udfe2",
    "requires": {
        "env": [
            "SAP_BASE_URL",
            "SAP_API_KEY"
        ],
        "bins": [
            "curl",
            "jq"
        ]
    }
}

SKILL.md

SAP

Query business partners, sales orders, and materials via SAP OData APIs.

Environment Variables

  • SAP_BASE_URL - SAP API base URL
  • SAP_API_KEY - API key

List business partners

bash
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

bash
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

bash
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.

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results