Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Importing data via New-WebServiceProxy from SAP ES with PowerShell
# 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