Move Report Binder
The following example moves a report binder to a different report folder.
- Connect to the reporting web service.
- Specify the unique identifier of the report binder to move in GUID format.
- Specify the unique identifier of the report folder where the report binder is to be moved in GUID format. To move the report binder to the root report folder use the well known identifier of the root report folder "3f836181-2109-4f5b-a1cf-b7aa8d14c212".
- The user must be a system administrator to execute this command.
Code Sample
# Moves the specified report binder to a different report folder.
$reportBinder = $reporting.GET_ReportBinder("34d7de3c-ea46-4a66-9cf1-f877605d6cd3");
$reportBinder.ParentFolderIdentifier = "3f836181-2109-4f5b-a1cf-b7aa8d14c212";
$reporting.SET_ReportBinder($reportBinder);