Cmdlets for Certinia

Build 24.0.9060

Update-FinancialForce Cmdlet

Parameters   Output Objects  

Updates Certinia data.

Syntax

Update-FinancialForce [parameters]

Remarks

The Update-FinancialForce cmdlet allows you to use a syntax similar to SQL UPDATE statements to update Certinia data.

$conn = Connect-FinancialForce -User "MyUser" -Password "MyPassword" -SecurityToken "MySecurityToken"
Update-FinancialForce -Connection $conn -Table "Account" -Columns @("Name") -Values @("Jon Doe") -Id "1045625d-99ee-e011-a272-00155d01ad6b"
The Where parameter can also be used to specify the primary key of the table:
Update-FinancialForce -Connection $conn -Table "Account" -Columns @("Name") -Values @("Jon Doe") -Where "Id = '1045625d-99ee-e011-a272-00155d01ad6b'"
The primary key can also be passed to the cmdlet along the pipeline:
Select-FinancialForce -Connection $conn -Table Account -Where "Industry = 'Floppy Disks'" | Update-FinancialForce -Columns @("Industry") -Values @("Floppy Disks 2")

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