set_solution_context
Define the solution context for Dataverse metadata operations to automatically associate new tables, columns, and relationships with the specified solution.
Instructions
Sets the active solution context for all subsequent metadata operations. When a solution context is set, all created tables, columns, relationships, and other components will be automatically added to this solution. This is required before creating any custom components.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
solutionUniqueName | Yes | Unique name of the solution to set as context for subsequent operations |
Input Schema (JSON Schema)
{
"properties": {
"solutionUniqueName": {
"description": "Unique name of the solution to set as context for subsequent operations",
"type": "string"
}
},
"required": [
"solutionUniqueName"
],
"type": "object"
}