-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersons.ps1
273 lines (215 loc) · 7.63 KB
/
persons.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
#####################################################
# HelloID-Conn-Prov-SOURCE-SAP
#
# Version: 1.0.0
#
# Requirements:
#
# SAP connector DLL's
# Windows PowerShell 5.1
#####################################################
function Import-SAPPersonData {
<#
.SYNOPSIS
Imports the SAP persons into HelloID
.DESCRIPTION
Imports the SAP persons into HelloID
.PARAMETER ConnectionSetName
The Name of the SAPConfigParameter set
.PARAMETER HostName
The HostName of the SAP server where the SAP system in installed
.PARAMETER SysId
The ID of the SAP system
.PARAMETER SysNr
The Number of SAP system
.PARAMETER Client
The Client of the SAP system
.PARAMETER UserName
The UserName to connect the SAP system
.PARAMETER Password
The Password to connect the SAP system
.PARAMETER SAPdllDirectoryPath
The directory where the SAP connector dll's are located
.PARAMETER FunctionCall
The name of the functionCall. This is specified within SAP. The function call must be configured to retrieve the requested data from SAP
.PARAMETER TableName
The name of the table in which the user data is stored
#>
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[String]
$ConnectionSetName,
[Parameter(Mandatory)]
[String]
$HostName,
[Parameter(Mandatory)]
[String]
$SysId,
[Parameter(Mandatory)]
[String]
$SysNr,
[Parameter(Mandatory)]
[String]
$Client,
[Parameter(Mandatory)]
[String]
$UserName,
[Parameter(Mandatory)]
[SecureString]
$Password,
[String]
$SAPdllDirectoryPath,
[Parameter(Mandatory)]
[String]
$FunctionCall,
[Parameter(Mandatory)]
[String]
$TableName
)
try {
$splatInitilizeSAPEnvironment = @{
Name = $ConnectionSetName
HostName = $HostName
SysID = $SysId
SysNR = $SysNr
Client = $Client
UserName = $UserName
Password = $Password
SAPdllDirectoryPath = $SAPdllDirectoryPath
}
$connectionSettings = Initialize-SAPEnvironment @splatInitilizeSAPEnvironment
} catch {
Write-Error "could not initialize SAP environment. Error: $($_.Exception.Message)"
}
try {
$persons = Get-SAPUser -ConnectionSettings $connectionSettings -FunctionCall $FunctionCall -TableName $TableName
foreach ($person in $persons){
$person | ConvertTo-Json -Depth 10
}
} catch {
Write-Error "could not import SAP persons in HelloID. Error: $($_.Exception.Message)"
}
}
function Initialize-SAPEnvironment {
<#
.SYNOPSIS
Creates a new object containing the SAP config parameters
.DESCRIPTION
Creates a new object of type [SAP.Middleware.Connector.RfcConfigParameters] that will be used to connect to SAP
.PARAMETER ConnectionSetName
The Name of the SAPConfigParameter set
.PARAMETER HostName
The HostName of the SAP server where the SAP system in installed
.PARAMETER SysId
The ID of the SAP system
.PARAMETER SysNr
The Number of SAP system
.PARAMETER Client
The Client of the SAP system
.PARAMETER UserName
The UserName to connect the SAP system
.PARAMETER Password
The Password to connect the SAP system
.PARAMETER SAPdllDirectoryPath
The directory where the SAP connector dll's are located
#>
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[String]
$ConnectionSetName,
[Parameter(Mandatory)]
[String]
$HostName,
[Parameter(Mandatory)]
[String]
$SysId,
[Parameter(Mandatory)]
[String]
$SysNr,
[Parameter(Mandatory)]
[String]
$Client,
[Parameter(Mandatory)]
[String]
$UserName,
[Parameter(Mandatory)]
[SecureString]
$Password,
[String]
$SAPdllDirectoryPath
)
try {
Add-Type -Path "$SAPdllDirectoryPath\sapnco.dll"
Add-Type -Path "$SAPdllDirectoryPath\sapnco_utils.dll"
$bstr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($Password)
$passwordString = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($bstr)
$cfgParams = New-Object SAP.Middleware.Connector.RfcConfigParameters
$cfgParams.Add("NAME", $ConnectionSetName)
$cfgParams.Add("ASHOST", $HostName)
$cfgParams.Add("SYSID", $SysId)
$cfgParams.Add("SYSNR", $SysNr)
$cfgParams.Add("CLIENT", $Client)
$cfgParams.Add("USER", $UserName)
$cfgParams.Add("PASSWD", $passwordString)
Write-Output $cfgParams
} catch {
$PSCmdlet.ThrowTerminatingError($PSItem)
}
}
function Get-SAPUser {
<#
.SYNOPSIS
Example call that shows how to retrieve data from SAP
.DESCRIPTION
This is an example function that shows how to retrieve data from the SAP system using bapi function calls. This function doesn't work out of the box. Changes will have to be made in the code according to your own needs
.PARAMETER ConnectionSettings
The connectionSettings specified on the <Configuration> tab within HelloID
.PARAMETER FunctionCall
The name of the functionCall. This is specified within SAP. The function call must be configured to retrieve the requested data from SAP
.PARAMETER TableName
The name of the table in which the user data is stored
#>
[OutputType([System.Collections.Generic.List[object]])]
[CmdletBinding()]
param (
[Parameter(Mandatory)]
$ConnectionSettings,
[Parameter(Mandatory)]
[String]
$FunctionCall,
[Parameter(Mandatory)]
[String]
$TableName
)
try {
$destination = [SAP.Middleware.Connector.RfcDestinationManager]::GetDestination($ConnectionSettings)
$repository = $destination.Repository
[SAP.Middleware.Connector.IRfcFunction]$bapiFunctionCall = $repository.CreateFunction($FunctionCall)
$bapiFunctionCall.Invoke($destination)
[System.Collections.Generic.List[object]]$resultList = @()
[SAP.Middleware.Connector.IRfcTable]$returnData = $bapiFunctionCall.GetTable($TableName)
foreach ($item in $returnData) {
$obj = [PSCustomObject]@{
"ExternalID" = $user.GetValue("EXTERNAL_ID")
"Initials" = $user.GetValue("INITIALS")
"NickName" = $user.GetValue("NICKNAME")
"GivenName" = $user.GetValue("GIVEN_NAME")
"FamilyNamePrefix" = $user.GetValue("FAMILY_NAME_PREFIX")
"FamilyName" = $user.GetValue("FAMILY_NAME")
"FamilyNamePartnerPrefix" = $user.GetValue("FAMILY_NAME_PARTNER_PREFIX")
"FamilyNamePartner" = $user.GetValue("FAMILY_NAME_PARTNER")
"FamilyNameFormatted" = $user.GetValue("FAMILY_NAME_FORMATTED")
"NameSeperator" = $user.GetValue("NAME_SEPARATOR")
"Convention" = $user.GetValue("CONVENTION")
"Birthdate" = $user.GetValue("BIRTHDATE")
"Phone" = $user.GetValue("PHONE")
}
$resultList.Add($obj)
}
Write-Output $resultList
} catch {
$PSCmdlet.ThrowTerminatingError($PSItem)
}
}