sap_help_get
Fetch full SAP Help page content and metadata using an ID from sap_help_search results. Retrieve comprehensive documentation directly from SAP's private APIs for detailed reference and support.
Instructions
Retrieve the full content of a specific SAP Help page. Use the IDs returned from sap_help_search to get the complete documentation page content. This uses the private SAP Help APIs to fetch metadata and page content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
result_id | Yes | The ID from sap_help_search results (e.g., 'sap-help-12345abc'). This ID is used to fetch the complete page content including metadata. |
Input Schema (JSON Schema)
{
"properties": {
"result_id": {
"description": "The ID from sap_help_search results (e.g., 'sap-help-12345abc'). This ID is used to fetch the complete page content including metadata.",
"type": "string"
}
},
"required": [
"result_id"
],
"type": "object"
}