Select-MYOB Cmdlet
MYOB データを検索します。
Syntax
Select-MYOB [parameters]
Remarks
Select-MYOB コマンドレットを使って、SQL SELECT ステートメントに似た構文を用いて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" Select-MYOB -Connection $conn -Table "Accounts" -Columns @("Id","Name") -Where "Type='Bank'"