Remove-FinancialForce Cmdlet
Deletes Certinia data.
Syntax
Remove-FinancialForce [parameters]
Remarks
The Remove-FinancialForce cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Certinia data.
$conn = Connect-FinancialForce -User "MyUser" -Password "MyPassword" -SecurityToken "MySecurityToken" Remove-FinancialForce -Connection $conn -Table "Account" -Id "1045625d-99ee-e011-a272-00155d01ad6b"The Where parameter can also be used to specify the primary key:
Remove-FinancialForce -Connection $conn -Table "exTablePowershell;" -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'" | Remove-FinancialForce