Remove-SAPConcur Cmdlet
Deletes SAP Concur data.
Syntax
Remove-SAPConcur [parameters]
Remarks
The Remove-SAPConcur cmdlet allows you to use a syntax similar to SQL DELETE statements to delete SAP Concur data.
$conn = Connect-SAPConcur -OAuthClientId 'abc123' -OAuthClientSecret 'def456' Remove-SAPConcur -Connection $conn -Table "Departments" -Id "25"The Where parameter can also be used to specify the primary key:
Remove-SAPConcur -Connection $conn -Table "exTablePowershell;" -Where "OfficeId = 25"The primary key can also be passed to the cmdlet along the pipeline:
Select-SAPConcur -Connection $conn -Table Departments -Where "Id = '1668776136772254'" | Remove-SAPConcur