Move Report
The following example moves a report to a different report folder.
- Connect to the reporting web service.
- Specify the unique identifier of the report to move in GUID format.
- Specify the unique identifier of the report folder where the report is to be moved in GUID format. To move the report 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 to a different report folder.
$report = $reporting.GET_Report("5d1ae1a7-6625-4c2c-baf9-b08f6b6f87f1");
$report.ParentFolderIdentifier = "3f836181-2109-4f5b-a1cf-b7aa8d14c212";
$reporting.SET_Report($report);