Cmdlets for Epicor Kinetic

Build 24.0.8963

Remove-EpicorERP Cmdlet

Parameters   Output Objects  

Deletes Epicor Kinetic data.

Syntax

Remove-EpicorERP [parameters]

Remarks

The Remove-EpicorERP cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Epicor Kinetic data.

$conn = Connect-EpicorERP -Service 'Erp.BO.CustomerSvc' -ERPInstance 'MyInstance' -URL 'https://myaccount.epicorsaas.com' -User 'username' -Password 'password'
Remove-EpicorERP -Connection $conn -Table "Customers" -Id "12345"
The Where parameter can also be used to specify the primary key:
Remove-EpicorERP -Connection $conn -Table "exTablePowershell;" -Where "Id = 12345"
The primary key can also be passed to the cmdlet along the pipeline:
Select-EpicorERP -Connection $conn -Table Customers -Where "CompanyName = 'CompanyName'" | Remove-EpicorERP

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