Cmdlets for SAP Concur

Build 23.0.8839

Invoke-SAPConcur Cmdlet

Parameters   Output Objects  

Searches and updates SAP Concur data.

Syntax

Invoke-SAPConcur [parameters]

Remarks

The Invoke-SAPConcur cmdlet allows you to use SQL statements to execute any SQL statement directly. Below is the syntax for a parameterized query:

$query = Invoke-SAPConcur -Connection $connection -Query 'SELECT * FROM Departments WHERE Id=@Id' -Params @{'@Id'='1668776136772254'}
This cmdlet is also useful for executing stored procedures. Use the EXEC keyword to call a stored procedure:
$query = Invoke-SAPConcur -Connection $connection -Query 'EXEC SelectEntries ObjectName = @ObjectName' -Params @{"Account"}
To pass multiple Params parameters, use a semicolon (;) as a delimiter. The code below outlines the structure of an EXEC command with two parameters (param1 and param2):
$query = Invoke-SAPConcur -Connection $connection -Query 'EXEC MyStoredProc Input1=@param1, Input2=@param2' -Params @{'@param1' = 'value1'; '@param2' = 'value2'}

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