Cmdlets for SAP BusinessObjects BI

Build 25.0.9434

Remove-SAPBusinessObjectsBI Cmdlet

Parameters   Output Objects  

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

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9434