@sapui5/sap.zen.dsh 1.129.0 → 1.130.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/sap/zen/dsh/.library +1 -1
- package/src/sap/zen/dsh/AnalyticGrid.js +4 -2
- package/src/sap/zen/dsh/Dsh.js +59 -59
- package/src/sap/zen/dsh/applications/0ANALYSIS/localization_da.properties +2 -2
- package/src/sap/zen/dsh/firefly/ff8310.zen.buddha.js +1 -1
- package/src/sap/zen/dsh/i18n/localization/localization_da.properties +1 -1
- package/src/sap/zen/dsh/i18n/localization/localization_lv.properties +2 -2
- package/src/sap/zen/dsh/i18n/localization/localization_mk.properties +1 -1
- package/src/sap/zen/dsh/i18n/localization/localization_th.properties +1 -1
- package/src/sap/zen/dsh/library.js +2 -2
- package/src/sap/zen/dsh/widgets/filterpanel_m_handler.js +2 -2
package/package.json
CHANGED
package/src/sap/zen/dsh/.library
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<vendor>SAP SE</vendor>
|
|
8
8
|
<copyright>SAPUI5
|
|
9
9
|
(c) Copyright 2009-2021 SAP SE. All rights reserved</copyright>
|
|
10
|
-
<version>1.
|
|
10
|
+
<version>1.130.1</version>
|
|
11
11
|
<documentation>Design Studio Runtime Library. Intended only to be used within S/4 HANA Fiori applications.</documentation>
|
|
12
12
|
<appData>
|
|
13
13
|
<jsdoc xmlns="http://www.sap.com/ui5/buildext/jsdoc" >
|
|
@@ -103,9 +103,11 @@ sap.ui.define(
|
|
|
103
103
|
sap.zen.dsh.doReplaceDots = true;
|
|
104
104
|
AnalyticGrid.prototype.init = function() {
|
|
105
105
|
this.parameters = {};
|
|
106
|
-
|
|
106
|
+
|
|
107
|
+
this.dshBaseUrl = URI(sap.ui.resource("sap.zen.dsh", "rt/")).relativeTo(document.baseURI).toString();
|
|
108
|
+
this.repositoryUrl = URI(sap.ui.resource("sap.zen.dsh", "applications/")).relativeTo(document.baseURI).toString();
|
|
109
|
+
|
|
107
110
|
sap.zen.dsh.sapbi_page.staticMimeUrlPrefix = this.dshBaseUrl;
|
|
108
|
-
this.repositoryUrl = URI(sap.ui.resource("sap.zen.dsh","applications/")).absoluteTo(window.location.pathname).toString();
|
|
109
111
|
};
|
|
110
112
|
AnalyticGrid.prototype._initializeInternal = function() {
|
|
111
113
|
if(this.initialized) {
|
package/src/sap/zen/dsh/Dsh.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
(c) Copyright 2009-2021 SAP SE. All rights reserved
|
|
4
4
|
*/
|
|
5
5
|
/*global sap*/
|
|
6
|
-
sap.ui.define(
|
|
6
|
+
sap.ui.define("sap/zen/dsh/Dsh",
|
|
7
7
|
[
|
|
8
8
|
"jquery.sap.global",
|
|
9
9
|
"sap/zen/dsh/library",
|
|
@@ -11,7 +11,7 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
11
11
|
"sap/ui/core/Control",
|
|
12
12
|
"sap/zen/dsh/DshRenderer",
|
|
13
13
|
"sap/viz/library"
|
|
14
|
-
],function(jQuery, dshLib, URI, Control, DshRenderer){
|
|
14
|
+
], function (jQuery, dshLib, URI, Control, DshRenderer) {
|
|
15
15
|
"use strict";
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
@@ -110,72 +110,72 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
110
110
|
* @name sap.zen.dsh.Dsh
|
|
111
111
|
*/
|
|
112
112
|
var Dsh = Control.extend("sap.zen.dsh.Dsh", /** @lends sap.zen.dsh.Dsh.prototype */ {
|
|
113
|
-
metadata
|
|
114
|
-
library
|
|
115
|
-
properties
|
|
113
|
+
metadata: {
|
|
114
|
+
library: "sap.zen.dsh",
|
|
115
|
+
properties: {
|
|
116
116
|
|
|
117
117
|
/**
|
|
118
118
|
* Name of the Design Studio application to be opened.
|
|
119
119
|
*/
|
|
120
|
-
dshAppName
|
|
121
|
-
type
|
|
122
|
-
group
|
|
123
|
-
defaultValue
|
|
120
|
+
dshAppName: {
|
|
121
|
+
type: "string",
|
|
122
|
+
group: "Misc",
|
|
123
|
+
defaultValue: "0ANALYSIS"
|
|
124
124
|
},
|
|
125
125
|
/**
|
|
126
126
|
* Path to application specified by dshAppName
|
|
127
127
|
*/
|
|
128
|
-
repoPath
|
|
128
|
+
repoPath: { type: "string", group: "Misc", defaultValue: null },
|
|
129
129
|
|
|
130
130
|
/**
|
|
131
131
|
* Desired width of the Design Studio Control
|
|
132
132
|
*/
|
|
133
|
-
width
|
|
133
|
+
width: { type: "sap.ui.core.CSSSize", group: "Misc", defaultValue: null },
|
|
134
134
|
|
|
135
135
|
/**
|
|
136
136
|
* Desired height of the Design Studio Control
|
|
137
137
|
*/
|
|
138
|
-
height
|
|
138
|
+
height: { type: "sap.ui.core.CSSSize", group: "Misc", defaultValue: null },
|
|
139
139
|
|
|
140
140
|
/**
|
|
141
141
|
* the type of deployment
|
|
142
142
|
*/
|
|
143
|
-
deployment
|
|
143
|
+
deployment: { type: "string", group: "Misc", defaultValue: "bw" },
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
146
|
* the protocol
|
|
147
147
|
*/
|
|
148
|
-
protocol
|
|
148
|
+
protocol: { type: "string", group: "Misc", defaultValue: null },
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
151
|
* the client
|
|
152
152
|
*/
|
|
153
|
-
client
|
|
153
|
+
client: { type: "string", group: "Misc", defaultValue: null },
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* the language
|
|
157
157
|
*/
|
|
158
|
-
language
|
|
158
|
+
language: { type: "string", group: "Misc", defaultValue: null },
|
|
159
159
|
|
|
160
160
|
/**
|
|
161
161
|
* the semantic mappings
|
|
162
162
|
*/
|
|
163
|
-
semanticMappings
|
|
163
|
+
semanticMappings: { type: "object", group: "Misc", defaultValue: null },
|
|
164
164
|
|
|
165
165
|
/**
|
|
166
166
|
* the application component
|
|
167
167
|
*/
|
|
168
|
-
appComponent
|
|
168
|
+
appComponent: { type: "object", group: "Misc", defaultValue: null },
|
|
169
169
|
|
|
170
170
|
/**
|
|
171
171
|
* whether to defer the creation
|
|
172
172
|
*/
|
|
173
|
-
deferCreation
|
|
173
|
+
deferCreation: { type: "boolean", group: "Misc", defaultValue: false },
|
|
174
174
|
|
|
175
175
|
/**
|
|
176
176
|
* the system alias
|
|
177
177
|
*/
|
|
178
|
-
systemAlias
|
|
178
|
+
systemAlias: { type: "string", group: "Misc", defaultValue: null }
|
|
179
179
|
}
|
|
180
180
|
},
|
|
181
181
|
renderer: DshRenderer
|
|
@@ -188,32 +188,33 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
188
188
|
sap.zen.dsh.DSH_deployment = true;
|
|
189
189
|
var sapbi_ajaxHandler = sapbi_ajaxHandler || {};
|
|
190
190
|
sap.zen.dsh.sapbi_page = sap.zen.dsh.sapbi_page || {};
|
|
191
|
-
sap.zen.dsh.sapbi_page.getParameter = sap.zen.dsh.sapbi_page.getParameter || function(){return "";};
|
|
192
|
-
sap.zen.dsh.sapbi_page.staticMimeUrlPrefix = sap.ui.resource("sap.zen.dsh","rt/");
|
|
191
|
+
sap.zen.dsh.sapbi_page.getParameter = sap.zen.dsh.sapbi_page.getParameter || function () { return ""; };
|
|
192
|
+
sap.zen.dsh.sapbi_page.staticMimeUrlPrefix = sap.ui.resource("sap.zen.dsh", "rt/");
|
|
193
193
|
|
|
194
194
|
sap.zen.dsh.doReplaceDots = true;
|
|
195
|
-
Dsh.prototype.init = function() {
|
|
195
|
+
Dsh.prototype.init = function () {
|
|
196
196
|
this.initial = true;
|
|
197
197
|
this.rendered = false;
|
|
198
198
|
this.parameters = {};
|
|
199
|
-
|
|
199
|
+
|
|
200
200
|
this.dshBaseAppUrlBW = "/sap/bw/Mime";
|
|
201
|
+
this.dshBaseUrl = URI(sap.ui.resource("sap.zen.dsh", "widgets/")).relativeTo(document.baseURI).toString();
|
|
201
202
|
};
|
|
202
203
|
|
|
203
204
|
/**
|
|
204
205
|
* Create Page
|
|
205
206
|
*/
|
|
206
|
-
Dsh.prototype.createPage = function() {
|
|
207
|
+
Dsh.prototype.createPage = function () {
|
|
207
208
|
this.doIt();
|
|
208
209
|
};
|
|
209
210
|
|
|
210
211
|
/**
|
|
211
212
|
* DoInit
|
|
212
213
|
*/
|
|
213
|
-
Dsh.prototype.doInit = function() {
|
|
214
|
+
Dsh.prototype.doInit = function () {
|
|
214
215
|
//0ANALYSIS will always come from our library for now. This will be cleaned up later.
|
|
215
216
|
if (this.getDshAppName() === "0ANALYSIS" || this.getDshAppName() === "0ANALYTIC_GRID") {
|
|
216
|
-
this.setRepoPath(URI(sap.ui.resource("sap.zen.dsh","applications/")).
|
|
217
|
+
this.setRepoPath(URI(sap.ui.resource("sap.zen.dsh", "applications/")).relativeTo(document.baseURI).toString());
|
|
217
218
|
}
|
|
218
219
|
|
|
219
220
|
if (this.getRepoPath() !== "") {
|
|
@@ -233,7 +234,7 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
233
234
|
|
|
234
235
|
var that = this;
|
|
235
236
|
if (!this.getDeferCreation()) {
|
|
236
|
-
setTimeout(function(){
|
|
237
|
+
setTimeout(function () {
|
|
237
238
|
that.doIt();
|
|
238
239
|
}, 0);
|
|
239
240
|
}
|
|
@@ -242,14 +243,14 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
242
243
|
/**
|
|
243
244
|
* DoIt: create the Page Control
|
|
244
245
|
*/
|
|
245
|
-
Dsh.prototype.doIt = function() {
|
|
246
|
+
Dsh.prototype.doIt = function () {
|
|
246
247
|
this.doInit();
|
|
247
248
|
sap.zen.dsh.scriptLoaded = true;
|
|
248
249
|
|
|
249
250
|
var that = this;
|
|
250
251
|
{
|
|
251
252
|
var language = that.getLanguage();
|
|
252
|
-
if(!language){
|
|
253
|
+
if (!language) {
|
|
253
254
|
var oConfig = sap.ui.getCore().getConfiguration();
|
|
254
255
|
|
|
255
256
|
language = oConfig.getSAPLogonLanguage();
|
|
@@ -260,16 +261,15 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
260
261
|
}
|
|
261
262
|
|
|
262
263
|
var client = that.getClient();
|
|
263
|
-
if(!client && window.document.cookie){
|
|
264
|
+
if (!client && window.document.cookie) {
|
|
264
265
|
var match = /(?:sap-usercontext=)*sap-client=(\d{3})/.exec(window.document.cookie);
|
|
265
|
-
if (match && match[1])
|
|
266
|
-
{
|
|
266
|
+
if (match && match[1]) {
|
|
267
267
|
client = match[1];
|
|
268
268
|
}
|
|
269
269
|
}
|
|
270
270
|
|
|
271
271
|
var deployment = that.getDeployment();
|
|
272
|
-
if(!deployment || deployment.length===0){
|
|
272
|
+
if (!deployment || deployment.length === 0) {
|
|
273
273
|
deployment = "bw";
|
|
274
274
|
}
|
|
275
275
|
|
|
@@ -319,14 +319,14 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
319
319
|
if (this.rendered) {
|
|
320
320
|
this._page.handleAfterRenderingOfRootControl();
|
|
321
321
|
}
|
|
322
|
-
if(!sap.zen.dsh.wnd){
|
|
322
|
+
if (!sap.zen.dsh.wnd) {
|
|
323
323
|
sap.zen.dsh.wnd = {};
|
|
324
324
|
}
|
|
325
325
|
sap.zen.dsh.wnd[this._page.getPageIdForScripting()] = this._page;
|
|
326
326
|
|
|
327
327
|
sap.zen.dsh.sapbi_page = sap.zen.dsh.sapbi_page || {};
|
|
328
328
|
sap.zen.dsh.sapbi_page.staticMimeUrlPrefix = this.dshBaseUrl;
|
|
329
|
-
sap.zen.dsh.sapbi_page.getParameter = function(){return "";};
|
|
329
|
+
sap.zen.dsh.sapbi_page.getParameter = function () { return ""; };
|
|
330
330
|
sap.zen.dsh.sapbi_MIMES_PIXEL = "";
|
|
331
331
|
|
|
332
332
|
//set appComponent on frontend sapbi_page, in case it is passed in.
|
|
@@ -349,7 +349,7 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
349
349
|
* OnAfterRendering:
|
|
350
350
|
* Rendering of the Base Control is complete
|
|
351
351
|
*/
|
|
352
|
-
Dsh.prototype.onAfterRendering = function(){
|
|
352
|
+
Dsh.prototype.onAfterRendering = function () {
|
|
353
353
|
this.doInit();
|
|
354
354
|
if (this._page) {
|
|
355
355
|
this._page.handleAfterRenderingOfRootControl();
|
|
@@ -360,8 +360,8 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
360
360
|
/**
|
|
361
361
|
* Log Off
|
|
362
362
|
*/
|
|
363
|
-
Dsh.prototype.logoff = function(){
|
|
364
|
-
if (this._page && !this.loggedOff){
|
|
363
|
+
Dsh.prototype.logoff = function () {
|
|
364
|
+
if (this._page && !this.loggedOff) {
|
|
365
365
|
this.loggedOff = true;
|
|
366
366
|
sap.zen.dsh.buddhaHasSendLock++;
|
|
367
367
|
this._page.exec("APPLICATION.logoff();");
|
|
@@ -371,7 +371,7 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
371
371
|
/**
|
|
372
372
|
* Exit
|
|
373
373
|
*/
|
|
374
|
-
Dsh.prototype.exit = function(){
|
|
374
|
+
Dsh.prototype.exit = function () {
|
|
375
375
|
this.logoff();
|
|
376
376
|
|
|
377
377
|
var oRootAbsLayout = sap.ui.getCore().byId(this.sId + "ROOT_absolutelayout");
|
|
@@ -389,14 +389,14 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
389
389
|
/**
|
|
390
390
|
* Add Parameter
|
|
391
391
|
*/
|
|
392
|
-
Dsh.prototype.addParameter = function(name, value) {
|
|
392
|
+
Dsh.prototype.addParameter = function (name, value) {
|
|
393
393
|
this.parameters[name] = value;
|
|
394
394
|
};
|
|
395
395
|
|
|
396
396
|
/**
|
|
397
397
|
* Check if Parameter exists
|
|
398
398
|
*/
|
|
399
|
-
Dsh.prototype.doesParameterExist = function(name) {
|
|
399
|
+
Dsh.prototype.doesParameterExist = function (name) {
|
|
400
400
|
if (this.parameters[name]) {
|
|
401
401
|
return true;
|
|
402
402
|
}
|
|
@@ -406,7 +406,7 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
406
406
|
/**
|
|
407
407
|
* Retrieve StartUp Parameters of Application Component we are called by
|
|
408
408
|
*/
|
|
409
|
-
Dsh.prototype.getStartupParameters = function() {
|
|
409
|
+
Dsh.prototype.getStartupParameters = function () {
|
|
410
410
|
if (this.getAppComponent()) {
|
|
411
411
|
if (this.getAppComponent().getComponentData()) {
|
|
412
412
|
return this.getAppComponent().getComponentData().startupParameters;
|
|
@@ -418,7 +418,7 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
418
418
|
/**
|
|
419
419
|
* Check if Parameter belongs to us
|
|
420
420
|
*/
|
|
421
|
-
Dsh.prototype.isDshParameter = function(name) {
|
|
421
|
+
Dsh.prototype.isDshParameter = function (name) {
|
|
422
422
|
if (name === "XTITLE" || name === "XQUERY" || name === "XDISPLAY" || name === "XCHART_TYPE" || name === "XPROMPT" || name === "XVISIBLEPROMPTS" || name === "XDATALIMIT_ROWS" || name === "XDATALIMIT_COLS" || name == "XEXCEL_VERSION") {
|
|
423
423
|
return true;
|
|
424
424
|
}
|
|
@@ -428,35 +428,35 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
428
428
|
/**
|
|
429
429
|
* Execure Script Function
|
|
430
430
|
*/
|
|
431
|
-
Dsh.prototype.executeScript = function(script){
|
|
431
|
+
Dsh.prototype.executeScript = function (script) {
|
|
432
432
|
this.page.exec(script);
|
|
433
433
|
};
|
|
434
434
|
|
|
435
435
|
/**
|
|
436
436
|
* Get DataSource
|
|
437
437
|
*/
|
|
438
|
-
Dsh.prototype.getDataSource = function(name){
|
|
438
|
+
Dsh.prototype.getDataSource = function (name) {
|
|
439
439
|
return this.page.getDataSource(name);
|
|
440
440
|
};
|
|
441
441
|
|
|
442
442
|
/**
|
|
443
443
|
* Get Component
|
|
444
444
|
*/
|
|
445
|
-
Dsh.prototype.getComponent = function(name){
|
|
445
|
+
Dsh.prototype.getComponent = function (name) {
|
|
446
446
|
return this.page.getComponent(name);
|
|
447
447
|
};
|
|
448
448
|
|
|
449
449
|
/**
|
|
450
450
|
* Get Page
|
|
451
451
|
*/
|
|
452
|
-
Dsh.prototype.getPage = function(){
|
|
452
|
+
Dsh.prototype.getPage = function () {
|
|
453
453
|
return this.page;
|
|
454
454
|
};
|
|
455
455
|
|
|
456
456
|
/**
|
|
457
457
|
* Get Semantic Mappings
|
|
458
458
|
*/
|
|
459
|
-
Dsh.prototype.getMapping = function(sName){
|
|
459
|
+
Dsh.prototype.getMapping = function (sName) {
|
|
460
460
|
if (this.getSemanticMappings() && this.getSemanticMappings()[sName]) {
|
|
461
461
|
return this.getSemanticMappings()[sName];
|
|
462
462
|
}
|
|
@@ -466,7 +466,7 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
466
466
|
/**
|
|
467
467
|
* Initialize App State Data
|
|
468
468
|
*/
|
|
469
|
-
Dsh.prototype.initializeAppStateData = function(oStateData, oNavParams) {
|
|
469
|
+
Dsh.prototype.initializeAppStateData = function (oStateData, oNavParams) {
|
|
470
470
|
function addMappedValuesToObject(oMapping, oValueHolder, sValue) {
|
|
471
471
|
if (Array.isArray(oMapping)) {
|
|
472
472
|
for (var entry in oMapping) {
|
|
@@ -479,7 +479,7 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
479
479
|
}
|
|
480
480
|
else {
|
|
481
481
|
if (
|
|
482
|
-
!Object.prototype.hasOwnProperty.call(oValueHolder,oMapping)
|
|
482
|
+
!Object.prototype.hasOwnProperty.call(oValueHolder, oMapping)
|
|
483
483
|
) {
|
|
484
484
|
oValueHolder[oMapping] = sValue;
|
|
485
485
|
}
|
|
@@ -529,7 +529,7 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
529
529
|
}
|
|
530
530
|
|
|
531
531
|
if (aSelectOptions) {
|
|
532
|
-
for (
|
|
532
|
+
for (i = 0; i < aSelectOptions.length; ++i) {
|
|
533
533
|
var oSelectOption = aSelectOptions[i];
|
|
534
534
|
|
|
535
535
|
// do not add allowed URL parameters to navigation parameters
|
|
@@ -545,7 +545,7 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
545
545
|
var oRange = aRanges[j];
|
|
546
546
|
|
|
547
547
|
//Skip if this value uses an unsupported operation
|
|
548
|
-
if (["EQ","BT","GE","LE","GT","LT"].indexOf(oRange.Option) == -1) {
|
|
548
|
+
if (["EQ", "BT", "GE", "LE", "GT", "LT"].indexOf(oRange.Option) == -1) {
|
|
549
549
|
continue;
|
|
550
550
|
}
|
|
551
551
|
|
|
@@ -554,10 +554,10 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
554
554
|
filterValue = oRange.Low;
|
|
555
555
|
} else {
|
|
556
556
|
filterValue = {
|
|
557
|
-
exclude
|
|
558
|
-
operation
|
|
559
|
-
from
|
|
560
|
-
to
|
|
557
|
+
exclude: oRange.Sign === "E" || undefined,
|
|
558
|
+
operation: oRange.Option,
|
|
559
|
+
from: oRange.Low,
|
|
560
|
+
to: oRange.High
|
|
561
561
|
};
|
|
562
562
|
}
|
|
563
563
|
aFilters.push(filterValue);
|
|
@@ -576,11 +576,11 @@ sap.ui.define( "sap/zen/dsh/Dsh",
|
|
|
576
576
|
/**
|
|
577
577
|
* Initialize App State
|
|
578
578
|
*/
|
|
579
|
-
Dsh.prototype.initializeAppState = function(oStartupAppState, oNavParams){
|
|
579
|
+
Dsh.prototype.initializeAppState = function (oStartupAppState, oNavParams) {
|
|
580
580
|
if (oStartupAppState) {
|
|
581
581
|
var oStateData = {};
|
|
582
582
|
//Do stuff with state
|
|
583
|
-
if (oStartupAppState.getData && typeof oStartupAppState.getData === "function"
|
|
583
|
+
if (oStartupAppState.getData && typeof oStartupAppState.getData === "function") {
|
|
584
584
|
oStateData = oStartupAppState.getData();
|
|
585
585
|
}
|
|
586
586
|
this.initializeAppStateData(oStateData, oNavParams);
|
|
@@ -37,7 +37,7 @@ DD_CHART_TYPE.HORIZONTAL_BAR=Bj\u00E6lkediagram
|
|
|
37
37
|
|
|
38
38
|
DD_CHART_TYPE.HORIZONTAL_STACKED_BAR=Bj\u00E6lke - stablet
|
|
39
39
|
|
|
40
|
-
DD_CHART_TYPE.LINE=
|
|
40
|
+
DD_CHART_TYPE.LINE=Linjediagram
|
|
41
41
|
|
|
42
42
|
DD_CHART_TYPE.MULTIPIE=Cirkel - multipel
|
|
43
43
|
|
|
@@ -129,7 +129,7 @@ DD_CHART_TYPE.INFO_COLUMN=S\u00F8jler
|
|
|
129
129
|
|
|
130
130
|
DD_CHART_TYPE.INFO_BAR=Bj\u00E6lke
|
|
131
131
|
|
|
132
|
-
DD_CHART_TYPE.INFO_LINE=
|
|
132
|
+
DD_CHART_TYPE.INFO_LINE=Linjer
|
|
133
133
|
|
|
134
134
|
DD_CHART_TYPE.INFO_PIE=Cirkel
|
|
135
135
|
|
|
@@ -8085,7 +8085,7 @@ sap.zen.TemplateLoader.prototype.getContentAsString = function()
|
|
|
8085
8085
|
loRequest.setAcceptContentType(oFF.ContentType.APPLICATION_XML);
|
|
8086
8086
|
loRequest.setTextContentEncoding("UTF-8");
|
|
8087
8087
|
let loResponse = loHttpClient.processHttpRequest(oFF.SyncType.BLOCKING, null, null);
|
|
8088
|
-
if (loResponse.isValid() && loResponse.getData() !== null)
|
|
8088
|
+
if (loResponse.isValid() && loResponse.getData() !== null && loResponse.getData().getStatusCode() < 400)
|
|
8089
8089
|
{
|
|
8090
8090
|
return loResponse.getData().getString();
|
|
8091
8091
|
}
|
|
@@ -292,7 +292,7 @@ com.sap.ip.bi.zen.rt.components.contextmenu.impl.no_drillpath=Ingen detailsti
|
|
|
292
292
|
com.sap.ip.bi.zen.rt.components.filterpanel.impl.varclearfilter=Nulstil ledetekster
|
|
293
293
|
com.sap.ip.bi.zen.rt.components.contextmenu.impl.change_drilldown=\u00C6ndr drilldown
|
|
294
294
|
com.sap.ip.bi.zen.rt.components.filterpanel.impl.MORE_THAN_MAX_MEMBERS=Flere entries er tilg\u00E6ngelige. Indgr\u00E6ns din s\u00F8gning.
|
|
295
|
-
com.sap.ip.bi.zen.rt.components.filterpanel.impl.usesearch=Anvend s\
|
|
295
|
+
com.sap.ip.bi.zen.rt.components.filterpanel.impl.usesearch=Anvend s\u00F8gelinjen til at begr\u00E6nse resultatm\u00E6ngden
|
|
296
296
|
com.sap.zen.firefly.impl.CONTEXTMENU_suppress_zeros_columns=Undertryk nuller i kolonner
|
|
297
297
|
com.sap.ip.bi.zen.rt.components.contextmenu.impl.include_members=Inkluder kun elementer
|
|
298
298
|
com.sap.zen.firefly.impl.CONTEXTMENU_lower_level_node_alignment=Justering af underordnede knuder
|
|
@@ -244,7 +244,7 @@ com.sap.ip.bi.zen.rt.components.contextmenu.impl.operator_add=Pievienot
|
|
|
244
244
|
com.sap.ip.bi.zen.rt.components.filterpanel.impl.pauserefresh=Pauz\u0113t atsvaidzin\u0101\u0161anu
|
|
245
245
|
com.sap.ip.bi.zen.rt.components.ds.impl.ERROR_DS_NOT_CONFIGURED_AS_PLANNING_SYSTEM=Datu avota "{0}" savienojums nav konfigur\u0113ts k\u0101 pl\u0101no\u0161anas savienojums.
|
|
246
246
|
com.sap.ip.bi.bundle.zen.rt.components.command.resolver.CONVERT_UNSUPPORTED_METHOD=\u0160\u012B metode netiek atbalst\u012Bta
|
|
247
|
-
com.sap.ip.bi.zen.rt.components.filterpanel.impl.measures=M\
|
|
247
|
+
com.sap.ip.bi.zen.rt.components.filterpanel.impl.measures=M\u0113ri
|
|
248
248
|
com.sap.ip.bi.zen.rt.components.contextmenu.impl.filter_by_measure=Filtr\u0113t p\u0113c m\u0113r\u012Bjuma
|
|
249
249
|
com.sap.ip.bi.zen.rt.components.ds.impl.UNKNOWN_DIMENSION=Dimensija "{0}\u201D nepast\u0101v.
|
|
250
250
|
com.sap.ip.bi.ui.nonur.zen.table.SORTED_DESCENDING=K\u0101rtots dilsto\u0161\u0101 sec\u012Bb\u0101. Atlas\u012Bt, lai k\u0101rtotu augo\u0161\u0101 sec\u012Bb\u0101.
|
|
@@ -456,7 +456,7 @@ com.sap.zen.firefly.impl.TEXT_INFOPROVIDER_DESCRIPTION=InfoProvider apraksts
|
|
|
456
456
|
com.sap.ip.bi.zen.rt.components.contextmenu.impl.medium_text=Vid\u0113js apraksts
|
|
457
457
|
com.sap.ip.bi.zen.rt.components.contextmenu.impl.hierarchy_select=Atlas\u012Bt hierarhiju
|
|
458
458
|
com.sap.ip.bi.zen.rt.components.filterpanel.impl.toomany=P\u0101r\u0101k daudz rezult\u0101tu. M\u0113\u0123iniet preciz\u0113t mekl\u0113\u0161anu.
|
|
459
|
-
com.sap.ip.bi.ui.nonur.zen.table.MeasureStructureText=M\
|
|
459
|
+
com.sap.ip.bi.ui.nonur.zen.table.MeasureStructureText=M\u0113ri
|
|
460
460
|
com.sap.ip.bi.zen.rt.framework.impl.services.command.resolver.ip_descr=InfoProvider apraksts
|
|
461
461
|
com.sap.ip.bi.zen.rt.components.contextmenu.impl.DRILLPATH_SELECT=Urb\u0161anas ce\u013Cs...
|
|
462
462
|
com.sap.ip.bi.zen.rt.components.contextmenu.impl.based_on_measure=Balt\u012Bts uz m\u0113rvien\u012Bbu
|
|
@@ -204,7 +204,7 @@ com.sap.ip.bi.ui.nonur.zen.table.ERR_RESULTSET_PARAM=\u0413\u0440\u0435\u0448\u0
|
|
|
204
204
|
com.sap.zen.firefly.impl.CONTEXTMENU_medium_text=\u0421\u0440\u0435\u0434\u0435\u043D \u043E\u043F\u0438\u0441
|
|
205
205
|
com.sap.ip.bi.zen.rt.components.contextmenu.impl.default=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u0435\u043D
|
|
206
206
|
com.sap.ip.bi.zen.rt.components.ds.impl.DATASRC_ERR_PARAM=\u041D\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0441\u043E\u0437\u0434\u0430\u0434\u0435 \u0438\u043D\u0441\u0442\u0430\u043D\u0446\u0430 \u0437\u0430 \u0438\u0437\u0432\u043E\u0440\u043E\u0442 \u043D\u0430 \u043F\u043E\u0434\u0430\u0442\u043E\u0446\u0438 \u201E{0}\u201C
|
|
207
|
-
com.sap.zen.firefly.impl.CONDITIONPANEL_OPTION_NUMERIC_ZENNBT=\u043D\u0435 \u0435 \
|
|
207
|
+
com.sap.zen.firefly.impl.CONDITIONPANEL_OPTION_NUMERIC_ZENNBT=\u043D\u0435 \u0435 \u043C\u0435\u0453\u0443
|
|
208
208
|
com.sap.ip.bi.zen.rt.components.contextmenu.impl.back_one_step=\u041F\u043E\u043D\u0438\u0448\u0442\u0438 \u0433\u043E \u043F\u0440\u0435\u0442\u0445\u043E\u0434\u043D\u0438\u043E\u0442 \u0447\u0435\u043A\u043E\u0440
|
|
209
209
|
com.sap.ip.bi.zen.rt.components.contextmenu.impl.collapse=\u0421\u043A\u0440\u0438\u0458 \u0441\u0450
|
|
210
210
|
com.sap.ip.bi.zen.rt.components.ds.impl.WARNING_PROJECTION_IS_CELL=\u0418\u0437\u0431\u0438\u0440\u043E\u0442 \u201E{0}\u201C \u0438\u0437\u0431\u0438\u0440\u0430 \u0435\u0434\u043D\u0430 \u045C\u0435\u043B\u0438\u0458\u0430, \u043D\u043E \u0442\u0440\u0435\u0431\u0430 \u0434\u0430 \u0438\u0437\u0431\u0435\u0440\u0435 \u0441\u0430\u043C\u043E \u0435\u0434\u0435\u043D \u0440\u0435\u0434 \u0438\u043B\u0438 \u0441\u0430\u043C\u043E \u0435\u0434\u043D\u0430 \u043A\u043E\u043B\u043E\u043D\u0430.
|
|
@@ -126,7 +126,7 @@ com.sap.ip.bi.zen.rt.components.contextmenu.impl.disp_units_cells=\u0E41\u0E2A\u
|
|
|
126
126
|
com.sap.ip.bi.zen.rt.components.filterpanel.impl.memberexcluded=\u0E22\u0E2D\u0E14\u0E23\u0E27\u0E21\u0E02\u0E2D\u0E07\u0E2A\u0E21\u0E32\u0E0A\u0E34\u0E01 {0} \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48\u0E22\u0E01\u0E40\u0E27\u0E49\u0E19
|
|
127
127
|
com.sap.ip.bi.ui.nonur.zen.table.UNSORTED=\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E08\u0E31\u0E14\u0E40\u0E23\u0E35\u0E22\u0E07 \u0E40\u0E25\u0E37\u0E2D\u0E01\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E23\u0E35\u0E22\u0E07\u0E25\u0E33\u0E14\u0E31\u0E1A\u0E08\u0E32\u0E01\u0E19\u0E49\u0E2D\u0E22\u0E44\u0E1B\u0E2B\u0E32\u0E21\u0E32\u0E01
|
|
128
128
|
com.sap.zen.firefly.impl.CONTEXTMENU_show_totals_bottom=\u0E41\u0E2A\u0E14\u0E07\u0E22\u0E2D\u0E14\u0E23\u0E27\u0E21\u0E17\u0E35\u0E48\u0E14\u0E49\u0E32\u0E19\u0E25\u0E48\u0E32\u0E07
|
|
129
|
-
com.sap.ip.bi.zen.rt.components.ds.impl.CUSTOM_JSON_PROJECTION_ERROR={0}
|
|
129
|
+
com.sap.ip.bi.zen.rt.components.ds.impl.CUSTOM_JSON_PROJECTION_ERROR={0}.
|
|
130
130
|
com.sap.zen.firefly.impl.ROWS=\u0E41\u0E16\u0E27
|
|
131
131
|
com.sap.zen.firefly.impl.CONTEXTMENU_number_format=\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02
|
|
132
132
|
com.sap.ip.bi.zen.rt.components.filterpanel.impl.remove=\u0E22\u0E49\u0E32\u0E22\u0E2D\u0E2D\u0E01
|
|
@@ -31,7 +31,7 @@ sap.ui.define(
|
|
|
31
31
|
* @alias sap.zen.dsh
|
|
32
32
|
* @public
|
|
33
33
|
* @author SAP SE
|
|
34
|
-
* @version 1.
|
|
34
|
+
* @version 1.130.1
|
|
35
35
|
*/
|
|
36
36
|
var thisLib = sap.ui.getCore().initLibrary(
|
|
37
37
|
{
|
|
@@ -56,7 +56,7 @@ sap.ui.define(
|
|
|
56
56
|
],
|
|
57
57
|
elements: [],
|
|
58
58
|
noLibraryCSS: true,
|
|
59
|
-
version: "1.
|
|
59
|
+
version: "1.130.1"
|
|
60
60
|
}
|
|
61
61
|
);
|
|
62
62
|
|