get_asset_by_compound_key
Use space ID and asset ID to directly retrieve asset metadata through OData compound key access.
Instructions
Retrieve asset using OData compound key identifier (alternative access method).
Use this tool when:
You have both space ID and asset ID ready
Want direct access without knowing the exact endpoint structure
Working with bookmarked or favorited assets
Have pre-known asset identifiers from other systems
Need to resolve cross-references quickly
What you'll get:
Same comprehensive metadata as get_asset_details
Complete asset information with consumption URLs
All dimensions, measures, and relationships
Technical and business context
Required parameters:
space_id: The space identifier
asset_id: The asset identifier
How it works:
This tool combines space_id and asset_id into an OData compound key format:
spaceId='SAP_CONTENT',assetId='SAP_SC_FI_AM_FINTRANSACTIONS'
Example queries:
"Get asset SAP_SC_FI_AM_FINTRANSACTIONS from SAP_CONTENT using compound key"
"Retrieve CUSTOMER_VIEW in SALES_SPACE"
When to use this vs get_asset_details:
Use this: When you want simplified parameter passing
Use get_asset_details: When you need expand options or prefer explicit endpoint
Note: This uses the Catalog API: GET /api/v1/datasphere/consumption/catalog/assets({compoundKey})
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | Yes | The space identifier in UPPERCASE (e.g., 'SAP_CONTENT', 'SALES_SPACE'). | |
| asset_id | Yes | The asset identifier (e.g., 'SAP_SC_FI_AM_FINTRANSACTIONS', 'CUSTOMER_VIEW'). |