Update-SageBCAccounting Cmdlet
Updates Sage Business Cloud Accounting data.
Syntax
Update-SageBCAccounting [parameters]
Remarks
The Update-SageBCAccounting cmdlet allows you to use a syntax similar to SQL UPDATE statements to update Sage Business Cloud Accounting data.
$conn = Connect-SageBCAccounting -InitiateOAuth 'GETANDREFRESH' Update-SageBCAccounting -Connection $conn -Table "SampleTable_1" -Columns @("Column1") -Values @("Jon Doe") -Id "6"The Where parameter can also be used to specify the primary key of the table:
Update-SageBCAccounting -Connection $conn -Table "SampleTable_1" -Columns @("Column1") -Values @("Jon Doe") -Where "Id = '6'"The primary key can also be passed to the cmdlet along the pipeline:
Select-SageBCAccounting -Connection $conn -Table SampleTable_1 -Where "Column2 = 'Bob'" | Update-SageBCAccounting -Columns @("Column2") -Values @("Bob 2")