DeleteListColumn
Removes a column from an existing SharePoint list. Useful for restructuring lists and removing unnecessary fields.
Input
| Name | Type | Required | Description |
| ListName | String | True | The display name of the SharePoint list from which the column will be deleted. Identifies the target list. |
| ColumnName | String | True | The display name of the column to be deleted. Specifies the exact field to remove from the list. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | Indicates whether the column deletion operation was successful. Returns 'true' for success and 'false' for failure. |
| ErrorCode | Integer | If the procedure fails, this field displays the corresponding error code. Useful for debugging and troubleshooting. |
| ErrorMessage | String | If the procedure fails, this field provides a detailed error message explaining the failure. Helps diagnose issues with column deletion. |