SAP B1 Service Layer 8 - Produccion icon

SAP B1 Service Layer 8 - Produccion

Interact with SAP B1 Service Layer 8 - Produccion

Overview

This node integrates with the SAP Business One Service Layer (version 8) to manage production-related documents and inventory entries. Specifically, for the "Inventory Gen Entrie" resource with the "Get by Key" operation, it retrieves a single inventory generation entry document identified by its unique key (DocEntry). This is useful in scenarios where you need to fetch detailed information about a specific inventory generation record from SAP B1, such as verifying stock movements or auditing inventory changes.

Practical examples include:

  • Fetching an inventory generation entry to display its details in a dashboard.
  • Retrieving a document before updating or processing it further.
  • Automating validation workflows that require checking the existence or status of a particular inventory entry.

Properties

Name Meaning
DocEntry The unique identifier (key) of the Inventory Gen Entry document to retrieve. Required.

Output

The node outputs a JSON object representing the retrieved Inventory Gen Entry document from SAP Business One. The structure corresponds directly to the SAP B1 Service Layer response for that document, including all its fields and nested data.

If the request fails, the output JSON will contain an error field with the error message describing what went wrong.

No binary data output is produced by this node.

Dependencies

  • Requires connection to an SAP Business One Service Layer instance (version 8).
  • Needs credentials including base URL, username, password, and company database name to authenticate via SAP B1's login endpoint.
  • The node manages session cookies internally to maintain authentication state during requests.

Troubleshooting

  • Authentication errors: If login fails, verify the provided SAP B1 credentials and company database name are correct.
  • Document not found: If the specified DocEntry does not exist, the API may return an error; ensure the key is valid and exists in SAP B1.
  • Network issues: Connection failures can occur if the SAP B1 Service Layer URL is incorrect or unreachable.
  • Permission issues: Ensure the user account has sufficient permissions to read inventory generation entries.
  • Error messages: The node returns error messages in the output JSON under the error field. Review these messages to identify issues such as invalid parameters or server errors.

Links and References

Discussion