Cmdlets for SAP Business One

Build 24.0.9062

Remove-SAPBusinessOne Cmdlet

Parameters   Output Objects  

SAP Business One データを削除します。

Syntax

Remove-SAPBusinessOne [parameters]

Remarks

Remove-SAPBusinessOne コマンドレットを使って、SQL DELETE ステートメントに似た構文を用いてSAP Business One データを削除できます。

$conn = Connect-SAPBusinessOne -Url 'http://localhost:50000/b1s/v1' -User 'user' -Password 'password' -CompanyDB 'companydb'
Remove-SAPBusinessOne -Connection $conn -Table "Orders" -Id "22"
Where パラメータは主キーを指定するためにも使われます。
Remove-SAPBusinessOne -Connection $conn -Table "exTablePowershell;" -Where "Id = 22"
主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-SAPBusinessOne -Connection $conn -Table Orders -Where "DocType = 'dDocument_Items'" | Remove-SAPBusinessOne

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9062