Created
August 3, 2018 11:38
-
-
Save puttyq/fed18f928f402d692757695bc77a5636 to your computer and use it in GitHub Desktop.
Importing data via New-WebServiceProxy from SAP ES with PowerShell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create function object | |
$getList = New-Object SAP.BAPI_USER_GETLIST | |
# Create a return object | |
$getList.USERLIST = New-Object SAP.BAPIUSNAME | |
# Execute function call | |
$getList = $proxyUser.BAPI_USER_GETLIST($getList) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment