Remove-SAPBusinessObjectsBI Cmdlet
Deletes SAP BusinessObjects BI data.
Syntax
Remove-SAPBusinessObjectsBI [parameters]
Remarks
The Remove-SAPBusinessObjectsBI cmdlet allows you to use a syntax similar to SQL DELETE statements to delete SAP BusinessObjects BI data.
$conn = Connect-SAPBusinessObjectsBI -User "MyUser" -Password "MyPassword" -Url "http://myserver:6405/biprws" Remove-SAPBusinessObjectsBI -Connection $conn -Table "MyCustomReport" -Id "6"The Where parameter can also be used to specify the primary key:
Remove-SAPBusinessObjectsBI -Connection $conn -Table "exTablePowershell;" -Where "Id = 6"The primary key can also be passed to the cmdlet along the pipeline:
Select-SAPBusinessObjectsBI -Connection $conn -Table MyCustomReport -Where "Column2 = 'Bob'" | Remove-SAPBusinessObjectsBI