Cmdlets for MYOB

Build 24.0.9062

Remove-MYOB Cmdlet

Parameters   Output Objects  

MYOB データを削除します。

Syntax

Remove-MYOB [parameters]

Remarks

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

$conn = Connect-MYOB If using an online instance: -InitiateOAuth "GETANDREFRESH" -OAuthClientId "YourClientId" -OAuthClientSecret "YourClientSecret" -CallbackURL "http://localhost:33333" -CompanyFileId "327eed10-9615-4e5e-bd9e-ae2cc00e2c70" -User "companyFileUser" -Password "companyFilePassword" If using an on premise instance:   -InitiateOAuth "OFF" -URL "http://localhost:8080/accountright" -CompanyFileId "327eed10-9615-4e5e-bd9e-ae2cc00e2c70" -User "companyFileUser" -Password "companyFilePassword"
Remove-MYOB -Connection $conn -Table "Accounts" -Id "6186169c-6540-4d72-8bfe-ecc706e500ee"
Where パラメータは主キーを指定するためにも使われます。
Remove-MYOB -Connection $conn -Table "exTablePowershell;" -Where "Id = 6186169c-6540-4d72-8bfe-ecc706e500ee"
主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-MYOB -Connection $conn -Table Accounts -Where "Type = 'Bank'" | Remove-MYOB

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