CreateSchema
Produces a schema definition file for a specified table or view within the Vault data model. The generated schema includes column names, data types, and metadata that can be used for integration, documentation, or tooling purposes.
CreateSchema
Creates a local schema file (.rsd) from an existing table or view in the data model.
The schema file is created in the directory set in the Location connection property when this procedure is executed. You can edit the file to include or exclude columns, rename columns, or adjust column datatypes.
The add-in checks the Location to determine if the names of any .rsd files match a table or view in the data model. If there is a duplicate, the schema file will take precedence over the default instance of this table in the data model. If a schema file is present in Location that does not match an existing table or view, a new table or view entry is added to the data model of the add-in.
Input
| Name | Type | Required | Description |
| TableName | String | True | Specifies the name of the target table or view within Veeva Vault for which the schema definition will be created. This name should exactly match the object identifier used in the Vault database. |
| FileName | String | True | Defines the full file system path, including the filename, where the generated schema file will be saved. The file typically uses the .rsd extension (for example, 'C:\\Users\\User\\Desktop\\VeevaVault\\tablename.rsd'). |
Result Set Columns
| Name | Type | Description |
| Result | String | Indicates the execution status of the schema generation process. Returns either 'Success' if the schema was created and saved correctly, or 'Failure' if the operation encountered an error. |