SAP B1 Service Layer 9 - MRP icon

SAP B1 Service Layer 9 - MRP

Interact with SAP B1 Service Layer 9 - MRP

Actions4

Overview

This node interacts with the SAP Business One Service Layer specifically for managing Sales Forecast data. The "Get by Key" operation retrieves a single sales forecast record identified by a unique key (DocEntry). This is useful when you need to fetch detailed information about a specific sales forecast from SAP B1, for example, to review or process it further in your workflow.

Common scenarios include:

  • Fetching a particular sales forecast to validate or display its details.
  • Integrating SAP B1 sales forecast data into other systems or reports.
  • Automating workflows that depend on specific sales forecast entries.

Properties

Name Meaning
DocEntry Identifier of the sales forecast document to retrieve.

Output

The output is a JSON object representing the sales forecast record retrieved from SAP B1. It contains all fields and values as returned by the SAP B1 Service Layer for the specified DocEntry.

If an error occurs during the request, the output JSON will contain an error field with the error message.

No binary data is output by this node.

Dependencies

  • Requires connection to an SAP Business One Service Layer instance.
  • Requires credentials including base URL, username, password, and company database name.
  • The node authenticates via a login POST request to obtain session cookies used in subsequent requests.
  • The node uses HTTP requests with cookie-based session management.

Troubleshooting

  • Authentication errors: If login fails, check the provided SAP B1 credentials and ensure the Service Layer endpoint is reachable.
  • Invalid DocEntry: If the specified DocEntry does not exist, the node may return an error or empty response. Verify the DocEntry value.
  • Network issues: Connection problems to the SAP B1 Service Layer can cause request failures.
  • SSL issues: The node disables SSL certificate verification (rejectUnauthorized: false), but if your environment requires strict SSL validation, adjust accordingly.
  • Error messages are returned in the output JSON under the error key. Review these messages to diagnose issues.

Links and References

Discussion