Remove-SAPByDesign Cmdlet
Deletes SAP ByDesign data.
Syntax
Remove-SAPByDesign [parameters]
Remarks
The Remove-SAPByDesign cmdlet allows you to use a syntax similar to SQL DELETE statements to delete SAP ByDesign data.
$conn = Connect-SAPByDesign -URL 'https://my999999.businessbydesign.cloud.sap' -User 'username' -Password 'password' -ServiceType 'AnalyticsService' -ServiceName 'servicename' Remove-SAPByDesign -Connection $conn -Table "Account" -Id "1"The Where parameter can also be used to specify the primary key:
Remove-SAPByDesign -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"The primary key can also be passed to the cmdlet along the pipeline:
Select-SAPByDesign -Connection $conn -Table Account -Where "Industry = 'Floppy Disks'" | Remove-SAPByDesign