![]() |
VOOZH | about |
The CData Cmdlets for SAP Concur are standard PowerShell cmdlets that make it easy to accomplish data cleansing, normalization, backup, and other integration tasks by enabling real-time and bidirectional access to SAP Concur.
The Cmdlets are not only a PowerShell interface to SAP Concur, but also an SQL interface; this tutorial shows how to use both to create, retrieve, update, and delete SAP Concur data. We also show examples of the ADO.NET equivalent, which is possible with the CData ADO.NET Provider for SAP Concur. To access SAP Concur data from other .NET applications, like LINQPad, use the CData ADO.NET Provider for SAP Concur.
Once you have acquired the necessary connection properties, accessing SAP Concur data in PowerShell can be enabled in three steps.
SAP Concur uses the OAuth 2 authentication standard. obtain the and by registering an app with SAP Concur. See the Getting Started section of the help documentation for an authentication guide.
Install the module:
Install-Module SAPConcurCmdlets
Connect:
$sapconcur = Connect-SAPConcur -OAuthClientId "$OAuthClientId" -OAuthClientSecret "$OAuthClientSecret" -InitiateOAuth "$InitiateOAuth"
Search for and retrieve data:
$id = "1668776136772254" $departments = Select-SAPConcur -Connection $sapconcur -Table "Departments" -Where "Id = `'$Id`'" $departments
You can also use the Invoke-SAPConcur cmdlet to execute SQL commands:
$departments = Invoke-SAPConcur -Connection $sapconcur -Query 'SELECT * FROM Departments WHERE Id = @Id' -Params @{'@Id'='1668776136772254'}
Load the provider's assembly:
[Reflection.Assembly]::LoadFile("C:\Program Files\CData\CData ADO.NET Provider for SAP Concur\lib\System.Data.CData.SAPConcur.dll")
Connect to SAP Concur:
$conn= New-Object System.Data.CData.SAPConcur.SAPConcurConnection("OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;InitiateOAuth=GETANDREFRESH;")
$conn.Open()
Instantiate the SAPConcurDataAdapter, execute an SQL query, and output the results:
$sql="SELECT Id, OfficeId from Departments"
$da= New-Object System.Data.CData.SAPConcur.SAPConcurDataAdapter($sql, $conn)
$dt= New-Object System.Data.DataTable
$da.Fill($dt)
$dt.Rows | foreach {
Write-Host $_.id $_.officeid
}
Update-SAPConcur -Connection $SAPConcur -Columns @('Id','OfficeId') -Values @('MyId', 'MyOfficeId') -Table Departments -Id "MyId"
$cmd = New-Object System.Data.CData.SAPConcur.SAPConcurCommand("UPDATE Departments SET Id='1668776136772254' WHERE Id = @myId", $conn)
$cmd.Parameters.Add((New-Object System.Data.CData.SAPConcur.SAPConcurParameter("@myId","10456255-0015501366")))
$cmd.ExecuteNonQuery()
Add-SAPConcur -Connection $SAPConcur -Table Departments -Columns @("Id", "OfficeId") -Values @("MyId", "MyOfficeId")
$cmd = New-Object System.Data.CData.SAPConcur.SAPConcurCommand("INSERT INTO Departments (Id) VALUES (@myId)", $conn)
$cmd.Parameters.Add((New-Object System.Data.CData.SAPConcur.SAPConcurParameter("@myId","1668776136772254")))
$cmd.ExecuteNonQuery()
Remove-SAPConcur -Connection $SAPConcur -Table "Departments" -Id "MyId"
$cmd = New-Object System.Data.CData.SAPConcur.SAPConcurCommand("DELETE FROM Departments WHERE Id=@myId", $conn)
$cmd.Parameters.Add((New-Object System.Data.CData.SAPConcur.SAPConcurParameter("@myId","001d000000YBRseAAH")))
$cmd.ExecuteNonQuery()
CodeProject
Download a free trial of the SAP Concur Data Provider to get started:
Download NowLearn more:
👁 SAP Concur IconRapidly create and deploy powerful .NET applications that integrate with SAP Concur data including Attendees, Entries, Lists, Items, and more!