-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.json
92 lines (92 loc) · 2.45 KB
/
configuration.json
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
[
{
"key": "ConnectionSetName",
"type": "input",
"templateOptions": {
"label": "ConnectionSetName",
"description": "The Name of the SAPConfigParameter set",
"required": true
}
},
{
"key": "HostName",
"type": "input",
"templateOptions": {
"label": "HostName",
"description": "The HostName of the SAP server where the SAP system in installed",
"required": true
}
},
{
"key": "SysId",
"type": "input",
"templateOptions": {
"label": "SysId",
"description": "The ID of the SAP system",
"required": true
}
},
{
"key": "SysNr",
"type": "input",
"templateOptions": {
"label": "SysNr",
"description": "The Number of SAP system",
"required": true
}
},
{
"key": "Client",
"type": "input",
"templateOptions": {
"label": "Client",
"description": "The Client of the SAP system",
"required": true
}
},
{
"key": "UserName",
"type": "input",
"templateOptions": {
"label": "UserName",
"description": "The UserName to connect the SAP system",
"required": true
}
},
{
"key": "Password",
"type": "input",
"templateOptions": {
"label": "Password",
"description": "The Password to connect the SAP system",
"required": true
}
},
{
"key": "SAPdllDirectoryPath",
"type": "input",
"templateOptions": {
"label": "SAPdllDirectoryPath",
"description": "The directory where the SAP connector dll's are located",
"required": true
}
},
{
"key": "FunctionCall",
"type": "input",
"templateOptions": {
"label": "FunctionCall",
"description": "The name of the functionCall. This is specified within SAP. The function call must be configured to retrieve the requested data from SAP",
"required": true
}
},
{
"key": "TableName",
"type": "input",
"templateOptions": {
"label": "TableName",
"description": "The name of the table in which the user data is stored",
"required": true
}
}
]