Cmdlets for SAP BusinessObjects BI

Build 25.0.9434

Update-SAPBusinessObjectsBI Cmdlet

Parameters   Output Objects  

Updates SAP BusinessObjects BI data.

Syntax

Update-SAPBusinessObjectsBI [parameters]

Remarks

The Update-SAPBusinessObjectsBI cmdlet allows you to use a syntax similar to SQL UPDATE statements to update SAP BusinessObjects BI data.

$conn = Connect-SAPBusinessObjectsBI -User "MyUser" -Password "MyPassword" -Url "http://myserver:6405/biprws"
Update-SAPBusinessObjectsBI -Connection $conn -Table "MyCustomReport" -Columns @("Column1") -Values @("Jon Doe") -Id "6"
The Where parameter can also be used to specify the primary key of the table:
Update-SAPBusinessObjectsBI -Connection $conn -Table "MyCustomReport" -Columns @("Column1") -Values @("Jon Doe") -Where "Id = '6'"
The primary key can also be passed to the cmdlet along the pipeline:
Select-SAPBusinessObjectsBI -Connection $conn -Table MyCustomReport -Where "Column2 = 'Bob'" | Update-SAPBusinessObjectsBI -Columns @("Column2") -Values @("Bob 2")

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9434