Package Information
Released: 6/2/2025
Downloads: 0 weekly / 0 monthly
Latest Version: 0.1.4
Author: fabianosanttana
Documentation
n8n-nodes-sap-service-layer
This is an n8n community node for SAP Service Layer integration. It allows you to interact with SAP Business One Service Layer API from your n8n workflows.
Installation
Follow the installation guide in the n8n community nodes documentation.
Credentials
The node requires the following credentials:
- Service Layer URL: The URL of your SAP Service Layer (e.g., https://sl-eqnx.datacore.com.br:31218/b1s/v1)
- Company DB: Your SAP company database name
- Username: Your SAP username
- Password: Your SAP password
- Language: Language code (default: 1)
Operations
The node supports the following operations for each resource:
Business Partner
- Create
- Get
- Get All
- Update
Sales Order
- Create
- Get
- Get All
- Update
Item
- Create
- Get
- Get All
- Update
Usage
- Add the SAP Service Layer node to your workflow
- Configure the credentials
- Select the resource you want to work with
- Choose the operation
- Provide the necessary parameters (ID for get/update operations, data for create/update operations)
Example
Get Business Partner
- Select "Business Partner" as the resource
- Choose "Get" as the operation
- Enter the Business Partner ID
- Execute the node
Create Sales Order
- Select "Sales Order" as the resource
- Choose "Create" as the operation
- Enter the sales order data in JSON format
- Execute the node
Data Format
Create/Update Business Partner
{
"CardCode": "C00001",
"CardName": "Test Customer",
"CardType": "C",
"GroupCode": 100
}
Create/Update Sales Order
{
"CardCode": "C00001",
"DocDate": "2024-03-20",
"DocDueDate": "2024-03-27",
"DocumentLines": [
{
"ItemCode": "I00001",
"Quantity": 1,
"UnitPrice": 100
}
]
}
Create/Update Item
{
"ItemCode": "I00001",
"ItemName": "Test Item",
"ForeignName": "Test Item EN",
"ItemsGroupCode": 100,
"PurchaseItem": "Y",
"SalesItem": "Y",
"InventoryItem": "Y"
}