Actions19
- Bank Page Actions
- External Reconciliation Cancel Actions
- External Reconciliation Reconcile Actions
- Incoming Payment Actions
- Vendor Payment Actions
Overview
This node interacts with the SAP Business One Service Layer specifically for managing bank pages and related financial documents. The "Delete" operation under the "Bank Page" resource allows users to delete a specific bank page document identified by its unique document entry ID.
Common scenarios where this node is beneficial include automating the removal of obsolete or incorrect bank page records from SAP B1, integrating SAP B1 bank management into broader workflows, or cleaning up data as part of financial process automation.
For example, a user might set up an automated workflow that deletes bank pages after reconciliation is complete or removes test entries created during system setup.
Properties
| Name | Meaning |
|---|---|
| DocEntry | Identifier of the document (bank page) to be deleted. This is a required string input. |
Output
The output is a JSON object representing the response from the SAP B1 Service Layer after attempting to delete the specified bank page. It typically contains confirmation of deletion or error details if the operation failed.
If the deletion is successful, the JSON will reflect success status or an empty response depending on SAP's API behavior.
If there is an error (e.g., invalid DocEntry, permission issues), the JSON will contain an error field with the error message.
No binary data output is produced by this operation.
Dependencies
- Requires connection to SAP Business One Service Layer API.
- Needs credentials including base URL, username, password, and company database name.
- The node performs login to obtain session cookies before making requests.
- The SAP Service Layer API must be accessible from the n8n environment.
Troubleshooting
- Invalid DocEntry: If the provided document identifier does not exist, the node will return an error message indicating the document was not found. Verify the DocEntry value.
- Authentication errors: Login failures due to incorrect credentials or network issues will cause the node to fail. Ensure credentials are correct and the SAP Service Layer endpoint is reachable.
- Permission issues: Insufficient permissions in SAP B1 may prevent deletion. Confirm the user has rights to delete bank pages.
- Network/SSL issues: The node disables SSL verification (
rejectUnauthorized: false) but network problems can still occur. Check connectivity and firewall settings. - Unexpected errors: The node captures exceptions and returns their messages in the output JSON under
error. Review these messages for clues.