@sap/open.fe 1.99.0 → 1.100.0
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/packages/sap.fe.common/src/sap/fe/common/.library +1 -1
- package/packages/sap.fe.common/src/sap/fe/common/.theming +1 -1
- package/packages/sap.fe.common/src/sap/fe/common/MessageButton-dbg.js +1748 -1813
- package/packages/sap.fe.common/src/sap/fe/common/MessageButton.js +2 -3
- package/packages/sap.fe.common/src/sap/fe/common/MessageButton.ts +1801 -0
- package/packages/sap.fe.common/src/sap/fe/common/MessageFilter-dbg.js +77 -32
- package/packages/sap.fe.common/src/sap/fe/common/MessageFilter.js +2 -3
- package/packages/sap.fe.common/src/sap/fe/common/MessageFilter.ts +26 -0
- package/packages/sap.fe.common/src/sap/fe/common/MessagePopover-dbg.js +43 -53
- package/packages/sap.fe.common/src/sap/fe/common/MessagePopover.js +2 -3
- package/packages/sap.fe.common/src/sap/fe/common/MessagePopover.ts +39 -0
- package/packages/sap.fe.common/src/sap/fe/common/library-dbg.js +31 -38
- package/packages/sap.fe.common/src/sap/fe/common/library-h2-preload.js +8 -9
- package/packages/sap.fe.common/src/sap/fe/common/library-h2-preload.js.map +3 -3
- package/packages/sap.fe.common/src/sap/fe/common/library-preload.js +23 -71
- package/packages/sap.fe.common/src/sap/fe/common/library-preload.js.map +4 -4
- package/packages/sap.fe.common/src/sap/fe/common/library.js +4 -5
- package/packages/sap.fe.common/src/sap/fe/common/library.ts +35 -0
- package/packages/sap.fe.common/src/sap/fe/common/manifest.json +3 -3
- package/packages/sap.fe.common/src/sap/fe/common/resources.json +54 -32
- package/packages/sap.fe.common/test/sap/fe/common/designtime/api.json +1 -1
- package/packages/sap.fe.common/test/sap/fe/common/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.common/test/sap/fe/common/designtime/codeassistance/Library.jsmeta.json +1 -1
- package/packages/sap.fe.common/test/sap/fe/common/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/.library +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/.theming +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/AnnotationHelper-dbg.js +1 -69
- package/packages/sap.fe.core/src/sap/fe/core/AnnotationHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/AnnotationHelper.ts +0 -70
- package/packages/sap.fe.core/src/sap/fe/core/AppComponent-dbg.js +388 -399
- package/packages/sap.fe.core/src/sap/fe/core/AppComponent.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/AppComponent.ts +403 -0
- package/packages/sap.fe.core/src/sap/fe/core/AppStateHandler-dbg.js +127 -158
- package/packages/sap.fe.core/src/sap/fe/core/AppStateHandler.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/BaseController-dbg.js +82 -58
- package/packages/sap.fe.core/src/sap/fe/core/BaseController.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/BaseController.ts +68 -0
- package/packages/sap.fe.core/src/sap/fe/core/CommonUtils-dbg.js +111 -20
- package/packages/sap.fe.core/src/sap/fe/core/CommonUtils.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/CommonUtils.ts +131 -32
- package/packages/sap.fe.core/src/sap/fe/core/ExtensionAPI-dbg.js +278 -274
- package/packages/sap.fe.core/src/sap/fe/core/ExtensionAPI.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/ExtensionAPI.ts +250 -0
- package/packages/sap.fe.core/src/sap/fe/core/PageController-dbg.js +157 -29
- package/packages/sap.fe.core/src/sap/fe/core/PageController.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/PageController.ts +60 -32
- package/packages/sap.fe.core/src/sap/fe/core/RouterProxy-dbg.js +694 -756
- package/packages/sap.fe.core/src/sap/fe/core/RouterProxy.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/RouterProxy.ts +11 -9
- package/packages/sap.fe.core/src/sap/fe/core/Synchronization-dbg.js +21 -31
- package/packages/sap.fe.core/src/sap/fe/core/Synchronization.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/TemplateComponent-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/TemplateComponent.ts +10 -3
- package/packages/sap.fe.core/src/sap/fe/core/TemplateModel-dbg.js +20 -38
- package/packages/sap.fe.core/src/sap/fe/core/TemplateModel.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/TemplateModel.ts +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/TransactionHelper-dbg.js +1354 -1370
- package/packages/sap.fe.core/src/sap/fe/core/TransactionHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/TransactionHelper.ts +33 -22
- package/packages/sap.fe.core/src/sap/fe/core/actions/collaboration/ActivitySync-dbg.js +392 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/collaboration/ActivitySync.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/collaboration/ActivitySync.ts +355 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/collaboration/CollaborationCommon-dbg.js +136 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/collaboration/CollaborationCommon.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/collaboration/CollaborationCommon.ts +119 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/collaboration/Manage-dbg.js +262 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/collaboration/Manage.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/collaboration/Manage.ts +244 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/collaboration/ManageDialog.fragment.xml +103 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/collaboration/UserDetails.fragment.xml +13 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/draft-dbg.js +30 -68
- package/packages/sap.fe.core/src/sap/fe/core/actions/draft.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/actions/draft.ts +44 -71
- package/packages/sap.fe.core/src/sap/fe/core/actions/messageHandling-dbg.js +55 -36
- package/packages/sap.fe.core/src/sap/fe/core/actions/messageHandling.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/actions/messageHandling.ts +66 -46
- package/packages/sap.fe.core/src/sap/fe/core/actions/operations-dbg.js +34 -15
- package/packages/sap.fe.core/src/sap/fe/core/actions/operations.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/actions/operations.ts +48 -18
- package/packages/sap.fe.core/src/sap/fe/core/actions/sticky-dbg.js +17 -4
- package/packages/sap.fe.core/src/sap/fe/core/actions/sticky.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/actions/sticky.ts +21 -4
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ControllerExtensionMetadata-dbg.js +69 -66
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ControllerExtensionMetadata.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ControllerExtensionMetadata.ts +65 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/EditFlow-dbg.js +1593 -1669
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/EditFlow.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/EditFlow.ts +1672 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/IntentBasedNavigation-dbg.js +79 -54
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/IntentBasedNavigation.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/IntentBasedNavigation.ts +61 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalEditFlow-dbg.js +718 -779
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalEditFlow.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalEditFlow.ts +783 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation-dbg.js +796 -816
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.ts +803 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalRouting-dbg.js +1004 -1005
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalRouting.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalRouting.ts +978 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement-dbg.js +487 -521
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement.ts +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MassEdit-dbg.js +141 -169
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MassEdit.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MassEdit.ts +156 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MessageHandler-dbg.js +233 -244
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MessageHandler.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MessageHandler.ts +225 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady-dbg.js +301 -336
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady.ts +12 -10
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Paginator-dbg.js +188 -175
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Paginator.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Paginator.ts +163 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Placeholder-dbg.js +157 -149
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Placeholder.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Placeholder.ts +151 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Routing-dbg.js +144 -125
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Routing.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Routing.ts +132 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/RoutingListener-dbg.js +7 -6
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/RoutingListener.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/RoutingListener.ts +3 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Share-dbg.js +230 -268
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Share.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Share.ts +231 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects-dbg.js +592 -633
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects.ts +8 -7
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ViewState-dbg.js +788 -806
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ViewState.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ViewState.ts +805 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/ActionParameterDialog.fragment.xml +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/controls/ActionPartial.fragment.xml +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/controls/CommandExecution-dbg.js +67 -66
- package/packages/sap.fe.core/src/sap/fe/core/controls/CommandExecution.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/CommandExecution.ts +72 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/ConditionalWrapper-dbg.js +90 -75
- package/packages/sap.fe.core/src/sap/fe/core/controls/ConditionalWrapper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/ConditionalWrapper.ts +83 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/CustomQuickViewPage-dbg.js +130 -125
- package/packages/sap.fe.core/src/sap/fe/core/controls/CustomQuickViewPage.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/CustomQuickViewPage.ts +126 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler-dbg.js +103 -112
- package/packages/sap.fe.core/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler.ts +101 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/FieldWrapper-dbg.js +122 -135
- package/packages/sap.fe.core/src/sap/fe/core/controls/FieldWrapper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/FieldWrapper.ts +115 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/FilterBar-dbg.js +162 -159
- package/packages/sap.fe.core/src/sap/fe/core/controls/FilterBar.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/FilterBar.ts +143 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/FormElementWrapper-dbg.js +45 -39
- package/packages/sap.fe.core/src/sap/fe/core/controls/FormElementWrapper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/FormElementWrapper.ts +40 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/MultiValueParameterDelegate-dbg.js +37 -42
- package/packages/sap.fe.core/src/sap/fe/core/controls/MultiValueParameterDelegate.js +1 -2
- package/packages/sap.fe.core/src/sap/fe/core/controls/MultiValueParameterDelegate.ts +31 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/FilterContainer-dbg.js +126 -116
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/FilterContainer.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/FilterContainer.ts +98 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilter-dbg.js +241 -255
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilter.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilter.ts +245 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilterContainer-dbg.js +150 -141
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilterContainer.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilterContainer.ts +125 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils-dbg.js +335 -322
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils.ts +337 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/massEdit/MassEditHandlers-dbg.js +74 -74
- package/packages/sap.fe.core/src/sap/fe/core/controls/massEdit/MassEditHandlers.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controls/massEdit/MassEditHandlers.ts +70 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext-dbg.js +348 -379
- package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext.ts +19 -16
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestSettings-dbg.js +12 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestSettings.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestSettings.ts +12 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper-dbg.js +354 -378
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper.ts +10 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter-dbg.js +6 -4
- package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter.ts +5 -2
- package/packages/sap.fe.core/src/sap/fe/core/converters/TemplateConverter-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/TemplateConverter.ts +2 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/annotations/DataField-dbg.js +26 -12
- package/packages/sap.fe.core/src/sap/fe/core/converters/annotations/DataField.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/annotations/DataField.ts +37 -13
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form-dbg.js +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form.ts +4 -2
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/KPI-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/KPI.ts +3 -2
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table-dbg.js +130 -23
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table.ts +134 -29
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/table/StandardActions-dbg.js +118 -53
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/table/StandardActions.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/table/StandardActions.ts +156 -93
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar-dbg.js +161 -207
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar.ts +148 -206
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Aggregation-dbg.js +115 -133
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Aggregation.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/BindingHelper-dbg.js +20 -6
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/BindingHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/BindingHelper.ts +16 -4
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ConfigurableObject-dbg.js +12 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ConfigurableObject.ts +11 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Key-dbg.js +42 -57
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Key.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Key.ts +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction-dbg.js +25 -4
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.ts +20 -3
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter-dbg.js +10 -4
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter.ts +15 -4
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ObjectPageConverter-dbg.js +7 -5
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ObjectPageConverter.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ObjectPageConverter.ts +5 -1
- package/packages/sap.fe.core/src/sap/fe/core/designtime/AppComponent-dbg.designtime.js +92 -98
- package/packages/sap.fe.core/src/sap/fe/core/designtime/AppComponent.designtime.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/designtime/AppComponent.designtime.ts +91 -0
- package/packages/sap.fe.core/src/sap/fe/core/designtime/library-preload.designtime.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/designtime/library-preload.designtime.js.map +3 -3
- package/packages/sap.fe.core/src/sap/fe/core/formatters/CollaborationFormatter-dbg.js +104 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/CollaborationFormatter.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/CollaborationFormatter.ts +60 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter-dbg.js +53 -2
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter.ts +51 -0
- package/packages/sap.fe.core/src/sap/fe/core/fpm/Component-dbg.js +50 -54
- package/packages/sap.fe.core/src/sap/fe/core/fpm/Component.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/fpm/Component.ts +48 -0
- package/packages/sap.fe.core/src/sap/fe/core/fpm/manifest.json +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/fpm/resources.json +7 -3
- package/packages/sap.fe.core/src/sap/fe/core/helpers/AppStartupHelper-dbg.js +323 -309
- package/packages/sap.fe.core/src/sap/fe/core/helpers/AppStartupHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/AppStartupHelper.ts +363 -337
- package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression-dbg.js +7 -7
- package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression.ts +7 -7
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport-dbg.js +186 -62
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport.ts +168 -52
- package/packages/sap.fe.core/src/sap/fe/core/helpers/DynamicAnnotationPathHelper-dbg.js +5 -4
- package/packages/sap.fe.core/src/sap/fe/core/helpers/DynamicAnnotationPathHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/DynamicAnnotationPathHelper.ts +1 -5
- package/packages/sap.fe.core/src/sap/fe/core/helpers/FPMHelper-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/FPMHelper.ts +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/MassEditHelper-dbg.js +601 -684
- package/packages/sap.fe.core/src/sap/fe/core/helpers/MassEditHelper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/helpers/MassEditHelper.ts +699 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ModelHelper-dbg.js +25 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ModelHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ModelHelper.ts +23 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticDateOperators-dbg.js +5 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticDateOperators.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticDateOperators.ts +4 -0
- package/packages/sap.fe.core/src/sap/fe/core/library-dbg.js +426 -451
- package/packages/sap.fe.core/src/sap/fe/core/library-h2-preload.js +36 -32
- package/packages/sap.fe.core/src/sap/fe/core/library-h2-preload.js.map +3 -3
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.js +644 -738
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.js.map +4 -4
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.support.js +24 -35
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.support.js.map +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/library.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/library.support.js +22 -33
- package/packages/sap.fe.core/src/sap/fe/core/library.support.ts +23 -0
- package/packages/sap.fe.core/src/sap/fe/core/library.ts +420 -0
- package/packages/sap.fe.core/src/sap/fe/core/manifest.json +10 -10
- package/packages/sap.fe.core/src/sap/fe/core/manifestMerger/ChangePageConfiguration-dbg.js +5 -3
- package/packages/sap.fe.core/src/sap/fe/core/manifestMerger/ChangePageConfiguration.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/manifestMerger/ChangePageConfiguration.ts +4 -1
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle.properties +22 -5
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ar.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_bg.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ca.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_cs.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_cy.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_da.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_de.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_el.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_GB.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_sappsd.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_saprigi.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_saptrc.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_es.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_es_MX.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_et.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fi.properties +28 -8
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fr.properties +28 -8
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fr_CA.properties +29 -9
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hi.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hr.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hu.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_id.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_it.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_iw.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ja.properties +26 -6
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_kk.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ko.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_lt.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_lv.properties +28 -8
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ms.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_nl.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_no.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pl.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pt.properties +28 -8
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pt_PT.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ro.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ru.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sh.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sk.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sl.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sv.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_th.properties +26 -6
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_tr.properties +30 -10
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_uk.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_vi.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_zh_CN.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_zh_TW.properties +27 -7
- package/packages/sap.fe.core/src/sap/fe/core/resources.json +745 -384
- package/packages/sap.fe.core/src/sap/fe/core/services/AsyncComponentServiceFactory-dbg.js +45 -71
- package/packages/sap.fe.core/src/sap/fe/core/services/AsyncComponentServiceFactory.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/CacheHandlerServiceFactory-dbg.js +154 -192
- package/packages/sap.fe.core/src/sap/fe/core/services/CacheHandlerServiceFactory.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/CacheHandlerServiceFactory.ts +4 -4
- package/packages/sap.fe.core/src/sap/fe/core/services/EnvironmentServiceFactory-dbg.js +66 -92
- package/packages/sap.fe.core/src/sap/fe/core/services/EnvironmentServiceFactory.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/EnvironmentServiceFactory.ts +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/NavigationServiceFactory-dbg.js +284 -339
- package/packages/sap.fe.core/src/sap/fe/core/services/NavigationServiceFactory.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/NavigationServiceFactory.ts +10 -13
- package/packages/sap.fe.core/src/sap/fe/core/services/ResourceModelServiceFactory-dbg.js +67 -102
- package/packages/sap.fe.core/src/sap/fe/core/services/ResourceModelServiceFactory.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/ResourceModelServiceFactory.ts +5 -2
- package/packages/sap.fe.core/src/sap/fe/core/services/RoutingServiceFactory-dbg.js +754 -814
- package/packages/sap.fe.core/src/sap/fe/core/services/RoutingServiceFactory.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/RoutingServiceFactory.ts +13 -13
- package/packages/sap.fe.core/src/sap/fe/core/services/ShellServicesFactory-dbg.js +649 -736
- package/packages/sap.fe.core/src/sap/fe/core/services/ShellServicesFactory.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/ShellServicesFactory.ts +7 -4
- package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory-dbg.js +567 -592
- package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory.ts +22 -3
- package/packages/sap.fe.core/src/sap/fe/core/services/TemplatedViewServiceFactory-dbg.js +354 -386
- package/packages/sap.fe.core/src/sap/fe/core/services/TemplatedViewServiceFactory.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/TemplatedViewServiceFactory.ts +21 -14
- package/packages/sap.fe.core/src/sap/fe/core/services/view/TemplatingErrorPage-dbg.controller.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/view/TemplatingErrorPage.controller.ts +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/support/CommonHelper-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/support/CommonHelper.ts +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/support/Diagnostics-dbg.js +36 -48
- package/packages/sap.fe.core/src/sap/fe/core/support/Diagnostics.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/templating/DataModelPathHelper-dbg.js +93 -85
- package/packages/sap.fe.core/src/sap/fe/core/templating/DataModelPathHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/templating/DataModelPathHelper.ts +104 -95
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper-dbg.js +25 -32
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper.ts +36 -35
- package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyHelper-dbg.js +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyHelper.ts +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters-dbg.js +32 -26
- package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters.ts +37 -24
- package/packages/sap.fe.core/test/sap/fe/core/designtime/api.json +1664 -1
- package/packages/sap.fe.core/test/sap/fe/core/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.jsmeta.json +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.jstemplates.json +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/MacroNavigationModel.js +59 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/localService/RootEntity.json +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldMessages/Component.js +33 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldMessages/FieldMessages.controller.js +34 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldMessages/FieldMessages.view.xml +18 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldMessages/localService/Entities.json +6 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldMessages/localService/service.cds +6 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldMessages/manifest.json +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/fieldMessages.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarSVandAnnotationDefaults/FilterBarSVandAnnotationDefaults.controller.js +1 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/Page.controller.js +7 -2
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/Page.view.xml +9 -3
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/localService/RootEntity.js +23 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/localService/RootEntity.ts +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/localService/service.cds +11 -23
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableMessages/Component.js +40 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableMessages/TableMessages.controller.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableMessages/TableMessages.view.xml +21 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableMessages/localService/RootEntity.json +82 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableMessages/localService/service.cds +82 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableMessages/manifest.json +78 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/tableMessages.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility/localService/ChildEntity.json +5 -4
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/manifest.json +3 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/view/App.view.xml +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/AnnotationHelper.spec.js +1 -169
- package/packages/sap.fe.core/test/sap/fe/core/jest/AnnotationHelper.spec.ts +0 -212
- package/packages/sap.fe.core/test/sap/fe/core/jest/CommonUtils.spec.js +2305 -119
- package/packages/sap.fe.core/test/sap/fe/core/jest/CommonUtils.spec.ts +2206 -67
- package/packages/sap.fe.core/test/sap/fe/core/jest/FilterUtils.spec.js +40 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/FilterUtils.spec.ts +34 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/FlexibleColumnLayout.spec.js +114 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/FlexibleColumnLayout.spec.ts +114 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/Paginators.spec.js +113 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/Paginators.spec.ts +78 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/RouterProxy.spec.js +599 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/RouterProxy.spec.ts +614 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/TemplateConverter.spec.js +23 -5
- package/packages/sap.fe.core/test/sap/fe/core/jest/TemplateConverter.spec.ts +26 -14
- package/packages/sap.fe.core/test/sap/fe/core/jest/TransactionHelper.spec.js +87 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/TransactionHelper.spec.ts +82 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/VisualFilterUtils.spec.js +124 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/VisualFilterUtils.spec.ts +141 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/__snapshots__/TemplateConverter.spec.ts.snap +34768 -67
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/collaboration/ActivitySync.spec.js +170 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/collaboration/ActivitySync.spec.ts +155 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/collaboration/CollaborationCommon.spec.js +101 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/collaboration/CollaborationCommon.spec.ts +94 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/collaboration/Manage.spec.js +82 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/collaboration/Manage.spec.ts +77 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/draft.spec.js +2 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/draft.spec.ts +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/messageHandling.spec.js +7 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/messageHandling.spec.ts +7 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/operations.spec.js +104 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/operations.spec.ts +96 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/sticky.spec.js +83 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/sticky.spec.ts +79 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/appcomponent.spec.js +72 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/appcomponent.spec.ts +64 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/EditFlow.spec.js +619 -3
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/EditFlow.spec.ts +668 -5
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/InternalEditFlow.spec.js +297 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/InternalEditFlow.spec.ts +276 -6
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/InternalIntentBasedNavigation.spec.js +149 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/InternalIntentBasedNavigation.spec.ts +142 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/InternalRouting.spec.js +776 -182
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/InternalRouting.spec.ts +181 -3
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/KPIManagement.spec.js +19 -43
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/MassEdit.spec.js +2 -18
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/MassEdit.spec.ts +8 -6
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/MessageHandler.spec.js +5 -27
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/MessageHandler.spec.ts +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/Routing.spec.js +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/Routing.spec.ts +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/Share.spec.js +86 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/Share.spec.ts +80 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/SideEffects.spec.js +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/SideEffects.spec.ts +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/ViewState.spec.js +2 -18
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/ViewState.spec.ts +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controls/DataLossOrDraftDiscardHandler.spec.js +45 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controls/DataLossOrDraftDiscardHandler.spec.ts +29 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controls/FilterBar.spec.js +51 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controls/FilterBar.spec.ts +47 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controls/__snapshots__/FilterBar.spec.ts.snap +3 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ConverterContext.spec.js +2 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ConverterContext.spec.ts +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Filter.spec.js +25 -36
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Filter.spec.ts +26 -36
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ListReportConverter.spec.js +3 -3
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ListReportConverter.spec.ts +2 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/MetaModelConverter.spec.js +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/MetaModelConverter.spec.ts +6 -5
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Table.spec.js +133 -9
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Table.spec.ts +171 -8
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/TableStandardActions.spec.js +174 -210
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/TableStandardActions.spec.ts +294 -230
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/__snapshots__/Filter.spec.ts.snap +3 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/controls/Chart.spec.js +237 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/controls/Chart.spec.ts +246 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/controls/DataVisualization.spec.js +9993 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/controls/DataVisualization.spec.ts +11352 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/controls/Table.spec.js +460 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/controls/Table.spec.ts +543 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/controls/TableAnalytics.spec.js +616 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/controls/TableAnalytics.spec.ts +711 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/controls/manifest.json +887 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/objectPage/HeaderAndFooterAction.spec.js +393 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/objectPage/HeaderAndFooterAction.spec.ts +434 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/DataConverter.js +31 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/DataConverter.ts +12 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/Filter.cds +27 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/MassEditHelper.cds +12 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/OKRA/manifest.json +150 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/OKRA/metadata.xml +365 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/OKRA/metadata_groupable_options.xml +96 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/OKRA/metadata_textArrangement.xml +102 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/OKRA/metadata_withPV.xml +359 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/Table.cds +89 -27
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/TemplatingTestData.js +421 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/TemplatingTestData.ts +413 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/aggregatedSD/metadata.xml +3767 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/dsr/manifest.json +185 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/dsr/metadata.xml +1534 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/manifest.json +887 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/salesOrderMetadata_qunit.xml +4995 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/formatters/CollaborationFormatters.spec.js +48 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/formatters/CollaborationFormatters.spec.ts +48 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/formatters/TableFormatters.spec.js +131 -51
- package/packages/sap.fe.core/test/sap/fe/core/jest/formatters/TableFormatters.spec.ts +81 -31
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/AppStartupHelper.spec.js +13 -7
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/AppStartupHelper.spec.ts +12 -6
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/MassEditHelper.spec.js +17 -3
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/MassEditHelper.spec.ts +24 -7
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/ModelHelper.spec.js +61 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/ModelHelper.spec.ts +59 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/PasteHelper.spec.js +3 -3
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/PasteHelper.spec.ts +1 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/SemanticDateOperators.spec.js +4 -4
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/SemanticDateOperators.spec.ts +6 -3
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/StableIdHelper.spec.js +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/StableIdHelper.spec.ts +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/__snapshots__/AppStartupHelper.spec.ts.snap +19 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/__snapshots__/MassEditHelper.spec.ts.snap +0 -73
- package/packages/sap.fe.core/test/sap/fe/core/jest/manifestmerger/ChangePageConfiguration.spec.js +11 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/manifestmerger/ChangePageConfiguration.spec.ts +15 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/manifestmerger/__snapshots__/ChangePageConfiguration.spec.ts.snap +30 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/SideEffectsService.spec.js +49 -5
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/SideEffectsService.spec.ts +60 -5
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/DataModelPathHelper.spec.js +384 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/DataModelPathHelper.spec.ts +427 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/PropertyHelper.spec.js +132 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/PropertyHelper.spec.ts +156 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/UIFormatters.spec.js +273 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/UIFormatters.spec.ts +402 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/ValueHelpTemplating.spec.js +45 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/ValueHelpTemplating.spec.ts +40 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/TemplatingExpressions.qunit.js +2 -1
- package/packages/sap.fe.core/test/sap/fe/core/qunit/apps/generalTests.json +0 -102
- package/packages/sap.fe.core/test/sap/fe/core/relnotes/changes-1.100.json +326 -0
- package/packages/sap.fe.core/test/sap/fe/core/relnotes/changes-1.99.json +0 -22
- package/packages/sap.fe.macros/src/sap/fe/macros/.library +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/.theming +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/Chart.metadata-dbg.js +2 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/Chart.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartAPI-dbg.js +22 -43
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartAPI.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartAPI.ts +3 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartDelegate-dbg.js +14 -24
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartDelegate.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/CommonHelper-dbg.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/DraftIndicator.fragment.xml +3 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/Field.fragment.xml +16 -18
- package/packages/sap.fe.macros/src/sap/fe/macros/FieldAPI-dbg.js +162 -100
- package/packages/sap.fe.macros/src/sap/fe/macros/FieldAPI.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FieldAPI.ts +93 -16
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.fragment.xml +2 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.metadata-dbg.js +16 -8
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarAPI-dbg.js +58 -83
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarAPI.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarAPI.ts +16 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarDelegate-dbg.js +112 -192
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarDelegate.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/Form.metadata-dbg.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/Form.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FormAPI-dbg.js +4 -20
- package/packages/sap.fe.macros/src/sap/fe/macros/FormAPI.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainerAPI-dbg.js +10 -31
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainerAPI.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI-dbg.js +147 -162
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI.ts +32 -8
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroMetadata-dbg.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroMetadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/PhantomUtil-dbg.js +56 -74
- package/packages/sap.fe.macros/src/sap/fe/macros/PhantomUtil.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/Table.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/Table.metadata-dbg.js +90 -39
- package/packages/sap.fe.macros/src/sap/fe/macros/Table.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI-dbg.js +284 -251
- package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI.ts +126 -14
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldHelper-dbg.js +38 -101
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldRuntime-dbg.js +68 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldRuntime.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating-dbg.js +72 -12
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating.ts +67 -10
- package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkDelegate-dbg.js +5 -12
- package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkDelegate.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/DraftEditState.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldHelper-dbg.js +1 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterUtils-dbg.js +62 -39
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterUtils.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/MultiValue-dbg.js +104 -50
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/MultiValue.js +2 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/MultiValue.ts +68 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Range-dbg.js +83 -35
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Range.js +2 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Range.ts +66 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Value-dbg.js +327 -216
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Value.js +2 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Value.ts +303 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollaborationAvatar.fragment.xml +15 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata-dbg.js +14 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata.ts +18 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.fragment.xml +12 -29
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.metadata-dbg.js +9 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.fragment.xml +1 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.metadata-dbg.js +529 -533
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.metadata.js +2 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.metadata.ts +568 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/FilterField.fragment.xml +0 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/SituationsIndicator-dbg.js +3 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/SituationsIndicator.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/SituationsIndicator.ts +3 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/FieldContent.fragment.xml +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/FieldStructure.fragment.xml +13 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/DataPoint.fragment.xml +4 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/ExpandableText.fragment.xml +1 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/LabelSemanticKey.fragment.xml +1 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Link.fragment.xml +38 -4
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/LinkWithQuickViewForm.fragment.xml +2 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/LinkWrapper.fragment.xml +3 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/MdcFieldWithValueHelp.fragment.xml +1 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/ObjectIdentifier.fragment.xml +55 -11
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/SemanticKeyWithDraftIndicator.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Text.fragment.xml +3 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/DatePicker.fragment.xml +9 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/DateTimePicker.fragment.xml +9 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/Input.fragment.xml +12 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/InputWithUnit.fragment.xml +26 -5
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/InputWithValueHelp.fragment.xml +10 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/RatingIndicator.fragment.xml +9 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/TimePicker.fragment.xml +9 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/fragments/ObjectIdentifierContent.fragment.xml +4 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating-dbg.js +31 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating.ts +20 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/situations/Runtime-dbg.js +2 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/situations/Runtime.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/situations/Runtime.ts +7 -9
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListHelper-dbg.js +90 -118
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/library-dbg.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/library-h2-preload.js +13 -12
- package/packages/sap.fe.macros/src/sap/fe/macros/library-h2-preload.js.map +2 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/library-preload.js +185 -214
- package/packages/sap.fe.macros/src/sap/fe/macros/library-preload.js.map +4 -4
- package/packages/sap.fe.macros/src/sap/fe/macros/library.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/manifest.json +9 -9
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle.properties +4 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ar.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_bg.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ca.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_cs.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_cy.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_da.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_de.properties +4 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_el.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_GB.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_sappsd.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_saprigi.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_saptrc.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_es.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_es_MX.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_et.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fi.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fr.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fr_CA.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hi.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hr.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hu.properties +4 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_id.properties +4 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_it.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_iw.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ja.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_kk.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ko.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_lt.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_lv.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ms.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_nl.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_no.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pl.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pt.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pt_PT.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ro.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ru.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sh.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sk.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sl.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sv.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_th.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_tr.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_uk.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_vi.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_zh_CN.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_zh_TW.properties +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/resources.json +273 -199
- package/packages/sap.fe.macros/src/sap/fe/macros/table/Actions.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/table/Column.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/table/ColumnContent.fragment.xml +2 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/CreationRow.fragment.xml +13 -20
- package/packages/sap.fe.macros/src/sap/fe/macros/table/CustomColumn.fragment.xml +1 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableHelper-dbg.js +5 -110
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/TableDelegate-dbg.js +98 -78
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/TableDelegate.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar.metadata-dbg.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar.metadata.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/api.json +211 -10
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.jsmeta.json +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/ChartDelegate.spec.js +1 -45
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/ChartDelegate.spec.ts +0 -60
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldAPI.spec.js +78 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldAPI.spec.ts +71 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroDataFieldTypes.spec.js +35 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroDataFieldTypes.spec.ts +44 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterBarDelegate.spec.js +0 -76
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterBarMacro.spec.js +27 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterBarMacro.spec.ts +28 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterFieldHelper.spec.js +10 -12
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterFieldHelper.spec.ts +10 -10
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterUtils.spec.js +129 -15
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MacroAPI.spec.js +13 -39
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MacroAPI.spec.ts +2 -2
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/RetrieveTextFromValueList.spec.js +119 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/RetrieveTextFromValueList.spec.ts +113 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/Table.spec.js +166 -2
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/Table.spec.ts +190 -3
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableAPI.spec.js +457 -389
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableAPI.spec.ts +504 -425
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableMacro.spec.js +104 -2
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableMacro.spec.ts +158 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/ChartDelegate.spec.ts.snap +0 -6
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/DatapointMacro.spec.ts.snap +5 -5
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/FieldMacroDataFieldTypes.spec.ts.snap +114 -25
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/FieldMacroWithSemanticKey.spec.ts.snap +40 -40
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/FieldMacroWithValueHelp.spec.ts.snap +4 -8
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/FilterBarMacro.spec.ts.snap +19 -19
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/FilterField.spec.ts.snap +3 -5
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/QuickViewForm.spec.ts.snap +12 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/SimpleFieldMacro.spec.ts.snap +89 -90
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/Table.spec.ts.snap +1314 -58
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/TableMacro.spec.ts.snap +459 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/FieldMacroDataFieldTypes.cds +18 -2
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/QuickViewForm.cds +6 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/Table.cds +107 -106
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/TableAPI.cds +197 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldRuntime.spec.js +33 -4
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldRuntime.spec.ts +30 -4
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldTemplating.spec.js +72 -29
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldTemplating.spec.ts +86 -18
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/__snapshots__/columnWidth.spec.ts.snap +51 -27
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/columnWidth.spec.js +55 -9
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/columnWidth.spec.ts +46 -6
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/data/columnWidth.cds +28 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/delegates/TableDelegate.spec.js +170 -43
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/delegates/TableDelegate.spec.ts +131 -15
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/delegates/__snapshots__/TableDelegate.spec.ts.snap +90 -53
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/tsx/TestTSX.spec.tsx +2 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/index.json +0 -5
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FieldHelper.qunit.js +1 -99
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormElementTemplating.qunit.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/MacroMetadata.qunit.js +4 -4
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/TableHelper.qunit.js +4 -4
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ValueHelpTemplating.qunit.js +15 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ValueListHelper.qunit.js +265 -106
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/metadata/simpleMetadata.js +38 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/relnotes/changes-1.100.json +372 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/relnotes/changes-1.99.json +0 -11
- package/packages/sap.fe.navigation/src/sap/fe/navigation/.library +1 -1
- package/packages/sap.fe.navigation/src/sap/fe/navigation/.theming +1 -1
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-dbg.js +1 -1
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-h2-preload.js +2 -2
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-h2-preload.js.map +2 -2
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-preload.js +2 -2
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-preload.js.map +2 -2
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library.js +1 -1
- package/packages/sap.fe.navigation/src/sap/fe/navigation/manifest.json +3 -3
- package/packages/sap.fe.navigation/src/sap/fe/navigation/resources.json +8 -8
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/api.json +1 -1
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/.library +1 -1
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/.theming +1 -1
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-dbg.js +1 -1
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-h2-preload.js +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-h2-preload.js.map +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-preload.js +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-preload.js.map +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library.js +1 -1
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/manifest.json +3 -3
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/resources.json +27 -27
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/css_variables.source.less +316 -15
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/resources.json +1 -1
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/css_variables.less +315 -14
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/css_variables.source.less +315 -14
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/resources.json +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/css_variables.less +316 -15
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/css_variables.source.less +316 -15
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/resources.json +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/css_variables.less +316 -15
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/css_variables.source.less +316 -15
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/resources.json +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/css_variables.less +315 -14
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/css_variables.source.less +315 -14
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/resources.json +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/css_variables.less +317 -16
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/css_variables.source.less +317 -16
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/resources.json +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/css_variables.less +317 -16
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/css_variables.source.less +317 -16
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/resources.json +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/css_variables.less +316 -15
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/css_variables.source.less +316 -15
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/resources.json +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/css_variables.less +316 -15
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/css_variables.source.less +316 -15
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/resources.json +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_horizon/css_variables.less +400 -99
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_horizon/css_variables.source.less +400 -99
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_horizon/resources.json +2 -2
- package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/api.json +1 -1
- package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/.library +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/.theming +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/manifest.json +2 -2
- package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/resources.json +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListComponent-dbg.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListComponent.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/Component-dbg.js +7 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/Component.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReport.view.xml +22 -21
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReportController-dbg.controller.js +13 -18
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReportController.controller.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/manifest.json +2 -2
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/resources.json +7 -7
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/view/fragments/MultipleMode.fragment.xml +3 -3
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/AnnotationHelper-dbg.js +50 -9
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/AnnotationHelper.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/Component-dbg.js +1 -12
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/Component.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPage.view.xml +5 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPageController-dbg.controller.js +50 -17
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPageController.controller.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/StashableHBox-dbg.js +7 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/StashableHBox.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/FlexBox-dbg.designtime.js +3 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/FlexBox.designtime.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/manifest.json +2 -2
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/resources.json +19 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/CollaborationDraft.fragment.xml +36 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/EditableHeaderFacet.fragment.xml +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderFacet.fragment.xml +1 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderFacetCustomContainer.fragment.xml +1 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/Fcl-dbg.controller.js +3 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/Fcl.controller.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/NavContainer-dbg.controller.js +3 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/NavContainer.controller.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/designtime/library-preload.designtime.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/designtime/library-preload.designtime.js.map +2 -2
- package/packages/sap.fe.templates/src/sap/fe/templates/library-dbg.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/library-h2-preload.js +4 -3
- package/packages/sap.fe.templates/src/sap/fe/templates/library-h2-preload.js.map +2 -2
- package/packages/sap.fe.templates/src/sap/fe/templates/library-preload.js +22 -21
- package/packages/sap.fe.templates/src/sap/fe/templates/library-preload.js.map +4 -4
- package/packages/sap.fe.templates/src/sap/fe/templates/library.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/manifest.json +14 -14
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ar.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_bg.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ca.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_cs.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_cy.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_da.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_de.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_el.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_GB.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_sappsd.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_saprigi.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_saptrc.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_es.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_es_MX.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_et.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fi.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fr.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fr_CA.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hi.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hr.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hu.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_id.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_it.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_iw.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ja.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_kk.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ko.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_lt.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_lv.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ms.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_nl.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_no.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pl.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pt.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pt_PT.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ro.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ru.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sh.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sk.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sl.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sv.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_th.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_tr.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_uk.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_vi.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_zh_CN.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_zh_TW.properties +0 -15
- package/packages/sap.fe.templates/src/sap/fe/templates/resources.json +115 -89
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/manifest.json +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/api.json +353 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/codeassistance/Library.jsmeta.json +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/IntentBasedNavigation.spec.js +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/IntentBasedNavigation.spec.ts +3 -3
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/Share.spec.js +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/Share.spec.ts +4 -4
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/ViewState.spec.js +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/ViewState.spec.ts +2 -2
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ObjectPage/view/fragments/ObjectPageHeaderForm.spec.js +2 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ObjectPage/view/fragments/ObjectPageHeaderForm.spec.ts +2 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ObjectPage/view/fragments/__snapshots__/HeaderFacet.spec.ts.snap +7 -7
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/RootContainer/RootContainerBaseController.spec.js +30 -61
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/RootContainer/RootContainerBaseController.spec.ts +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/relnotes/changes-1.100.json +192 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/relnotes/changes-1.99.json +0 -11
- package/packages/sap.fe.test/src/sap/fe/test/.library +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/.theming +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/FeMocks-dbg.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/FeMocks.ts +8 -8
- package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper-dbg.js +6 -4
- package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper.ts +10 -6
- package/packages/sap.fe.test/src/sap/fe/test/UI5MockHelper-dbg.js +126 -203
- package/packages/sap.fe.test/src/sap/fe/test/UI5MockHelper.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/UI5MockHelper.ts +17 -2
- package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarAPI-dbg.js +9 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarAPI.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/library-dbg.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/library-h2-preload.js +2 -2
- package/packages/sap.fe.test/src/sap/fe/test/library-h2-preload.js.map +2 -2
- package/packages/sap.fe.test/src/sap/fe/test/library-preload.js +9 -18
- package/packages/sap.fe.test/src/sap/fe/test/library-preload.js.map +3 -3
- package/packages/sap.fe.test/src/sap/fe/test/library.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/manifest.json +3 -3
- package/packages/sap.fe.test/src/sap/fe/test/resources.json +18 -18
- package/packages/sap.fe.test/test/sap/fe/test/designtime/api.json +1 -1
- package/packages/sap.fe.test/test/sap/fe/test/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.test/test/sap/fe/test/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormTemplatingTs.qunit.js +0 -271
|
@@ -0,0 +1,1534 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
|
2
|
+
<edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
|
|
3
|
+
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Capabilities.V1.xml">
|
|
4
|
+
<edmx:Include Alias="Capabilities" Namespace="Org.OData.Capabilities.V1" />
|
|
5
|
+
</edmx:Reference>
|
|
6
|
+
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Common.xml">
|
|
7
|
+
<edmx:Include Alias="Common" Namespace="com.sap.vocabularies.Common.v1" />
|
|
8
|
+
</edmx:Reference>
|
|
9
|
+
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
|
|
10
|
+
<edmx:Include Alias="Core" Namespace="Org.OData.Core.V1" />
|
|
11
|
+
</edmx:Reference>
|
|
12
|
+
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/UI.xml">
|
|
13
|
+
<edmx:Include Alias="UI" Namespace="com.sap.vocabularies.UI.v1" />
|
|
14
|
+
</edmx:Reference>
|
|
15
|
+
<edmx:DataServices>
|
|
16
|
+
<Schema Namespace="poc.RequestsService" xmlns="http://docs.oasis-open.org/odata/ns/edm">
|
|
17
|
+
<EntityContainer Name="EntityContainer">
|
|
18
|
+
<EntitySet Name="AccessRequests" EntityType="poc.RequestsService.AccessRequests">
|
|
19
|
+
<NavigationPropertyBinding Path="status" Target="Status" />
|
|
20
|
+
<NavigationPropertyBinding Path="authenticationStatus" Target="Status" />
|
|
21
|
+
<NavigationPropertyBinding Path="identificationFailedReason" Target="IdentificationFailedReasons" />
|
|
22
|
+
<NavigationPropertyBinding Path="preferredCommunicationChannel" Target="CommunicationChannels" />
|
|
23
|
+
<NavigationPropertyBinding Path="userCountry" Target="Countries" />
|
|
24
|
+
<NavigationPropertyBinding Path="rawData" Target="RawData" />
|
|
25
|
+
<NavigationPropertyBinding Path="details" Target="ReportDetails" />
|
|
26
|
+
<NavigationPropertyBinding Path="dataSubjects" Target="DataSubjects" />
|
|
27
|
+
<NavigationPropertyBinding Path="SiblingEntity" Target="AccessRequests" />
|
|
28
|
+
</EntitySet>
|
|
29
|
+
<EntitySet Name="CommunicationChannels" EntityType="poc.RequestsService.CommunicationChannels">
|
|
30
|
+
<NavigationPropertyBinding Path="texts" Target="CommunicationChannels_texts" />
|
|
31
|
+
<NavigationPropertyBinding Path="localized" Target="CommunicationChannels_texts" />
|
|
32
|
+
</EntitySet>
|
|
33
|
+
<EntitySet Name="CommunicationChannels_texts" EntityType="poc.RequestsService.CommunicationChannels_texts" />
|
|
34
|
+
<EntitySet Name="Countries" EntityType="poc.RequestsService.Countries">
|
|
35
|
+
<NavigationPropertyBinding Path="texts" Target="Countries_texts" />
|
|
36
|
+
<NavigationPropertyBinding Path="localized" Target="Countries_texts" />
|
|
37
|
+
</EntitySet>
|
|
38
|
+
<EntitySet Name="Countries_texts" EntityType="poc.RequestsService.Countries_texts" />
|
|
39
|
+
<EntitySet Name="DataSubjects" EntityType="poc.RequestsService.DataSubjects">
|
|
40
|
+
<NavigationPropertyBinding Path="request" Target="AccessRequests" />
|
|
41
|
+
<NavigationPropertyBinding Path="SiblingEntity" Target="DataSubjects" />
|
|
42
|
+
</EntitySet>
|
|
43
|
+
<EntitySet Name="DownloadHistory" EntityType="poc.RequestsService.DownloadHistory">
|
|
44
|
+
<NavigationPropertyBinding Path="report" Target="ReportDetails" />
|
|
45
|
+
<NavigationPropertyBinding Path="SiblingEntity" Target="DownloadHistory" />
|
|
46
|
+
</EntitySet>
|
|
47
|
+
<EntitySet Name="DownloadStatus" EntityType="poc.RequestsService.DownloadStatus">
|
|
48
|
+
<NavigationPropertyBinding Path="texts" Target="DownloadStatus_texts" />
|
|
49
|
+
<NavigationPropertyBinding Path="localized" Target="DownloadStatus_texts" />
|
|
50
|
+
</EntitySet>
|
|
51
|
+
<EntitySet Name="DownloadStatus_texts" EntityType="poc.RequestsService.DownloadStatus_texts" />
|
|
52
|
+
<EntitySet Name="IdentificationFailedReasons" EntityType="poc.RequestsService.IdentificationFailedReasons">
|
|
53
|
+
<NavigationPropertyBinding Path="texts" Target="IdentificationFailedReasons_texts" />
|
|
54
|
+
<NavigationPropertyBinding Path="localized" Target="IdentificationFailedReasons_texts" />
|
|
55
|
+
</EntitySet>
|
|
56
|
+
<EntitySet Name="IdentificationFailedReasons_texts" EntityType="poc.RequestsService.IdentificationFailedReasons_texts" />
|
|
57
|
+
<EntitySet Name="RawData" EntityType="poc.RequestsService.RawData">
|
|
58
|
+
<NavigationPropertyBinding Path="request" Target="AccessRequests" />
|
|
59
|
+
<NavigationPropertyBinding Path="SiblingEntity" Target="RawData" />
|
|
60
|
+
</EntitySet>
|
|
61
|
+
<EntitySet Name="ReportDetailTypes" EntityType="poc.RequestsService.ReportDetailTypes">
|
|
62
|
+
<NavigationPropertyBinding Path="texts" Target="ReportDetailTypes_texts" />
|
|
63
|
+
<NavigationPropertyBinding Path="localized" Target="ReportDetailTypes_texts" />
|
|
64
|
+
</EntitySet>
|
|
65
|
+
<EntitySet Name="ReportDetailTypes_texts" EntityType="poc.RequestsService.ReportDetailTypes_texts" />
|
|
66
|
+
<EntitySet Name="ReportDetails" EntityType="poc.RequestsService.ReportDetails">
|
|
67
|
+
<NavigationPropertyBinding Path="request" Target="AccessRequests" />
|
|
68
|
+
<NavigationPropertyBinding Path="type" Target="ReportDetailTypes" />
|
|
69
|
+
<NavigationPropertyBinding Path="downloadStatus" Target="DownloadStatus" />
|
|
70
|
+
<NavigationPropertyBinding Path="downloadHistory" Target="DownloadHistory" />
|
|
71
|
+
<NavigationPropertyBinding Path="SiblingEntity" Target="ReportDetails" />
|
|
72
|
+
</EntitySet>
|
|
73
|
+
<EntitySet Name="Status" EntityType="poc.RequestsService.Status">
|
|
74
|
+
<NavigationPropertyBinding Path="texts" Target="Status_texts" />
|
|
75
|
+
<NavigationPropertyBinding Path="localized" Target="Status_texts" />
|
|
76
|
+
</EntitySet>
|
|
77
|
+
<EntitySet Name="Status_texts" EntityType="poc.RequestsService.Status_texts" />
|
|
78
|
+
<ActionImport Name="postProcessUnbound" Action="poc.RequestsService.postProcessUnbound" />
|
|
79
|
+
</EntityContainer>
|
|
80
|
+
<EntityType Name="AccessRequests">
|
|
81
|
+
<Key>
|
|
82
|
+
<PropertyRef Name="ID" />
|
|
83
|
+
<PropertyRef Name="IsActiveEntity" />
|
|
84
|
+
</Key>
|
|
85
|
+
<Property Name="ID" Type="Edm.String" Nullable="false" />
|
|
86
|
+
<Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7" />
|
|
87
|
+
<Property Name="createdBy" Type="Edm.String" MaxLength="255" />
|
|
88
|
+
<Property Name="modifiedAt" Type="Edm.DateTimeOffset" Precision="7" />
|
|
89
|
+
<Property Name="modifiedBy" Type="Edm.String" MaxLength="255" />
|
|
90
|
+
<Property Name="request" Type="Edm.String" />
|
|
91
|
+
<Property Name="externalRequestId" Type="Edm.String" />
|
|
92
|
+
<NavigationProperty Name="status" Type="poc.RequestsService.Status">
|
|
93
|
+
<ReferentialConstraint Property="status_code" ReferencedProperty="code" />
|
|
94
|
+
</NavigationProperty>
|
|
95
|
+
<NavigationProperty Name="authenticationStatus" Type="poc.RequestsService.Status">
|
|
96
|
+
<ReferentialConstraint Property="authenticationStatus_code" ReferencedProperty="code" />
|
|
97
|
+
</NavigationProperty>
|
|
98
|
+
<NavigationProperty Name="identificationFailedReason" Type="poc.RequestsService.IdentificationFailedReasons">
|
|
99
|
+
<ReferentialConstraint Property="identificationFailedReason_code" ReferencedProperty="code" />
|
|
100
|
+
</NavigationProperty>
|
|
101
|
+
<NavigationProperty Name="preferredCommunicationChannel" Type="poc.RequestsService.CommunicationChannels">
|
|
102
|
+
<ReferentialConstraint Property="preferredCommunicationChannel_code" ReferencedProperty="code" />
|
|
103
|
+
</NavigationProperty>
|
|
104
|
+
<Property Name="dueDate" Type="Edm.Date" />
|
|
105
|
+
<Property Name="dueDateCriticality" Type="Edm.Int32" />
|
|
106
|
+
<Property Name="isEditable" Type="Edm.Boolean" />
|
|
107
|
+
<Property Name="hideIdentificationCompleted" Type="Edm.Boolean" />
|
|
108
|
+
<Property Name="userFirstName" Type="Edm.String" />
|
|
109
|
+
<Property Name="userLastName" Type="Edm.String" />
|
|
110
|
+
<Property Name="userEMail" Type="Edm.String" />
|
|
111
|
+
<Property Name="userStreet" Type="Edm.String" />
|
|
112
|
+
<Property Name="userZipcode" Type="Edm.String" />
|
|
113
|
+
<Property Name="userCity" Type="Edm.String" />
|
|
114
|
+
<NavigationProperty Name="userCountry" Type="poc.RequestsService.Countries">
|
|
115
|
+
<ReferentialConstraint Property="userCountry_code" ReferencedProperty="code" />
|
|
116
|
+
</NavigationProperty>
|
|
117
|
+
<NavigationProperty Name="rawData" Type="Collection(poc.RequestsService.RawData)" Partner="request">
|
|
118
|
+
<OnDelete Action="Cascade" />
|
|
119
|
+
</NavigationProperty>
|
|
120
|
+
<NavigationProperty Name="details" Type="Collection(poc.RequestsService.ReportDetails)" Partner="request">
|
|
121
|
+
<OnDelete Action="Cascade" />
|
|
122
|
+
</NavigationProperty>
|
|
123
|
+
<NavigationProperty Name="dataSubjects" Type="Collection(poc.RequestsService.DataSubjects)" Partner="request">
|
|
124
|
+
<OnDelete Action="Cascade" />
|
|
125
|
+
</NavigationProperty>
|
|
126
|
+
<Property Name="status_code" Type="Edm.String" MaxLength="1" />
|
|
127
|
+
<Property Name="authenticationStatus_code" Type="Edm.String" MaxLength="1" />
|
|
128
|
+
<Property Name="identificationFailedReason_code" Type="Edm.Int32" />
|
|
129
|
+
<Property Name="preferredCommunicationChannel_code" Type="Edm.String" MaxLength="1" />
|
|
130
|
+
<Property Name="userCountry_code" Type="Edm.String" MaxLength="3" />
|
|
131
|
+
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" />
|
|
132
|
+
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" />
|
|
133
|
+
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" />
|
|
134
|
+
<NavigationProperty Name="DraftAdministrativeData" Type="poc.RequestsService.DraftAdministrativeData" ContainsTarget="true" />
|
|
135
|
+
<NavigationProperty Name="SiblingEntity" Type="poc.RequestsService.AccessRequests" />
|
|
136
|
+
</EntityType>
|
|
137
|
+
<EntityType Name="CommunicationChannels">
|
|
138
|
+
<Key>
|
|
139
|
+
<PropertyRef Name="code" />
|
|
140
|
+
</Key>
|
|
141
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
142
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
143
|
+
<Property Name="code" Type="Edm.String" MaxLength="1" Nullable="false" />
|
|
144
|
+
<NavigationProperty Name="texts" Type="Collection(poc.RequestsService.CommunicationChannels_texts)">
|
|
145
|
+
<OnDelete Action="Cascade" />
|
|
146
|
+
</NavigationProperty>
|
|
147
|
+
<NavigationProperty Name="localized" Type="poc.RequestsService.CommunicationChannels_texts">
|
|
148
|
+
<ReferentialConstraint Property="code" ReferencedProperty="code" />
|
|
149
|
+
</NavigationProperty>
|
|
150
|
+
</EntityType>
|
|
151
|
+
<EntityType Name="CommunicationChannels_texts">
|
|
152
|
+
<Key>
|
|
153
|
+
<PropertyRef Name="locale" />
|
|
154
|
+
<PropertyRef Name="code" />
|
|
155
|
+
</Key>
|
|
156
|
+
<Property Name="locale" Type="Edm.String" MaxLength="14" Nullable="false" />
|
|
157
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
158
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
159
|
+
<Property Name="code" Type="Edm.String" MaxLength="1" Nullable="false" />
|
|
160
|
+
</EntityType>
|
|
161
|
+
<EntityType Name="Countries">
|
|
162
|
+
<Key>
|
|
163
|
+
<PropertyRef Name="code" />
|
|
164
|
+
</Key>
|
|
165
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
166
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
167
|
+
<Property Name="code" Type="Edm.String" MaxLength="3" Nullable="false" />
|
|
168
|
+
<NavigationProperty Name="texts" Type="Collection(poc.RequestsService.Countries_texts)">
|
|
169
|
+
<OnDelete Action="Cascade" />
|
|
170
|
+
</NavigationProperty>
|
|
171
|
+
<NavigationProperty Name="localized" Type="poc.RequestsService.Countries_texts">
|
|
172
|
+
<ReferentialConstraint Property="code" ReferencedProperty="code" />
|
|
173
|
+
</NavigationProperty>
|
|
174
|
+
</EntityType>
|
|
175
|
+
<EntityType Name="Countries_texts">
|
|
176
|
+
<Key>
|
|
177
|
+
<PropertyRef Name="locale" />
|
|
178
|
+
<PropertyRef Name="code" />
|
|
179
|
+
</Key>
|
|
180
|
+
<Property Name="locale" Type="Edm.String" MaxLength="14" Nullable="false" />
|
|
181
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
182
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
183
|
+
<Property Name="code" Type="Edm.String" MaxLength="3" Nullable="false" />
|
|
184
|
+
</EntityType>
|
|
185
|
+
<EntityType Name="DataSubjects">
|
|
186
|
+
<Key>
|
|
187
|
+
<PropertyRef Name="ID" />
|
|
188
|
+
<PropertyRef Name="IsActiveEntity" />
|
|
189
|
+
</Key>
|
|
190
|
+
<Property Name="ID" Type="Edm.String" Nullable="false" />
|
|
191
|
+
<NavigationProperty Name="request" Type="poc.RequestsService.AccessRequests" Partner="dataSubjects">
|
|
192
|
+
<ReferentialConstraint Property="request_ID" ReferencedProperty="ID" />
|
|
193
|
+
</NavigationProperty>
|
|
194
|
+
<Property Name="dataSubject" Type="Edm.String" />
|
|
195
|
+
<Property Name="sourceSystem" Type="Edm.String" />
|
|
196
|
+
<Property Name="description" Type="Edm.String" />
|
|
197
|
+
<Property Name="request_ID" Type="Edm.String" />
|
|
198
|
+
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" />
|
|
199
|
+
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" />
|
|
200
|
+
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" />
|
|
201
|
+
<NavigationProperty Name="DraftAdministrativeData" Type="poc.RequestsService.DraftAdministrativeData" ContainsTarget="true" />
|
|
202
|
+
<NavigationProperty Name="SiblingEntity" Type="poc.RequestsService.DataSubjects" />
|
|
203
|
+
</EntityType>
|
|
204
|
+
<EntityType Name="DownloadHistory">
|
|
205
|
+
<Key>
|
|
206
|
+
<PropertyRef Name="ID" />
|
|
207
|
+
<PropertyRef Name="IsActiveEntity" />
|
|
208
|
+
</Key>
|
|
209
|
+
<Property Name="ID" Type="Edm.String" Nullable="false" />
|
|
210
|
+
<NavigationProperty Name="report" Type="poc.RequestsService.ReportDetails" Partner="downloadHistory">
|
|
211
|
+
<ReferentialConstraint Property="report_ID" ReferencedProperty="ID" />
|
|
212
|
+
</NavigationProperty>
|
|
213
|
+
<Property Name="downloadedAt" Type="Edm.DateTimeOffset" />
|
|
214
|
+
<Property Name="ipAddress" Type="Edm.String" />
|
|
215
|
+
<Property Name="report_ID" Type="Edm.String" />
|
|
216
|
+
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" />
|
|
217
|
+
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" />
|
|
218
|
+
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" />
|
|
219
|
+
<NavigationProperty Name="DraftAdministrativeData" Type="poc.RequestsService.DraftAdministrativeData" ContainsTarget="true" />
|
|
220
|
+
<NavigationProperty Name="SiblingEntity" Type="poc.RequestsService.DownloadHistory" />
|
|
221
|
+
</EntityType>
|
|
222
|
+
<EntityType Name="DownloadStatus">
|
|
223
|
+
<Key>
|
|
224
|
+
<PropertyRef Name="code" />
|
|
225
|
+
</Key>
|
|
226
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
227
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
228
|
+
<Property Name="code" Type="Edm.String" MaxLength="1" Nullable="false" />
|
|
229
|
+
<Property Name="criticality" Type="Edm.Int32" />
|
|
230
|
+
<NavigationProperty Name="texts" Type="Collection(poc.RequestsService.DownloadStatus_texts)">
|
|
231
|
+
<OnDelete Action="Cascade" />
|
|
232
|
+
</NavigationProperty>
|
|
233
|
+
<NavigationProperty Name="localized" Type="poc.RequestsService.DownloadStatus_texts">
|
|
234
|
+
<ReferentialConstraint Property="code" ReferencedProperty="code" />
|
|
235
|
+
</NavigationProperty>
|
|
236
|
+
</EntityType>
|
|
237
|
+
<EntityType Name="DownloadStatus_texts">
|
|
238
|
+
<Key>
|
|
239
|
+
<PropertyRef Name="locale" />
|
|
240
|
+
<PropertyRef Name="code" />
|
|
241
|
+
</Key>
|
|
242
|
+
<Property Name="locale" Type="Edm.String" MaxLength="14" Nullable="false" />
|
|
243
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
244
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
245
|
+
<Property Name="code" Type="Edm.String" MaxLength="1" Nullable="false" />
|
|
246
|
+
</EntityType>
|
|
247
|
+
<EntityType Name="DraftAdministrativeData">
|
|
248
|
+
<Key>
|
|
249
|
+
<PropertyRef Name="DraftUUID" />
|
|
250
|
+
</Key>
|
|
251
|
+
<Property Name="DraftUUID" Type="Edm.Guid" Nullable="false" />
|
|
252
|
+
<Property Name="CreationDateTime" Type="Edm.DateTimeOffset" Precision="7" />
|
|
253
|
+
<Property Name="CreatedByUser" Type="Edm.String" MaxLength="256" />
|
|
254
|
+
<Property Name="DraftIsCreatedByMe" Type="Edm.Boolean" />
|
|
255
|
+
<Property Name="LastChangeDateTime" Type="Edm.DateTimeOffset" Precision="7" />
|
|
256
|
+
<Property Name="LastChangedByUser" Type="Edm.String" MaxLength="256" />
|
|
257
|
+
<Property Name="InProcessByUser" Type="Edm.String" MaxLength="256" />
|
|
258
|
+
<Property Name="DraftIsProcessedByMe" Type="Edm.Boolean" />
|
|
259
|
+
</EntityType>
|
|
260
|
+
<EntityType Name="IdentificationFailedReasons">
|
|
261
|
+
<Key>
|
|
262
|
+
<PropertyRef Name="code" />
|
|
263
|
+
</Key>
|
|
264
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
265
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
266
|
+
<Property Name="code" Type="Edm.Int32" Nullable="false" />
|
|
267
|
+
<NavigationProperty Name="texts" Type="Collection(poc.RequestsService.IdentificationFailedReasons_texts)">
|
|
268
|
+
<OnDelete Action="Cascade" />
|
|
269
|
+
</NavigationProperty>
|
|
270
|
+
<NavigationProperty Name="localized" Type="poc.RequestsService.IdentificationFailedReasons_texts">
|
|
271
|
+
<ReferentialConstraint Property="code" ReferencedProperty="code" />
|
|
272
|
+
</NavigationProperty>
|
|
273
|
+
</EntityType>
|
|
274
|
+
<EntityType Name="IdentificationFailedReasons_texts">
|
|
275
|
+
<Key>
|
|
276
|
+
<PropertyRef Name="locale" />
|
|
277
|
+
<PropertyRef Name="code" />
|
|
278
|
+
</Key>
|
|
279
|
+
<Property Name="locale" Type="Edm.String" MaxLength="14" Nullable="false" />
|
|
280
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
281
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
282
|
+
<Property Name="code" Type="Edm.Int32" Nullable="false" />
|
|
283
|
+
</EntityType>
|
|
284
|
+
<EntityType Name="RawData">
|
|
285
|
+
<Key>
|
|
286
|
+
<PropertyRef Name="ID" />
|
|
287
|
+
<PropertyRef Name="IsActiveEntity" />
|
|
288
|
+
</Key>
|
|
289
|
+
<Property Name="ID" Type="Edm.String" Nullable="false" />
|
|
290
|
+
<Property Name="createdAt" Type="Edm.DateTimeOffset" Precision="7" />
|
|
291
|
+
<Property Name="createdBy" Type="Edm.String" MaxLength="255" />
|
|
292
|
+
<Property Name="modifiedAt" Type="Edm.DateTimeOffset" Precision="7" />
|
|
293
|
+
<Property Name="modifiedBy" Type="Edm.String" MaxLength="255" />
|
|
294
|
+
<NavigationProperty Name="request" Type="poc.RequestsService.AccessRequests" Partner="rawData">
|
|
295
|
+
<ReferentialConstraint Property="request_ID" ReferencedProperty="ID" />
|
|
296
|
+
</NavigationProperty>
|
|
297
|
+
<Property Name="description" Type="Edm.String" />
|
|
298
|
+
<Property Name="collectedOn" Type="Edm.DateTimeOffset" />
|
|
299
|
+
<Property Name="postProcessedBy" Type="Edm.String" />
|
|
300
|
+
<Property Name="postProcessedAt" Type="Edm.DateTimeOffset" />
|
|
301
|
+
<Property Name="request_ID" Type="Edm.String" />
|
|
302
|
+
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" />
|
|
303
|
+
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" />
|
|
304
|
+
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" />
|
|
305
|
+
<NavigationProperty Name="DraftAdministrativeData" Type="poc.RequestsService.DraftAdministrativeData" ContainsTarget="true" />
|
|
306
|
+
<NavigationProperty Name="SiblingEntity" Type="poc.RequestsService.RawData" />
|
|
307
|
+
</EntityType>
|
|
308
|
+
<EntityType Name="ReportDetailTypes">
|
|
309
|
+
<Key>
|
|
310
|
+
<PropertyRef Name="code" />
|
|
311
|
+
</Key>
|
|
312
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
313
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
314
|
+
<Property Name="code" Type="Edm.String" MaxLength="1" Nullable="false" />
|
|
315
|
+
<NavigationProperty Name="texts" Type="Collection(poc.RequestsService.ReportDetailTypes_texts)">
|
|
316
|
+
<OnDelete Action="Cascade" />
|
|
317
|
+
</NavigationProperty>
|
|
318
|
+
<NavigationProperty Name="localized" Type="poc.RequestsService.ReportDetailTypes_texts">
|
|
319
|
+
<ReferentialConstraint Property="code" ReferencedProperty="code" />
|
|
320
|
+
</NavigationProperty>
|
|
321
|
+
</EntityType>
|
|
322
|
+
<EntityType Name="ReportDetailTypes_texts">
|
|
323
|
+
<Key>
|
|
324
|
+
<PropertyRef Name="locale" />
|
|
325
|
+
<PropertyRef Name="code" />
|
|
326
|
+
</Key>
|
|
327
|
+
<Property Name="locale" Type="Edm.String" MaxLength="14" Nullable="false" />
|
|
328
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
329
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
330
|
+
<Property Name="code" Type="Edm.String" MaxLength="1" Nullable="false" />
|
|
331
|
+
</EntityType>
|
|
332
|
+
<EntityType Name="ReportDetails">
|
|
333
|
+
<Key>
|
|
334
|
+
<PropertyRef Name="ID" />
|
|
335
|
+
<PropertyRef Name="IsActiveEntity" />
|
|
336
|
+
</Key>
|
|
337
|
+
<Property Name="ID" Type="Edm.String" Nullable="false" />
|
|
338
|
+
<NavigationProperty Name="request" Type="poc.RequestsService.AccessRequests" Partner="details">
|
|
339
|
+
<ReferentialConstraint Property="request_ID" ReferencedProperty="ID" />
|
|
340
|
+
</NavigationProperty>
|
|
341
|
+
<Property Name="link" Type="Edm.String" />
|
|
342
|
+
<NavigationProperty Name="type" Type="poc.RequestsService.ReportDetailTypes">
|
|
343
|
+
<ReferentialConstraint Property="type_code" ReferencedProperty="code" />
|
|
344
|
+
</NavigationProperty>
|
|
345
|
+
<Property Name="description" Type="Edm.String" />
|
|
346
|
+
<Property Name="toBeSent" Type="Edm.Boolean" />
|
|
347
|
+
<Property Name="providedAt" Type="Edm.DateTimeOffset" />
|
|
348
|
+
<Property Name="providedBy" Type="Edm.String" />
|
|
349
|
+
<NavigationProperty Name="downloadStatus" Type="poc.RequestsService.DownloadStatus">
|
|
350
|
+
<ReferentialConstraint Property="downloadStatus_code" ReferencedProperty="code" />
|
|
351
|
+
</NavigationProperty>
|
|
352
|
+
<Property Name="downloadedAt" Type="Edm.DateTimeOffset" />
|
|
353
|
+
<Property Name="expirationDate" Type="Edm.Date" />
|
|
354
|
+
<NavigationProperty Name="downloadHistory" Type="Collection(poc.RequestsService.DownloadHistory)" Partner="report">
|
|
355
|
+
<OnDelete Action="Cascade" />
|
|
356
|
+
</NavigationProperty>
|
|
357
|
+
<Property Name="request_ID" Type="Edm.String" />
|
|
358
|
+
<Property Name="type_code" Type="Edm.String" MaxLength="1" />
|
|
359
|
+
<Property Name="downloadStatus_code" Type="Edm.String" MaxLength="1" />
|
|
360
|
+
<Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" />
|
|
361
|
+
<Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" />
|
|
362
|
+
<Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" />
|
|
363
|
+
<NavigationProperty Name="DraftAdministrativeData" Type="poc.RequestsService.DraftAdministrativeData" ContainsTarget="true" />
|
|
364
|
+
<NavigationProperty Name="SiblingEntity" Type="poc.RequestsService.ReportDetails" />
|
|
365
|
+
</EntityType>
|
|
366
|
+
<EntityType Name="Status">
|
|
367
|
+
<Key>
|
|
368
|
+
<PropertyRef Name="code" />
|
|
369
|
+
</Key>
|
|
370
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
371
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
372
|
+
<Property Name="code" Type="Edm.String" MaxLength="1" Nullable="false" />
|
|
373
|
+
<Property Name="criticality" Type="Edm.Int32" />
|
|
374
|
+
<NavigationProperty Name="texts" Type="Collection(poc.RequestsService.Status_texts)">
|
|
375
|
+
<OnDelete Action="Cascade" />
|
|
376
|
+
</NavigationProperty>
|
|
377
|
+
<NavigationProperty Name="localized" Type="poc.RequestsService.Status_texts">
|
|
378
|
+
<ReferentialConstraint Property="code" ReferencedProperty="code" />
|
|
379
|
+
</NavigationProperty>
|
|
380
|
+
</EntityType>
|
|
381
|
+
<EntityType Name="Status_texts">
|
|
382
|
+
<Key>
|
|
383
|
+
<PropertyRef Name="locale" />
|
|
384
|
+
<PropertyRef Name="code" />
|
|
385
|
+
</Key>
|
|
386
|
+
<Property Name="locale" Type="Edm.String" MaxLength="14" Nullable="false" />
|
|
387
|
+
<Property Name="name" Type="Edm.String" MaxLength="255" />
|
|
388
|
+
<Property Name="descr" Type="Edm.String" MaxLength="1000" />
|
|
389
|
+
<Property Name="code" Type="Edm.String" MaxLength="1" Nullable="false" />
|
|
390
|
+
</EntityType>
|
|
391
|
+
<Action Name="identificationCompleted" IsBound="true" EntitySetPath="in">
|
|
392
|
+
<Parameter Name="in" Type="poc.RequestsService.AccessRequests" />
|
|
393
|
+
<ReturnType Type="poc.RequestsService.AccessRequests" />
|
|
394
|
+
</Action>
|
|
395
|
+
<Action Name="identificationFailed" IsBound="true">
|
|
396
|
+
<Parameter Name="in" Type="poc.RequestsService.AccessRequests" />
|
|
397
|
+
<Parameter Name="identificationFailedReason_code" Type="Edm.Int32" Nullable="false" />
|
|
398
|
+
<Parameter Name="note" Type="Edm.String" />
|
|
399
|
+
</Action>
|
|
400
|
+
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
|
401
|
+
<Parameter Name="in" Type="poc.RequestsService.AccessRequests" />
|
|
402
|
+
<Parameter Name="SideEffectsQualifier" Type="Edm.String" />
|
|
403
|
+
<ReturnType Type="poc.RequestsService.AccessRequests" />
|
|
404
|
+
</Action>
|
|
405
|
+
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
|
406
|
+
<Parameter Name="in" Type="poc.RequestsService.DataSubjects" />
|
|
407
|
+
<Parameter Name="SideEffectsQualifier" Type="Edm.String" />
|
|
408
|
+
<ReturnType Type="poc.RequestsService.DataSubjects" />
|
|
409
|
+
</Action>
|
|
410
|
+
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
|
411
|
+
<Parameter Name="in" Type="poc.RequestsService.DownloadHistory" />
|
|
412
|
+
<Parameter Name="SideEffectsQualifier" Type="Edm.String" />
|
|
413
|
+
<ReturnType Type="poc.RequestsService.DownloadHistory" />
|
|
414
|
+
</Action>
|
|
415
|
+
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
|
416
|
+
<Parameter Name="in" Type="poc.RequestsService.RawData" />
|
|
417
|
+
<Parameter Name="SideEffectsQualifier" Type="Edm.String" />
|
|
418
|
+
<ReturnType Type="poc.RequestsService.RawData" />
|
|
419
|
+
</Action>
|
|
420
|
+
<Action Name="draftPrepare" IsBound="true" EntitySetPath="in">
|
|
421
|
+
<Parameter Name="in" Type="poc.RequestsService.ReportDetails" />
|
|
422
|
+
<Parameter Name="SideEffectsQualifier" Type="Edm.String" />
|
|
423
|
+
<ReturnType Type="poc.RequestsService.ReportDetails" />
|
|
424
|
+
</Action>
|
|
425
|
+
<Action Name="draftActivate" IsBound="true" EntitySetPath="in">
|
|
426
|
+
<Parameter Name="in" Type="poc.RequestsService.AccessRequests" />
|
|
427
|
+
<ReturnType Type="poc.RequestsService.AccessRequests" />
|
|
428
|
+
</Action>
|
|
429
|
+
<Action Name="draftEdit" IsBound="true" EntitySetPath="in">
|
|
430
|
+
<Parameter Name="in" Type="poc.RequestsService.AccessRequests" />
|
|
431
|
+
<Parameter Name="PreserveChanges" Type="Edm.Boolean" />
|
|
432
|
+
<ReturnType Type="poc.RequestsService.AccessRequests" />
|
|
433
|
+
</Action>
|
|
434
|
+
<Action Name="postProcess" IsBound="true">
|
|
435
|
+
<Parameter Name="in" Type="poc.RequestsService.RawData" />
|
|
436
|
+
</Action>
|
|
437
|
+
<Action Name="postProcessUnbound" IsBound="false" />
|
|
438
|
+
<Annotations Target="poc.RequestsService.AccessRequests">
|
|
439
|
+
<Annotation Term="Common.Label" String="Access Request" />
|
|
440
|
+
<Annotation Term="Common.SemanticKey">
|
|
441
|
+
<Collection>
|
|
442
|
+
<PropertyPath>request</PropertyPath>
|
|
443
|
+
</Collection>
|
|
444
|
+
</Annotation>
|
|
445
|
+
<Annotation Term="UI.DataPoint" Qualifier="duedate">
|
|
446
|
+
<Record Type="UI.DataPointType">
|
|
447
|
+
<PropertyValue Property="Title" String="Due Date" />
|
|
448
|
+
<PropertyValue Property="Value" Path="dueDate" />
|
|
449
|
+
</Record>
|
|
450
|
+
</Annotation>
|
|
451
|
+
<Annotation Term="UI.DataPoint" Qualifier="status">
|
|
452
|
+
<Record Type="UI.DataPointType">
|
|
453
|
+
<PropertyValue Property="Criticality" Path="status/criticality" />
|
|
454
|
+
<PropertyValue Property="Title" String="Status" />
|
|
455
|
+
<PropertyValue Property="Value" Path="status_code" />
|
|
456
|
+
</Record>
|
|
457
|
+
</Annotation>
|
|
458
|
+
<Annotation Term="UI.Facets">
|
|
459
|
+
<Collection>
|
|
460
|
+
<Record Type="UI.ReferenceFacet">
|
|
461
|
+
<PropertyValue Property="Label" String="General Information" />
|
|
462
|
+
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#generalinfo" />
|
|
463
|
+
</Record>
|
|
464
|
+
<Record Type="UI.ReferenceFacet">
|
|
465
|
+
<PropertyValue Property="Label" String="User Provided Data" />
|
|
466
|
+
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#userprovideddata" />
|
|
467
|
+
</Record>
|
|
468
|
+
<Record Type="UI.CollectionFacet">
|
|
469
|
+
<PropertyValue Property="Label" String="Report Details" />
|
|
470
|
+
<PropertyValue Property="Facets">
|
|
471
|
+
<Collection>
|
|
472
|
+
<Record Type="UI.ReferenceFacet">
|
|
473
|
+
<PropertyValue Property="Label" String="Raw Data" />
|
|
474
|
+
<PropertyValue Property="Target" AnnotationPath="rawData/@UI.LineItem" />
|
|
475
|
+
</Record>
|
|
476
|
+
<Record Type="UI.ReferenceFacet">
|
|
477
|
+
<PropertyValue Property="Label" String="Final reports" />
|
|
478
|
+
<PropertyValue Property="Target" AnnotationPath="details/@UI.LineItem" />
|
|
479
|
+
</Record>
|
|
480
|
+
</Collection>
|
|
481
|
+
</PropertyValue>
|
|
482
|
+
</Record>
|
|
483
|
+
<Record Type="UI.ReferenceFacet">
|
|
484
|
+
<PropertyValue Property="Label" String="Data Subject" />
|
|
485
|
+
<PropertyValue Property="Target" AnnotationPath="dataSubjects/@UI.LineItem" />
|
|
486
|
+
</Record>
|
|
487
|
+
</Collection>
|
|
488
|
+
</Annotation>
|
|
489
|
+
<Annotation Term="UI.FieldGroup" Qualifier="admin">
|
|
490
|
+
<Record Type="UI.FieldGroupType">
|
|
491
|
+
<PropertyValue Property="Data">
|
|
492
|
+
<Collection>
|
|
493
|
+
<Record Type="UI.DataField">
|
|
494
|
+
<PropertyValue Property="Value" Path="createdAt" />
|
|
495
|
+
</Record>
|
|
496
|
+
<Record Type="UI.DataField">
|
|
497
|
+
<PropertyValue Property="Value" Path="modifiedBy" />
|
|
498
|
+
</Record>
|
|
499
|
+
<Record Type="UI.DataField">
|
|
500
|
+
<PropertyValue Property="Value" Path="modifiedAt" />
|
|
501
|
+
</Record>
|
|
502
|
+
</Collection>
|
|
503
|
+
</PropertyValue>
|
|
504
|
+
</Record>
|
|
505
|
+
</Annotation>
|
|
506
|
+
<Annotation Term="UI.FieldGroup" Qualifier="generalinfo">
|
|
507
|
+
<Record Type="UI.FieldGroupType">
|
|
508
|
+
<PropertyValue Property="Data">
|
|
509
|
+
<Collection>
|
|
510
|
+
<Record Type="UI.DataField">
|
|
511
|
+
<PropertyValue Property="Value" Path="externalRequestId" />
|
|
512
|
+
</Record>
|
|
513
|
+
<Record Type="UI.DataField">
|
|
514
|
+
<PropertyValue Property="Value" Path="preferredCommunicationChannel_code" />
|
|
515
|
+
</Record>
|
|
516
|
+
<Record Type="UI.DataField">
|
|
517
|
+
<PropertyValue Property="Value" Path="authenticationStatus_code" />
|
|
518
|
+
</Record>
|
|
519
|
+
</Collection>
|
|
520
|
+
</PropertyValue>
|
|
521
|
+
</Record>
|
|
522
|
+
</Annotation>
|
|
523
|
+
<Annotation Term="UI.FieldGroup" Qualifier="userprovideddata">
|
|
524
|
+
<Record Type="UI.FieldGroupType">
|
|
525
|
+
<PropertyValue Property="Data">
|
|
526
|
+
<Collection>
|
|
527
|
+
<Record Type="UI.DataField">
|
|
528
|
+
<PropertyValue Property="Value" Path="userFirstName" />
|
|
529
|
+
</Record>
|
|
530
|
+
<Record Type="UI.DataField">
|
|
531
|
+
<PropertyValue Property="Value" Path="userLastName" />
|
|
532
|
+
</Record>
|
|
533
|
+
<Record Type="UI.DataField">
|
|
534
|
+
<PropertyValue Property="Value" Path="userEMail" />
|
|
535
|
+
</Record>
|
|
536
|
+
<Record Type="UI.DataField">
|
|
537
|
+
<PropertyValue Property="Value" Path="userStreet" />
|
|
538
|
+
</Record>
|
|
539
|
+
<Record Type="UI.DataField">
|
|
540
|
+
<PropertyValue Property="Value" Path="userZipcode" />
|
|
541
|
+
</Record>
|
|
542
|
+
<Record Type="UI.DataField">
|
|
543
|
+
<PropertyValue Property="Value" Path="userCity" />
|
|
544
|
+
</Record>
|
|
545
|
+
<Record Type="UI.DataField">
|
|
546
|
+
<PropertyValue Property="Value" Path="userCountry_code" />
|
|
547
|
+
</Record>
|
|
548
|
+
</Collection>
|
|
549
|
+
</PropertyValue>
|
|
550
|
+
</Record>
|
|
551
|
+
</Annotation>
|
|
552
|
+
<Annotation Term="UI.HeaderFacets">
|
|
553
|
+
<Collection>
|
|
554
|
+
<Record Type="UI.ReferenceFacet">
|
|
555
|
+
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#admin" />
|
|
556
|
+
</Record>
|
|
557
|
+
<Record Type="UI.ReferenceFacet">
|
|
558
|
+
<PropertyValue Property="Target" AnnotationPath="@UI.DataPoint#duedate" />
|
|
559
|
+
</Record>
|
|
560
|
+
<Record Type="UI.ReferenceFacet">
|
|
561
|
+
<PropertyValue Property="Target" AnnotationPath="@UI.DataPoint#status" />
|
|
562
|
+
</Record>
|
|
563
|
+
</Collection>
|
|
564
|
+
</Annotation>
|
|
565
|
+
<Annotation Term="UI.HeaderInfo">
|
|
566
|
+
<Record Type="UI.HeaderInfoType">
|
|
567
|
+
<PropertyValue Property="Description">
|
|
568
|
+
<Record Type="UI.DataField">
|
|
569
|
+
<PropertyValue Property="Value" Path="request" />
|
|
570
|
+
</Record>
|
|
571
|
+
</PropertyValue>
|
|
572
|
+
<PropertyValue Property="Title">
|
|
573
|
+
<Record Type="UI.DataField">
|
|
574
|
+
<PropertyValue Property="Value" String="Access Request" />
|
|
575
|
+
</Record>
|
|
576
|
+
</PropertyValue>
|
|
577
|
+
<PropertyValue Property="TypeName" String="Access Request" />
|
|
578
|
+
<PropertyValue Property="TypeNamePlural" String="Access Requests" />
|
|
579
|
+
</Record>
|
|
580
|
+
</Annotation>
|
|
581
|
+
<Annotation Term="UI.Identification">
|
|
582
|
+
<Collection>
|
|
583
|
+
<Record Type="UI.DataField">
|
|
584
|
+
<PropertyValue Property="Value" Path="request" />
|
|
585
|
+
</Record>
|
|
586
|
+
<Record Type="UI.DataFieldForIntentBasedNavigation">
|
|
587
|
+
<PropertyValue Property="Label" String="Go to Workflow" />
|
|
588
|
+
<PropertyValue Property="SemanticObject" String="Workflow" />
|
|
589
|
+
<PropertyValue Property="Action" String="display" />
|
|
590
|
+
<PropertyValue Property="RequiresContext" Bool="false" />
|
|
591
|
+
</Record>
|
|
592
|
+
<Record Type="UI.DataFieldForAction">
|
|
593
|
+
<PropertyValue Property="Label" String="Identification completed" />
|
|
594
|
+
<PropertyValue Property="Action" String="poc.RequestsService.identificationCompleted" />
|
|
595
|
+
<PropertyValue Property="Determining" Bool="true" />
|
|
596
|
+
<Annotation Term="UI.Hidden" Path="hideIdentificationCompleted" />
|
|
597
|
+
</Record>
|
|
598
|
+
<Record Type="UI.DataFieldForAction">
|
|
599
|
+
<PropertyValue Property="Label" String="Identification failed" />
|
|
600
|
+
<PropertyValue Property="Action" String="poc.RequestsService.identificationFailed" />
|
|
601
|
+
<PropertyValue Property="Determining" Bool="true" />
|
|
602
|
+
<Annotation Term="UI.Hidden" Path="hideIdentificationCompleted" />
|
|
603
|
+
</Record>
|
|
604
|
+
</Collection>
|
|
605
|
+
</Annotation>
|
|
606
|
+
<Annotation Term="UI.LineItem">
|
|
607
|
+
<Collection>
|
|
608
|
+
<Record Type="UI.DataField">
|
|
609
|
+
<PropertyValue Property="Value" Path="request" />
|
|
610
|
+
</Record>
|
|
611
|
+
<Record Type="UI.DataField">
|
|
612
|
+
<PropertyValue Property="Value" Path="status_code" />
|
|
613
|
+
</Record>
|
|
614
|
+
<Record Type="UI.DataField">
|
|
615
|
+
<PropertyValue Property="Value" Path="modifiedBy" />
|
|
616
|
+
</Record>
|
|
617
|
+
<Record Type="UI.DataField">
|
|
618
|
+
<PropertyValue Property="Value" Path="modifiedAt" />
|
|
619
|
+
</Record>
|
|
620
|
+
<Record Type="UI.DataField">
|
|
621
|
+
<PropertyValue Property="Value" Path="dueDate" />
|
|
622
|
+
<PropertyValue Property="Criticality" Path="dueDateCriticality" />
|
|
623
|
+
<PropertyValue Property="CriticalityRepresentation" EnumMember="UI.CriticalityRepresentationType/WithIcon" />
|
|
624
|
+
</Record>
|
|
625
|
+
</Collection>
|
|
626
|
+
</Annotation>
|
|
627
|
+
<Annotation Term="UI.SelectionFields">
|
|
628
|
+
<Collection>
|
|
629
|
+
<PropertyPath>status_code</PropertyPath>
|
|
630
|
+
<PropertyPath>dueDate</PropertyPath>
|
|
631
|
+
<PropertyPath>modifiedBy</PropertyPath>
|
|
632
|
+
<PropertyPath>modifiedAt</PropertyPath>
|
|
633
|
+
</Collection>
|
|
634
|
+
</Annotation>
|
|
635
|
+
</Annotations>
|
|
636
|
+
<Annotations Target="poc.RequestsService.EntityContainer/AccessRequests">
|
|
637
|
+
<Annotation Term="Capabilities.DeleteRestrictions">
|
|
638
|
+
<Record Type="Capabilities.DeleteRestrictionsType">
|
|
639
|
+
<PropertyValue Property="Deletable" Bool="false" />
|
|
640
|
+
</Record>
|
|
641
|
+
</Annotation>
|
|
642
|
+
<Annotation Term="Capabilities.FilterRestrictions">
|
|
643
|
+
<Record Type="Capabilities.FilterRestrictionsType">
|
|
644
|
+
<PropertyValue Property="FilterExpressionRestrictions">
|
|
645
|
+
<Collection>
|
|
646
|
+
<Record Type="Capabilities.FilterExpressionRestrictionType">
|
|
647
|
+
<PropertyValue Property="Property" PropertyPath="dueDate" />
|
|
648
|
+
<PropertyValue Property="AllowedExpressions" String="SingleValue" />
|
|
649
|
+
</Record>
|
|
650
|
+
<Record Type="Capabilities.FilterExpressionRestrictionType">
|
|
651
|
+
<PropertyValue Property="Property" PropertyPath="modifiedAt" />
|
|
652
|
+
<PropertyValue Property="AllowedExpressions" String="SingleValue" />
|
|
653
|
+
</Record>
|
|
654
|
+
</Collection>
|
|
655
|
+
</PropertyValue>
|
|
656
|
+
</Record>
|
|
657
|
+
</Annotation>
|
|
658
|
+
<Annotation Term="Capabilities.InsertRestrictions">
|
|
659
|
+
<Record Type="Capabilities.InsertRestrictionsType">
|
|
660
|
+
<PropertyValue Property="Insertable" Bool="false" />
|
|
661
|
+
</Record>
|
|
662
|
+
</Annotation>
|
|
663
|
+
<Annotation Term="Common.DraftRoot">
|
|
664
|
+
<Record Type="Common.DraftRootType">
|
|
665
|
+
<PropertyValue Property="ActivationAction" String="poc.RequestsService.draftActivate" />
|
|
666
|
+
<PropertyValue Property="EditAction" String="poc.RequestsService.draftEdit" />
|
|
667
|
+
<PropertyValue Property="PreparationAction" String="poc.RequestsService.draftPrepare" />
|
|
668
|
+
</Record>
|
|
669
|
+
</Annotation>
|
|
670
|
+
</Annotations>
|
|
671
|
+
<Annotations Target="poc.RequestsService.AccessRequests/ID">
|
|
672
|
+
<Annotation Term="Common.Label" String="Request" />
|
|
673
|
+
</Annotations>
|
|
674
|
+
<Annotations Target="poc.RequestsService.AccessRequests/createdAt">
|
|
675
|
+
<Annotation Term="Common.Label" String="Created On" />
|
|
676
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
677
|
+
<Annotation Term="Core.Immutable" Bool="true" />
|
|
678
|
+
<Annotation Term="UI.HiddenFilter" Bool="true" />
|
|
679
|
+
</Annotations>
|
|
680
|
+
<Annotations Target="poc.RequestsService.AccessRequests/createdBy">
|
|
681
|
+
<Annotation Term="Common.Label" String="Created By" />
|
|
682
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
683
|
+
<Annotation Term="Core.Description" String="User's unique ID" />
|
|
684
|
+
<Annotation Term="Core.Immutable" Bool="true" />
|
|
685
|
+
<Annotation Term="UI.HiddenFilter" Bool="true" />
|
|
686
|
+
</Annotations>
|
|
687
|
+
<Annotations Target="poc.RequestsService.AccessRequests/modifiedAt">
|
|
688
|
+
<Annotation Term="Common.Label" String="Changed On" />
|
|
689
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
690
|
+
<Annotation Term="UI.HiddenFilter" Bool="false" />
|
|
691
|
+
</Annotations>
|
|
692
|
+
<Annotations Target="poc.RequestsService.AccessRequests/modifiedBy">
|
|
693
|
+
<Annotation Term="Common.Label" String="Changed By" />
|
|
694
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
695
|
+
<Annotation Term="Core.Description" String="User's unique ID" />
|
|
696
|
+
<Annotation Term="UI.HiddenFilter" Bool="false" />
|
|
697
|
+
</Annotations>
|
|
698
|
+
<Annotations Target="poc.RequestsService.AccessRequests/request">
|
|
699
|
+
<Annotation Term="Common.Label" String="ID" />
|
|
700
|
+
<Annotation Term="Core.Immutable" Bool="true" />
|
|
701
|
+
</Annotations>
|
|
702
|
+
<Annotations Target="poc.RequestsService.AccessRequests/externalRequestId">
|
|
703
|
+
<Annotation Term="Common.Label" String="External Request ID" />
|
|
704
|
+
</Annotations>
|
|
705
|
+
<Annotations Target="poc.RequestsService.AccessRequests/status">
|
|
706
|
+
<Annotation Term="Common.Label" String="Status" />
|
|
707
|
+
</Annotations>
|
|
708
|
+
<Annotations Target="poc.RequestsService.AccessRequests/authenticationStatus">
|
|
709
|
+
<Annotation Term="Common.Label" String="Authentication" />
|
|
710
|
+
</Annotations>
|
|
711
|
+
<Annotations Target="poc.RequestsService.AccessRequests/identificationFailedReason">
|
|
712
|
+
<Annotation Term="Common.Label" String="Reason" />
|
|
713
|
+
</Annotations>
|
|
714
|
+
<Annotations Target="poc.RequestsService.AccessRequests/preferredCommunicationChannel">
|
|
715
|
+
<Annotation Term="Common.Label" String="Preferred Communication Channel" />
|
|
716
|
+
</Annotations>
|
|
717
|
+
<Annotations Target="poc.RequestsService.AccessRequests/dueDate">
|
|
718
|
+
<Annotation Term="Common.Label" String="Due Date" />
|
|
719
|
+
</Annotations>
|
|
720
|
+
<Annotations Target="poc.RequestsService.AccessRequests/dueDateCriticality">
|
|
721
|
+
<Annotation Term="Common.Label" String="Due Date: Criticality" />
|
|
722
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
723
|
+
</Annotations>
|
|
724
|
+
<Annotations Target="poc.RequestsService.AccessRequests/isEditable">
|
|
725
|
+
<Annotation Term="Common.Label" String="Flag: Is editable" />
|
|
726
|
+
</Annotations>
|
|
727
|
+
<Annotations Target="poc.RequestsService.AccessRequests/hideIdentificationCompleted">
|
|
728
|
+
<Annotation Term="Common.Label" String="Flag: Hide the identification completed action" />
|
|
729
|
+
</Annotations>
|
|
730
|
+
<Annotations Target="poc.RequestsService.AccessRequests/userFirstName">
|
|
731
|
+
<Annotation Term="Common.Label" String="First Name" />
|
|
732
|
+
</Annotations>
|
|
733
|
+
<Annotations Target="poc.RequestsService.AccessRequests/userLastName">
|
|
734
|
+
<Annotation Term="Common.Label" String="Last Name" />
|
|
735
|
+
</Annotations>
|
|
736
|
+
<Annotations Target="poc.RequestsService.AccessRequests/userEMail">
|
|
737
|
+
<Annotation Term="Common.Label" String="E-Mail" />
|
|
738
|
+
</Annotations>
|
|
739
|
+
<Annotations Target="poc.RequestsService.AccessRequests/userStreet">
|
|
740
|
+
<Annotation Term="Common.Label" String="Street" />
|
|
741
|
+
</Annotations>
|
|
742
|
+
<Annotations Target="poc.RequestsService.AccessRequests/userZipcode">
|
|
743
|
+
<Annotation Term="Common.Label" String="ZIP Code" />
|
|
744
|
+
</Annotations>
|
|
745
|
+
<Annotations Target="poc.RequestsService.AccessRequests/userCity">
|
|
746
|
+
<Annotation Term="Common.Label" String="City" />
|
|
747
|
+
</Annotations>
|
|
748
|
+
<Annotations Target="poc.RequestsService.AccessRequests/userCountry">
|
|
749
|
+
<Annotation Term="Common.Label" String="Country" />
|
|
750
|
+
<Annotation Term="Core.Description" String="A country code as specified in ISO 3166-1" />
|
|
751
|
+
</Annotations>
|
|
752
|
+
<Annotations Target="poc.RequestsService.AccessRequests/rawData">
|
|
753
|
+
<Annotation Term="Common.Label" String="Raw Data" />
|
|
754
|
+
</Annotations>
|
|
755
|
+
<Annotations Target="poc.RequestsService.AccessRequests/details">
|
|
756
|
+
<Annotation Term="Common.Label" String="Final Reports" />
|
|
757
|
+
</Annotations>
|
|
758
|
+
<Annotations Target="poc.RequestsService.AccessRequests/dataSubjects">
|
|
759
|
+
<Annotation Term="Common.Label" String="Data Subject" />
|
|
760
|
+
</Annotations>
|
|
761
|
+
<Annotations Target="poc.RequestsService.AccessRequests/status_code">
|
|
762
|
+
<Annotation Term="Common.Label" String="Status" />
|
|
763
|
+
<Annotation Term="Common.Text" Path="status/name">
|
|
764
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
765
|
+
</Annotation>
|
|
766
|
+
<Annotation Term="Common.ValueListWithFixedValues" Bool="true" />
|
|
767
|
+
<Annotation Term="Common.ValueList">
|
|
768
|
+
<Record Type="Common.ValueListType">
|
|
769
|
+
<PropertyValue Property="Label" String="Status" />
|
|
770
|
+
<PropertyValue Property="CollectionPath" String="Status" />
|
|
771
|
+
<PropertyValue Property="Parameters">
|
|
772
|
+
<Collection>
|
|
773
|
+
<Record Type="Common.ValueListParameterInOut">
|
|
774
|
+
<PropertyValue Property="LocalDataProperty" PropertyPath="status_code" />
|
|
775
|
+
<PropertyValue Property="ValueListProperty" String="code" />
|
|
776
|
+
</Record>
|
|
777
|
+
<Record Type="Common.ValueListParameterDisplayOnly">
|
|
778
|
+
<PropertyValue Property="ValueListProperty" String="name" />
|
|
779
|
+
</Record>
|
|
780
|
+
</Collection>
|
|
781
|
+
</PropertyValue>
|
|
782
|
+
</Record>
|
|
783
|
+
</Annotation>
|
|
784
|
+
<Annotation Term="Core.Immutable" Bool="true" />
|
|
785
|
+
</Annotations>
|
|
786
|
+
<Annotations Target="poc.RequestsService.AccessRequests/authenticationStatus_code">
|
|
787
|
+
<Annotation Term="Common.Label" String="Authentication" />
|
|
788
|
+
<Annotation Term="Common.Text" Path="authenticationStatus/name">
|
|
789
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
790
|
+
</Annotation>
|
|
791
|
+
<Annotation Term="Common.ValueListWithFixedValues" Bool="true" />
|
|
792
|
+
<Annotation Term="Common.ValueList">
|
|
793
|
+
<Record Type="Common.ValueListType">
|
|
794
|
+
<PropertyValue Property="Label" String="Authentication" />
|
|
795
|
+
<PropertyValue Property="CollectionPath" String="Status" />
|
|
796
|
+
<PropertyValue Property="Parameters">
|
|
797
|
+
<Collection>
|
|
798
|
+
<Record Type="Common.ValueListParameterInOut">
|
|
799
|
+
<PropertyValue Property="LocalDataProperty" PropertyPath="authenticationStatus_code" />
|
|
800
|
+
<PropertyValue Property="ValueListProperty" String="code" />
|
|
801
|
+
</Record>
|
|
802
|
+
<Record Type="Common.ValueListParameterDisplayOnly">
|
|
803
|
+
<PropertyValue Property="ValueListProperty" String="name" />
|
|
804
|
+
</Record>
|
|
805
|
+
</Collection>
|
|
806
|
+
</PropertyValue>
|
|
807
|
+
</Record>
|
|
808
|
+
</Annotation>
|
|
809
|
+
</Annotations>
|
|
810
|
+
<Annotations Target="poc.RequestsService.AccessRequests/identificationFailedReason_code">
|
|
811
|
+
<Annotation Term="Common.Label" String="Reason" />
|
|
812
|
+
<Annotation Term="Common.ValueList">
|
|
813
|
+
<Record Type="Common.ValueListType">
|
|
814
|
+
<PropertyValue Property="Label" String="Reason" />
|
|
815
|
+
<PropertyValue Property="CollectionPath" String="IdentificationFailedReasons" />
|
|
816
|
+
<PropertyValue Property="Parameters">
|
|
817
|
+
<Collection>
|
|
818
|
+
<Record Type="Common.ValueListParameterInOut">
|
|
819
|
+
<PropertyValue Property="LocalDataProperty" PropertyPath="identificationFailedReason_code" />
|
|
820
|
+
<PropertyValue Property="ValueListProperty" String="code" />
|
|
821
|
+
</Record>
|
|
822
|
+
<Record Type="Common.ValueListParameterDisplayOnly">
|
|
823
|
+
<PropertyValue Property="ValueListProperty" String="name" />
|
|
824
|
+
</Record>
|
|
825
|
+
</Collection>
|
|
826
|
+
</PropertyValue>
|
|
827
|
+
</Record>
|
|
828
|
+
</Annotation>
|
|
829
|
+
</Annotations>
|
|
830
|
+
<Annotations Target="poc.RequestsService.AccessRequests/preferredCommunicationChannel_code">
|
|
831
|
+
<Annotation Term="Common.Label" String="Preferred Communication Channel" />
|
|
832
|
+
<Annotation Term="Common.Text" Path="preferredCommunicationChannel/name">
|
|
833
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
834
|
+
</Annotation>
|
|
835
|
+
<Annotation Term="Common.ValueListWithFixedValues" Bool="true" />
|
|
836
|
+
<Annotation Term="Common.ValueList">
|
|
837
|
+
<Record Type="Common.ValueListType">
|
|
838
|
+
<PropertyValue Property="Label" String="Preferred Communication Channel" />
|
|
839
|
+
<PropertyValue Property="CollectionPath" String="CommunicationChannels" />
|
|
840
|
+
<PropertyValue Property="Parameters">
|
|
841
|
+
<Collection>
|
|
842
|
+
<Record Type="Common.ValueListParameterInOut">
|
|
843
|
+
<PropertyValue Property="LocalDataProperty" PropertyPath="preferredCommunicationChannel_code" />
|
|
844
|
+
<PropertyValue Property="ValueListProperty" String="code" />
|
|
845
|
+
</Record>
|
|
846
|
+
<Record Type="Common.ValueListParameterDisplayOnly">
|
|
847
|
+
<PropertyValue Property="ValueListProperty" String="name" />
|
|
848
|
+
</Record>
|
|
849
|
+
</Collection>
|
|
850
|
+
</PropertyValue>
|
|
851
|
+
</Record>
|
|
852
|
+
</Annotation>
|
|
853
|
+
</Annotations>
|
|
854
|
+
<Annotations Target="poc.RequestsService.AccessRequests/userCountry_code">
|
|
855
|
+
<Annotation Term="Common.Label" String="Country" />
|
|
856
|
+
<Annotation Term="Common.Text" Path="userCountry/name">
|
|
857
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
858
|
+
</Annotation>
|
|
859
|
+
<Annotation Term="Common.ValueListWithFixedValues" Bool="true" />
|
|
860
|
+
<Annotation Term="Common.ValueList">
|
|
861
|
+
<Record Type="Common.ValueListType">
|
|
862
|
+
<PropertyValue Property="Label" String="Country" />
|
|
863
|
+
<PropertyValue Property="CollectionPath" String="Countries" />
|
|
864
|
+
<PropertyValue Property="Parameters">
|
|
865
|
+
<Collection>
|
|
866
|
+
<Record Type="Common.ValueListParameterInOut">
|
|
867
|
+
<PropertyValue Property="LocalDataProperty" PropertyPath="userCountry_code" />
|
|
868
|
+
<PropertyValue Property="ValueListProperty" String="code" />
|
|
869
|
+
</Record>
|
|
870
|
+
<Record Type="Common.ValueListParameterDisplayOnly">
|
|
871
|
+
<PropertyValue Property="ValueListProperty" String="name" />
|
|
872
|
+
</Record>
|
|
873
|
+
</Collection>
|
|
874
|
+
</PropertyValue>
|
|
875
|
+
</Record>
|
|
876
|
+
</Annotation>
|
|
877
|
+
<Annotation Term="Core.Description" String="A country code as specified in ISO 3166-1" />
|
|
878
|
+
</Annotations>
|
|
879
|
+
<Annotations Target="poc.RequestsService.AccessRequests/IsActiveEntity">
|
|
880
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
881
|
+
</Annotations>
|
|
882
|
+
<Annotations Target="poc.RequestsService.AccessRequests/HasActiveEntity">
|
|
883
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
884
|
+
</Annotations>
|
|
885
|
+
<Annotations Target="poc.RequestsService.AccessRequests/HasDraftEntity">
|
|
886
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
887
|
+
</Annotations>
|
|
888
|
+
<Annotations Target="poc.RequestsService.AccessRequests/DraftAdministrativeData">
|
|
889
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
890
|
+
</Annotations>
|
|
891
|
+
<Annotations Target="poc.RequestsService.identificationCompleted(poc.RequestsService.AccessRequests)">
|
|
892
|
+
<Annotation Term="Core.OperationAvailable" Path="in/isEditable" />
|
|
893
|
+
</Annotations>
|
|
894
|
+
<Annotations Target="poc.RequestsService.identificationFailed(poc.RequestsService.AccessRequests)/identificationFailedReason_code">
|
|
895
|
+
<Annotation Term="Common.FieldControl" EnumMember="Common.FieldControlType/Mandatory" />
|
|
896
|
+
<Annotation Term="Common.Label" String="Reason" />
|
|
897
|
+
<Annotation Term="Common.ValueListMapping">
|
|
898
|
+
<Record Type="Common.ValueListMappingType">
|
|
899
|
+
<PropertyValue Property="CollectionPath" String="IdentificationFailedReasons" />
|
|
900
|
+
<PropertyValue Property="Label" String="Identification failed reason" />
|
|
901
|
+
<PropertyValue Property="Parameters">
|
|
902
|
+
<Collection>
|
|
903
|
+
<Record Type="Common.ValueListParameterInOut">
|
|
904
|
+
<PropertyValue Property="ValueListProperty" String="code" />
|
|
905
|
+
<PropertyValue Property="LocalDataProperty" PropertyPath="identificationFailedReason_code" />
|
|
906
|
+
</Record>
|
|
907
|
+
<Record Type="Common.ValueListParameterDisplayOnly">
|
|
908
|
+
<PropertyValue Property="ValueListProperty" String="name" />
|
|
909
|
+
</Record>
|
|
910
|
+
</Collection>
|
|
911
|
+
</PropertyValue>
|
|
912
|
+
</Record>
|
|
913
|
+
</Annotation>
|
|
914
|
+
<Annotation Term="Common.ValueListWithFixedValues" Bool="true" />
|
|
915
|
+
</Annotations>
|
|
916
|
+
<Annotations Target="poc.RequestsService.identificationFailed(poc.RequestsService.AccessRequests)/note">
|
|
917
|
+
<Annotation Term="Common.Label" String="Note" />
|
|
918
|
+
<Annotation Term="UI.MultiLineText" Bool="true" />
|
|
919
|
+
</Annotations>
|
|
920
|
+
<Annotations Target="poc.RequestsService.CommunicationChannels">
|
|
921
|
+
<Annotation Term="Common.Label" String="Communication Channel" />
|
|
922
|
+
<Annotation Term="UI.Identification">
|
|
923
|
+
<Collection>
|
|
924
|
+
<Path>name</Path>
|
|
925
|
+
</Collection>
|
|
926
|
+
</Annotation>
|
|
927
|
+
</Annotations>
|
|
928
|
+
<Annotations Target="poc.RequestsService.CommunicationChannels/name">
|
|
929
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
930
|
+
</Annotations>
|
|
931
|
+
<Annotations Target="poc.RequestsService.CommunicationChannels/descr">
|
|
932
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
933
|
+
</Annotations>
|
|
934
|
+
<Annotations Target="poc.RequestsService.CommunicationChannels/code">
|
|
935
|
+
<Annotation Term="Common.Label" String="Channel" />
|
|
936
|
+
<Annotation Term="Common.Text" Path="name">
|
|
937
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
938
|
+
</Annotation>
|
|
939
|
+
</Annotations>
|
|
940
|
+
<Annotations Target="poc.RequestsService.CommunicationChannels_texts/name">
|
|
941
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
942
|
+
</Annotations>
|
|
943
|
+
<Annotations Target="poc.RequestsService.CommunicationChannels_texts/descr">
|
|
944
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
945
|
+
</Annotations>
|
|
946
|
+
<Annotations Target="poc.RequestsService.CommunicationChannels_texts/code">
|
|
947
|
+
<Annotation Term="Common.Label" String="Channel" />
|
|
948
|
+
<Annotation Term="Common.Text" Path="name">
|
|
949
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
950
|
+
</Annotation>
|
|
951
|
+
</Annotations>
|
|
952
|
+
<Annotations Target="poc.RequestsService.Countries">
|
|
953
|
+
<Annotation Term="UI.Identification">
|
|
954
|
+
<Collection>
|
|
955
|
+
<Path>name</Path>
|
|
956
|
+
</Collection>
|
|
957
|
+
</Annotation>
|
|
958
|
+
</Annotations>
|
|
959
|
+
<Annotations Target="poc.RequestsService.Countries/name">
|
|
960
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
961
|
+
</Annotations>
|
|
962
|
+
<Annotations Target="poc.RequestsService.Countries/descr">
|
|
963
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
964
|
+
</Annotations>
|
|
965
|
+
<Annotations Target="poc.RequestsService.Countries/code">
|
|
966
|
+
<Annotation Term="Common.Label" String="Country Code" />
|
|
967
|
+
</Annotations>
|
|
968
|
+
<Annotations Target="poc.RequestsService.Countries_texts/name">
|
|
969
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
970
|
+
</Annotations>
|
|
971
|
+
<Annotations Target="poc.RequestsService.Countries_texts/descr">
|
|
972
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
973
|
+
</Annotations>
|
|
974
|
+
<Annotations Target="poc.RequestsService.Countries_texts/code">
|
|
975
|
+
<Annotation Term="Common.Label" String="Country Code" />
|
|
976
|
+
</Annotations>
|
|
977
|
+
<Annotations Target="poc.RequestsService.DataSubjects">
|
|
978
|
+
<Annotation Term="Common.Label" String="Data Subject" />
|
|
979
|
+
<Annotation Term="UI.HeaderInfo">
|
|
980
|
+
<Record Type="UI.HeaderInfoType">
|
|
981
|
+
<PropertyValue Property="TypeName" String="Data Subject" />
|
|
982
|
+
<PropertyValue Property="TypeNamePlural" String="Data Subjects" />
|
|
983
|
+
</Record>
|
|
984
|
+
</Annotation>
|
|
985
|
+
<Annotation Term="UI.LineItem">
|
|
986
|
+
<Collection>
|
|
987
|
+
<Record Type="UI.DataField">
|
|
988
|
+
<PropertyValue Property="Value" Path="dataSubject" />
|
|
989
|
+
</Record>
|
|
990
|
+
<Record Type="UI.DataField">
|
|
991
|
+
<PropertyValue Property="Value" Path="sourceSystem" />
|
|
992
|
+
</Record>
|
|
993
|
+
<Record Type="UI.DataField">
|
|
994
|
+
<PropertyValue Property="Value" Path="description" />
|
|
995
|
+
</Record>
|
|
996
|
+
</Collection>
|
|
997
|
+
</Annotation>
|
|
998
|
+
</Annotations>
|
|
999
|
+
<Annotations Target="poc.RequestsService.EntityContainer/DataSubjects">
|
|
1000
|
+
<Annotation Term="Common.DraftNode">
|
|
1001
|
+
<Record Type="Common.DraftNodeType">
|
|
1002
|
+
<PropertyValue Property="PreparationAction" String="poc.RequestsService.draftPrepare" />
|
|
1003
|
+
</Record>
|
|
1004
|
+
</Annotation>
|
|
1005
|
+
</Annotations>
|
|
1006
|
+
<Annotations Target="poc.RequestsService.DataSubjects/dataSubject">
|
|
1007
|
+
<Annotation Term="Common.Label" String="Data Subject ID" />
|
|
1008
|
+
</Annotations>
|
|
1009
|
+
<Annotations Target="poc.RequestsService.DataSubjects/sourceSystem">
|
|
1010
|
+
<Annotation Term="Common.Label" String="Source System" />
|
|
1011
|
+
</Annotations>
|
|
1012
|
+
<Annotations Target="poc.RequestsService.DataSubjects/description">
|
|
1013
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
1014
|
+
</Annotations>
|
|
1015
|
+
<Annotations Target="poc.RequestsService.DataSubjects/IsActiveEntity">
|
|
1016
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1017
|
+
</Annotations>
|
|
1018
|
+
<Annotations Target="poc.RequestsService.DataSubjects/HasActiveEntity">
|
|
1019
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1020
|
+
</Annotations>
|
|
1021
|
+
<Annotations Target="poc.RequestsService.DataSubjects/HasDraftEntity">
|
|
1022
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1023
|
+
</Annotations>
|
|
1024
|
+
<Annotations Target="poc.RequestsService.DataSubjects/DraftAdministrativeData">
|
|
1025
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1026
|
+
</Annotations>
|
|
1027
|
+
<Annotations Target="poc.RequestsService.DownloadHistory">
|
|
1028
|
+
<Annotation Term="Common.Label" String="Download History" />
|
|
1029
|
+
<Annotation Term="UI.HeaderInfo">
|
|
1030
|
+
<Record Type="UI.HeaderInfoType">
|
|
1031
|
+
<PropertyValue Property="TypeName" String="Download History" />
|
|
1032
|
+
<PropertyValue Property="TypeNamePlural" String="Download History" />
|
|
1033
|
+
</Record>
|
|
1034
|
+
</Annotation>
|
|
1035
|
+
<Annotation Term="UI.LineItem">
|
|
1036
|
+
<Collection>
|
|
1037
|
+
<Record Type="UI.DataField">
|
|
1038
|
+
<PropertyValue Property="Value" Path="downloadedAt" />
|
|
1039
|
+
</Record>
|
|
1040
|
+
<Record Type="UI.DataField">
|
|
1041
|
+
<PropertyValue Property="Value" Path="ipAddress" />
|
|
1042
|
+
</Record>
|
|
1043
|
+
</Collection>
|
|
1044
|
+
</Annotation>
|
|
1045
|
+
</Annotations>
|
|
1046
|
+
<Annotations Target="poc.RequestsService.EntityContainer/DownloadHistory">
|
|
1047
|
+
<Annotation Term="Capabilities.DeleteRestrictions">
|
|
1048
|
+
<Record Type="Capabilities.DeleteRestrictionsType">
|
|
1049
|
+
<PropertyValue Property="Deletable" Bool="false" />
|
|
1050
|
+
</Record>
|
|
1051
|
+
</Annotation>
|
|
1052
|
+
<Annotation Term="Capabilities.InsertRestrictions">
|
|
1053
|
+
<Record Type="Capabilities.InsertRestrictionsType">
|
|
1054
|
+
<PropertyValue Property="Insertable" Bool="false" />
|
|
1055
|
+
</Record>
|
|
1056
|
+
</Annotation>
|
|
1057
|
+
<Annotation Term="Capabilities.UpdateRestrictions">
|
|
1058
|
+
<Record Type="Capabilities.UpdateRestrictionsType">
|
|
1059
|
+
<PropertyValue Property="Updatable" Bool="false" />
|
|
1060
|
+
</Record>
|
|
1061
|
+
</Annotation>
|
|
1062
|
+
<Annotation Term="Common.DraftNode">
|
|
1063
|
+
<Record Type="Common.DraftNodeType">
|
|
1064
|
+
<PropertyValue Property="PreparationAction" String="poc.RequestsService.draftPrepare" />
|
|
1065
|
+
</Record>
|
|
1066
|
+
</Annotation>
|
|
1067
|
+
</Annotations>
|
|
1068
|
+
<Annotations Target="poc.RequestsService.DownloadHistory/downloadedAt">
|
|
1069
|
+
<Annotation Term="Common.Label" String="Downloaded At" />
|
|
1070
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1071
|
+
</Annotations>
|
|
1072
|
+
<Annotations Target="poc.RequestsService.DownloadHistory/ipAddress">
|
|
1073
|
+
<Annotation Term="Common.Label" String="IP-Address" />
|
|
1074
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1075
|
+
</Annotations>
|
|
1076
|
+
<Annotations Target="poc.RequestsService.DownloadHistory/IsActiveEntity">
|
|
1077
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1078
|
+
</Annotations>
|
|
1079
|
+
<Annotations Target="poc.RequestsService.DownloadHistory/HasActiveEntity">
|
|
1080
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1081
|
+
</Annotations>
|
|
1082
|
+
<Annotations Target="poc.RequestsService.DownloadHistory/HasDraftEntity">
|
|
1083
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1084
|
+
</Annotations>
|
|
1085
|
+
<Annotations Target="poc.RequestsService.DownloadHistory/DraftAdministrativeData">
|
|
1086
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1087
|
+
</Annotations>
|
|
1088
|
+
<Annotations Target="poc.RequestsService.DownloadStatus">
|
|
1089
|
+
<Annotation Term="Common.Label" String="Download Status" />
|
|
1090
|
+
<Annotation Term="UI.Identification">
|
|
1091
|
+
<Collection>
|
|
1092
|
+
<Path>name</Path>
|
|
1093
|
+
</Collection>
|
|
1094
|
+
</Annotation>
|
|
1095
|
+
</Annotations>
|
|
1096
|
+
<Annotations Target="poc.RequestsService.DownloadStatus/name">
|
|
1097
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
1098
|
+
</Annotations>
|
|
1099
|
+
<Annotations Target="poc.RequestsService.DownloadStatus/descr">
|
|
1100
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
1101
|
+
</Annotations>
|
|
1102
|
+
<Annotations Target="poc.RequestsService.DownloadStatus/code">
|
|
1103
|
+
<Annotation Term="Common.Label" String="Status" />
|
|
1104
|
+
<Annotation Term="Common.Text" Path="name">
|
|
1105
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
1106
|
+
</Annotation>
|
|
1107
|
+
</Annotations>
|
|
1108
|
+
<Annotations Target="poc.RequestsService.DownloadStatus_texts/name">
|
|
1109
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
1110
|
+
</Annotations>
|
|
1111
|
+
<Annotations Target="poc.RequestsService.DownloadStatus_texts/descr">
|
|
1112
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
1113
|
+
</Annotations>
|
|
1114
|
+
<Annotations Target="poc.RequestsService.DownloadStatus_texts/code">
|
|
1115
|
+
<Annotation Term="Common.Label" String="Status" />
|
|
1116
|
+
<Annotation Term="Common.Text" Path="name">
|
|
1117
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
1118
|
+
</Annotation>
|
|
1119
|
+
</Annotations>
|
|
1120
|
+
<Annotations Target="poc.RequestsService.DraftAdministrativeData/DraftUUID">
|
|
1121
|
+
<Annotation Term="Common.Label" String="Draft (Technical ID)" />
|
|
1122
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1123
|
+
</Annotations>
|
|
1124
|
+
<Annotations Target="poc.RequestsService.DraftAdministrativeData/CreationDateTime">
|
|
1125
|
+
<Annotation Term="Common.Label" String="Draft Created On" />
|
|
1126
|
+
</Annotations>
|
|
1127
|
+
<Annotations Target="poc.RequestsService.DraftAdministrativeData/CreatedByUser">
|
|
1128
|
+
<Annotation Term="Common.Label" String="Draft Created By" />
|
|
1129
|
+
</Annotations>
|
|
1130
|
+
<Annotations Target="poc.RequestsService.DraftAdministrativeData/DraftIsCreatedByMe">
|
|
1131
|
+
<Annotation Term="Common.Label" String="Draft Created By Me" />
|
|
1132
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1133
|
+
</Annotations>
|
|
1134
|
+
<Annotations Target="poc.RequestsService.DraftAdministrativeData/LastChangeDateTime">
|
|
1135
|
+
<Annotation Term="Common.Label" String="Draft Last Changed On" />
|
|
1136
|
+
</Annotations>
|
|
1137
|
+
<Annotations Target="poc.RequestsService.DraftAdministrativeData/LastChangedByUser">
|
|
1138
|
+
<Annotation Term="Common.Label" String="Draft Last Changed By" />
|
|
1139
|
+
</Annotations>
|
|
1140
|
+
<Annotations Target="poc.RequestsService.DraftAdministrativeData/InProcessByUser">
|
|
1141
|
+
<Annotation Term="Common.Label" String="Draft In Process By" />
|
|
1142
|
+
</Annotations>
|
|
1143
|
+
<Annotations Target="poc.RequestsService.DraftAdministrativeData/DraftIsProcessedByMe">
|
|
1144
|
+
<Annotation Term="Common.Label" String="Draft In Process By Me" />
|
|
1145
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1146
|
+
</Annotations>
|
|
1147
|
+
<Annotations Target="poc.RequestsService.IdentificationFailedReasons">
|
|
1148
|
+
<Annotation Term="UI.Identification">
|
|
1149
|
+
<Collection>
|
|
1150
|
+
<Path>name</Path>
|
|
1151
|
+
</Collection>
|
|
1152
|
+
</Annotation>
|
|
1153
|
+
</Annotations>
|
|
1154
|
+
<Annotations Target="poc.RequestsService.IdentificationFailedReasons/name">
|
|
1155
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
1156
|
+
</Annotations>
|
|
1157
|
+
<Annotations Target="poc.RequestsService.IdentificationFailedReasons/descr">
|
|
1158
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
1159
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1160
|
+
</Annotations>
|
|
1161
|
+
<Annotations Target="poc.RequestsService.IdentificationFailedReasons/code">
|
|
1162
|
+
<Annotation Term="Common.Label" String="Reason" />
|
|
1163
|
+
<Annotation Term="Common.Text" Path="name">
|
|
1164
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
1165
|
+
</Annotation>
|
|
1166
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1167
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1168
|
+
</Annotations>
|
|
1169
|
+
<Annotations Target="poc.RequestsService.IdentificationFailedReasons_texts/name">
|
|
1170
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
1171
|
+
</Annotations>
|
|
1172
|
+
<Annotations Target="poc.RequestsService.IdentificationFailedReasons_texts/descr">
|
|
1173
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
1174
|
+
</Annotations>
|
|
1175
|
+
<Annotations Target="poc.RequestsService.RawData">
|
|
1176
|
+
<Annotation Term="Common.Label" String="Raw Data" />
|
|
1177
|
+
<Annotation Term="UI.HeaderInfo">
|
|
1178
|
+
<Record Type="UI.HeaderInfoType">
|
|
1179
|
+
<PropertyValue Property="TypeName" String="Raw Data" />
|
|
1180
|
+
<PropertyValue Property="TypeNamePlural" String="Raw Data" />
|
|
1181
|
+
</Record>
|
|
1182
|
+
</Annotation>
|
|
1183
|
+
<Annotation Term="UI.LineItem">
|
|
1184
|
+
<Collection>
|
|
1185
|
+
<Record Type="UI.DataField">
|
|
1186
|
+
<PropertyValue Property="Value" Path="description" />
|
|
1187
|
+
</Record>
|
|
1188
|
+
<Record Type="UI.DataField">
|
|
1189
|
+
<PropertyValue Property="Value" Path="collectedOn" />
|
|
1190
|
+
</Record>
|
|
1191
|
+
<Record Type="UI.DataField">
|
|
1192
|
+
<PropertyValue Property="Value" Path="postProcessedBy" />
|
|
1193
|
+
</Record>
|
|
1194
|
+
<Record Type="UI.DataField">
|
|
1195
|
+
<PropertyValue Property="Value" Path="postProcessedAt" />
|
|
1196
|
+
</Record>
|
|
1197
|
+
<Record Type="UI.DataFieldForAction">
|
|
1198
|
+
<PropertyValue Property="Label" String="Post-Processing" />
|
|
1199
|
+
<PropertyValue Property="Action" String="poc.RequestsService.postProcess" />
|
|
1200
|
+
</Record>
|
|
1201
|
+
</Collection>
|
|
1202
|
+
</Annotation>
|
|
1203
|
+
</Annotations>
|
|
1204
|
+
<Annotations Target="poc.RequestsService.EntityContainer/RawData">
|
|
1205
|
+
<Annotation Term="Common.DraftNode">
|
|
1206
|
+
<Record Type="Common.DraftNodeType">
|
|
1207
|
+
<PropertyValue Property="PreparationAction" String="poc.RequestsService.draftPrepare" />
|
|
1208
|
+
</Record>
|
|
1209
|
+
</Annotation>
|
|
1210
|
+
</Annotations>
|
|
1211
|
+
<Annotations Target="poc.RequestsService.RawData/createdAt">
|
|
1212
|
+
<Annotation Term="Common.Label" String="Created On" />
|
|
1213
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1214
|
+
<Annotation Term="Core.Immutable" Bool="true" />
|
|
1215
|
+
<Annotation Term="UI.HiddenFilter" Bool="true" />
|
|
1216
|
+
</Annotations>
|
|
1217
|
+
<Annotations Target="poc.RequestsService.RawData/createdBy">
|
|
1218
|
+
<Annotation Term="Common.Label" String="Created By" />
|
|
1219
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1220
|
+
<Annotation Term="Core.Description" String="User's unique ID" />
|
|
1221
|
+
<Annotation Term="Core.Immutable" Bool="true" />
|
|
1222
|
+
<Annotation Term="UI.HiddenFilter" Bool="true" />
|
|
1223
|
+
</Annotations>
|
|
1224
|
+
<Annotations Target="poc.RequestsService.RawData/modifiedAt">
|
|
1225
|
+
<Annotation Term="Common.Label" String="Changed On" />
|
|
1226
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1227
|
+
<Annotation Term="UI.HiddenFilter" Bool="true" />
|
|
1228
|
+
</Annotations>
|
|
1229
|
+
<Annotations Target="poc.RequestsService.RawData/modifiedBy">
|
|
1230
|
+
<Annotation Term="Common.Label" String="Changed By" />
|
|
1231
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1232
|
+
<Annotation Term="Core.Description" String="User's unique ID" />
|
|
1233
|
+
<Annotation Term="UI.HiddenFilter" Bool="true" />
|
|
1234
|
+
</Annotations>
|
|
1235
|
+
<Annotations Target="poc.RequestsService.RawData/description">
|
|
1236
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
1237
|
+
</Annotations>
|
|
1238
|
+
<Annotations Target="poc.RequestsService.RawData/collectedOn">
|
|
1239
|
+
<Annotation Term="Common.Label" String="Data Collected On" />
|
|
1240
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1241
|
+
</Annotations>
|
|
1242
|
+
<Annotations Target="poc.RequestsService.RawData/postProcessedBy">
|
|
1243
|
+
<Annotation Term="Common.Label" String="Post-processed By" />
|
|
1244
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1245
|
+
</Annotations>
|
|
1246
|
+
<Annotations Target="poc.RequestsService.RawData/postProcessedAt">
|
|
1247
|
+
<Annotation Term="Common.Label" String="Post-processed At" />
|
|
1248
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1249
|
+
</Annotations>
|
|
1250
|
+
<Annotations Target="poc.RequestsService.RawData/IsActiveEntity">
|
|
1251
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1252
|
+
</Annotations>
|
|
1253
|
+
<Annotations Target="poc.RequestsService.RawData/HasActiveEntity">
|
|
1254
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1255
|
+
</Annotations>
|
|
1256
|
+
<Annotations Target="poc.RequestsService.RawData/HasDraftEntity">
|
|
1257
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1258
|
+
</Annotations>
|
|
1259
|
+
<Annotations Target="poc.RequestsService.RawData/DraftAdministrativeData">
|
|
1260
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1261
|
+
</Annotations>
|
|
1262
|
+
<Annotations Target="poc.RequestsService.postProcess(poc.RequestsService.RawData)">
|
|
1263
|
+
<Annotation Term="Core.OperationAvailable" Path="in/request/isEditable" />
|
|
1264
|
+
</Annotations>
|
|
1265
|
+
<Annotations Target="poc.RequestsService.ReportDetailTypes">
|
|
1266
|
+
<Annotation Term="Common.Label" String="Type" />
|
|
1267
|
+
<Annotation Term="UI.Identification">
|
|
1268
|
+
<Collection>
|
|
1269
|
+
<Path>name</Path>
|
|
1270
|
+
</Collection>
|
|
1271
|
+
</Annotation>
|
|
1272
|
+
</Annotations>
|
|
1273
|
+
<Annotations Target="poc.RequestsService.ReportDetailTypes/name">
|
|
1274
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
1275
|
+
</Annotations>
|
|
1276
|
+
<Annotations Target="poc.RequestsService.ReportDetailTypes/descr">
|
|
1277
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
1278
|
+
</Annotations>
|
|
1279
|
+
<Annotations Target="poc.RequestsService.ReportDetailTypes/code">
|
|
1280
|
+
<Annotation Term="Common.Label" String="Type" />
|
|
1281
|
+
</Annotations>
|
|
1282
|
+
<Annotations Target="poc.RequestsService.ReportDetailTypes_texts/name">
|
|
1283
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
1284
|
+
</Annotations>
|
|
1285
|
+
<Annotations Target="poc.RequestsService.ReportDetailTypes_texts/descr">
|
|
1286
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
1287
|
+
</Annotations>
|
|
1288
|
+
<Annotations Target="poc.RequestsService.ReportDetailTypes_texts/code">
|
|
1289
|
+
<Annotation Term="Common.Label" String="Type" />
|
|
1290
|
+
</Annotations>
|
|
1291
|
+
<Annotations Target="poc.RequestsService.ReportDetails">
|
|
1292
|
+
<Annotation Term="Common.Label" String="Final Reports" />
|
|
1293
|
+
<Annotation Term="UI.DataPoint" Qualifier="expirationDate">
|
|
1294
|
+
<Record Type="UI.DataPointType">
|
|
1295
|
+
<PropertyValue Property="Title" String="Expiration Date" />
|
|
1296
|
+
<PropertyValue Property="Value" Path="expirationDate" />
|
|
1297
|
+
</Record>
|
|
1298
|
+
</Annotation>
|
|
1299
|
+
<Annotation Term="UI.DataPoint" Qualifier="status">
|
|
1300
|
+
<Record Type="UI.DataPointType">
|
|
1301
|
+
<PropertyValue Property="Criticality" Path="downloadStatus/criticality" />
|
|
1302
|
+
<PropertyValue Property="Title" String="Status" />
|
|
1303
|
+
<PropertyValue Property="Value" Path="downloadStatus_code" />
|
|
1304
|
+
</Record>
|
|
1305
|
+
</Annotation>
|
|
1306
|
+
<Annotation Term="UI.Facets">
|
|
1307
|
+
<Collection>
|
|
1308
|
+
<Record Type="UI.ReferenceFacet">
|
|
1309
|
+
<PropertyValue Property="Label" String="General Information" />
|
|
1310
|
+
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#generalinfo" />
|
|
1311
|
+
</Record>
|
|
1312
|
+
<Record Type="UI.ReferenceFacet">
|
|
1313
|
+
<PropertyValue Property="Label" String="Download History" />
|
|
1314
|
+
<PropertyValue Property="Target" AnnotationPath="downloadHistory/@UI.LineItem" />
|
|
1315
|
+
</Record>
|
|
1316
|
+
</Collection>
|
|
1317
|
+
</Annotation>
|
|
1318
|
+
<Annotation Term="UI.FieldGroup" Qualifier="admin">
|
|
1319
|
+
<Record Type="UI.FieldGroupType">
|
|
1320
|
+
<PropertyValue Property="Data">
|
|
1321
|
+
<Collection>
|
|
1322
|
+
<Record Type="UI.DataField">
|
|
1323
|
+
<PropertyValue Property="Value" Path="providedAt" />
|
|
1324
|
+
</Record>
|
|
1325
|
+
<Record Type="UI.DataField">
|
|
1326
|
+
<PropertyValue Property="Value" Path="providedBy" />
|
|
1327
|
+
</Record>
|
|
1328
|
+
</Collection>
|
|
1329
|
+
</PropertyValue>
|
|
1330
|
+
</Record>
|
|
1331
|
+
</Annotation>
|
|
1332
|
+
<Annotation Term="UI.FieldGroup" Qualifier="generalinfo">
|
|
1333
|
+
<Record Type="UI.FieldGroupType">
|
|
1334
|
+
<PropertyValue Property="Data">
|
|
1335
|
+
<Collection>
|
|
1336
|
+
<Record Type="UI.DataFieldWithUrl">
|
|
1337
|
+
<PropertyValue Property="Value" Path="link" />
|
|
1338
|
+
<PropertyValue Property="Url" Path="link" />
|
|
1339
|
+
</Record>
|
|
1340
|
+
<Record Type="UI.DataField">
|
|
1341
|
+
<PropertyValue Property="Value" Path="type_code" />
|
|
1342
|
+
</Record>
|
|
1343
|
+
<Record Type="UI.DataField">
|
|
1344
|
+
<PropertyValue Property="Value" Path="description" />
|
|
1345
|
+
</Record>
|
|
1346
|
+
</Collection>
|
|
1347
|
+
</PropertyValue>
|
|
1348
|
+
</Record>
|
|
1349
|
+
</Annotation>
|
|
1350
|
+
<Annotation Term="UI.HeaderFacets">
|
|
1351
|
+
<Collection>
|
|
1352
|
+
<Record Type="UI.ReferenceFacet">
|
|
1353
|
+
<PropertyValue Property="Target" AnnotationPath="@UI.FieldGroup#admin" />
|
|
1354
|
+
</Record>
|
|
1355
|
+
<Record Type="UI.ReferenceFacet">
|
|
1356
|
+
<PropertyValue Property="Target" AnnotationPath="@UI.DataPoint#expirationDate" />
|
|
1357
|
+
</Record>
|
|
1358
|
+
<Record Type="UI.ReferenceFacet">
|
|
1359
|
+
<PropertyValue Property="Target" AnnotationPath="@UI.DataPoint#status" />
|
|
1360
|
+
</Record>
|
|
1361
|
+
</Collection>
|
|
1362
|
+
</Annotation>
|
|
1363
|
+
<Annotation Term="UI.HeaderInfo">
|
|
1364
|
+
<Record Type="UI.HeaderInfoType">
|
|
1365
|
+
<PropertyValue Property="TypeName" String="Final Report" />
|
|
1366
|
+
<PropertyValue Property="TypeNamePlural" String="Final Reports" />
|
|
1367
|
+
</Record>
|
|
1368
|
+
</Annotation>
|
|
1369
|
+
<Annotation Term="UI.LineItem">
|
|
1370
|
+
<Collection>
|
|
1371
|
+
<Record Type="UI.DataFieldWithUrl">
|
|
1372
|
+
<PropertyValue Property="Value" Path="link" />
|
|
1373
|
+
<PropertyValue Property="Url" Path="link" />
|
|
1374
|
+
</Record>
|
|
1375
|
+
<Record Type="UI.DataField">
|
|
1376
|
+
<PropertyValue Property="Value" Path="type_code" />
|
|
1377
|
+
</Record>
|
|
1378
|
+
<Record Type="UI.DataField">
|
|
1379
|
+
<PropertyValue Property="Value" Path="description" />
|
|
1380
|
+
</Record>
|
|
1381
|
+
<Record Type="UI.DataField">
|
|
1382
|
+
<PropertyValue Property="Value" Path="toBeSent" />
|
|
1383
|
+
</Record>
|
|
1384
|
+
<Record Type="UI.DataField">
|
|
1385
|
+
<PropertyValue Property="Value" Path="providedAt" />
|
|
1386
|
+
</Record>
|
|
1387
|
+
<Record Type="UI.DataField">
|
|
1388
|
+
<PropertyValue Property="Value" Path="providedBy" />
|
|
1389
|
+
</Record>
|
|
1390
|
+
<Record Type="UI.DataField">
|
|
1391
|
+
<PropertyValue Property="Value" Path="downloadedAt" />
|
|
1392
|
+
</Record>
|
|
1393
|
+
</Collection>
|
|
1394
|
+
</Annotation>
|
|
1395
|
+
</Annotations>
|
|
1396
|
+
<Annotations Target="poc.RequestsService.EntityContainer/ReportDetails">
|
|
1397
|
+
<Annotation Term="Capabilities.UpdateRestrictions">
|
|
1398
|
+
<Record Type="Capabilities.UpdateRestrictionsType">
|
|
1399
|
+
<PropertyValue Property="Updatable" Path="toBeSent" />
|
|
1400
|
+
</Record>
|
|
1401
|
+
</Annotation>
|
|
1402
|
+
<Annotation Term="Common.DraftNode">
|
|
1403
|
+
<Record Type="Common.DraftNodeType">
|
|
1404
|
+
<PropertyValue Property="PreparationAction" String="poc.RequestsService.draftPrepare" />
|
|
1405
|
+
</Record>
|
|
1406
|
+
</Annotation>
|
|
1407
|
+
</Annotations>
|
|
1408
|
+
<Annotations Target="poc.RequestsService.ReportDetails/link">
|
|
1409
|
+
<Annotation Term="Common.Label" String="Link" />
|
|
1410
|
+
</Annotations>
|
|
1411
|
+
<Annotations Target="poc.RequestsService.ReportDetails/type">
|
|
1412
|
+
<Annotation Term="Common.Label" String="Type" />
|
|
1413
|
+
</Annotations>
|
|
1414
|
+
<Annotations Target="poc.RequestsService.ReportDetails/description">
|
|
1415
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
1416
|
+
</Annotations>
|
|
1417
|
+
<Annotations Target="poc.RequestsService.ReportDetails/toBeSent">
|
|
1418
|
+
<Annotation Term="Common.Label" String="To Be Sent" />
|
|
1419
|
+
</Annotations>
|
|
1420
|
+
<Annotations Target="poc.RequestsService.ReportDetails/providedAt">
|
|
1421
|
+
<Annotation Term="Common.Label" String="Provided At" />
|
|
1422
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1423
|
+
</Annotations>
|
|
1424
|
+
<Annotations Target="poc.RequestsService.ReportDetails/providedBy">
|
|
1425
|
+
<Annotation Term="Common.Label" String="Provided By" />
|
|
1426
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1427
|
+
</Annotations>
|
|
1428
|
+
<Annotations Target="poc.RequestsService.ReportDetails/downloadedAt">
|
|
1429
|
+
<Annotation Term="Common.Label" String="Downloaded At" />
|
|
1430
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1431
|
+
</Annotations>
|
|
1432
|
+
<Annotations Target="poc.RequestsService.ReportDetails/expirationDate">
|
|
1433
|
+
<Annotation Term="Common.Label" String="Expiration Date" />
|
|
1434
|
+
<Annotation Term="Core.Immutable" Bool="true" />
|
|
1435
|
+
</Annotations>
|
|
1436
|
+
<Annotations Target="poc.RequestsService.ReportDetails/downloadHistory">
|
|
1437
|
+
<Annotation Term="Common.Label" String="Download History" />
|
|
1438
|
+
</Annotations>
|
|
1439
|
+
<Annotations Target="poc.RequestsService.ReportDetails/type_code">
|
|
1440
|
+
<Annotation Term="Common.Label" String="Type" />
|
|
1441
|
+
<Annotation Term="Common.Text" Path="type/name">
|
|
1442
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
1443
|
+
</Annotation>
|
|
1444
|
+
<Annotation Term="Common.ValueListWithFixedValues" Bool="true" />
|
|
1445
|
+
<Annotation Term="Common.ValueList">
|
|
1446
|
+
<Record Type="Common.ValueListType">
|
|
1447
|
+
<PropertyValue Property="Label" String="Type" />
|
|
1448
|
+
<PropertyValue Property="CollectionPath" String="ReportDetailTypes" />
|
|
1449
|
+
<PropertyValue Property="Parameters">
|
|
1450
|
+
<Collection>
|
|
1451
|
+
<Record Type="Common.ValueListParameterInOut">
|
|
1452
|
+
<PropertyValue Property="LocalDataProperty" PropertyPath="type_code" />
|
|
1453
|
+
<PropertyValue Property="ValueListProperty" String="code" />
|
|
1454
|
+
</Record>
|
|
1455
|
+
<Record Type="Common.ValueListParameterDisplayOnly">
|
|
1456
|
+
<PropertyValue Property="ValueListProperty" String="name" />
|
|
1457
|
+
</Record>
|
|
1458
|
+
</Collection>
|
|
1459
|
+
</PropertyValue>
|
|
1460
|
+
</Record>
|
|
1461
|
+
</Annotation>
|
|
1462
|
+
<Annotation Term="Core.Computed" Bool="true" />
|
|
1463
|
+
</Annotations>
|
|
1464
|
+
<Annotations Target="poc.RequestsService.ReportDetails/downloadStatus_code">
|
|
1465
|
+
<Annotation Term="Common.Text" Path="downloadStatus/name">
|
|
1466
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
1467
|
+
</Annotation>
|
|
1468
|
+
<Annotation Term="Common.ValueListWithFixedValues" Bool="true" />
|
|
1469
|
+
<Annotation Term="Common.ValueList">
|
|
1470
|
+
<Record Type="Common.ValueListType">
|
|
1471
|
+
<PropertyValue Property="Label" String="Download Status" />
|
|
1472
|
+
<PropertyValue Property="CollectionPath" String="DownloadStatus" />
|
|
1473
|
+
<PropertyValue Property="Parameters">
|
|
1474
|
+
<Collection>
|
|
1475
|
+
<Record Type="Common.ValueListParameterInOut">
|
|
1476
|
+
<PropertyValue Property="LocalDataProperty" PropertyPath="downloadStatus_code" />
|
|
1477
|
+
<PropertyValue Property="ValueListProperty" String="code" />
|
|
1478
|
+
</Record>
|
|
1479
|
+
<Record Type="Common.ValueListParameterDisplayOnly">
|
|
1480
|
+
<PropertyValue Property="ValueListProperty" String="name" />
|
|
1481
|
+
</Record>
|
|
1482
|
+
</Collection>
|
|
1483
|
+
</PropertyValue>
|
|
1484
|
+
</Record>
|
|
1485
|
+
</Annotation>
|
|
1486
|
+
<Annotation Term="Core.Immutable" Bool="true" />
|
|
1487
|
+
</Annotations>
|
|
1488
|
+
<Annotations Target="poc.RequestsService.ReportDetails/IsActiveEntity">
|
|
1489
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1490
|
+
</Annotations>
|
|
1491
|
+
<Annotations Target="poc.RequestsService.ReportDetails/HasActiveEntity">
|
|
1492
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1493
|
+
</Annotations>
|
|
1494
|
+
<Annotations Target="poc.RequestsService.ReportDetails/HasDraftEntity">
|
|
1495
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1496
|
+
</Annotations>
|
|
1497
|
+
<Annotations Target="poc.RequestsService.ReportDetails/DraftAdministrativeData">
|
|
1498
|
+
<Annotation Term="UI.Hidden" Bool="true" />
|
|
1499
|
+
</Annotations>
|
|
1500
|
+
<Annotations Target="poc.RequestsService.Status">
|
|
1501
|
+
<Annotation Term="Common.Label" String="Status" />
|
|
1502
|
+
<Annotation Term="UI.Identification">
|
|
1503
|
+
<Collection>
|
|
1504
|
+
<Path>name</Path>
|
|
1505
|
+
</Collection>
|
|
1506
|
+
</Annotation>
|
|
1507
|
+
</Annotations>
|
|
1508
|
+
<Annotations Target="poc.RequestsService.Status/name">
|
|
1509
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
1510
|
+
</Annotations>
|
|
1511
|
+
<Annotations Target="poc.RequestsService.Status/descr">
|
|
1512
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
1513
|
+
</Annotations>
|
|
1514
|
+
<Annotations Target="poc.RequestsService.Status/code">
|
|
1515
|
+
<Annotation Term="Common.Label" String="Status" />
|
|
1516
|
+
<Annotation Term="Common.Text" Path="name">
|
|
1517
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
1518
|
+
</Annotation>
|
|
1519
|
+
</Annotations>
|
|
1520
|
+
<Annotations Target="poc.RequestsService.Status_texts/name">
|
|
1521
|
+
<Annotation Term="Common.Label" String="Name" />
|
|
1522
|
+
</Annotations>
|
|
1523
|
+
<Annotations Target="poc.RequestsService.Status_texts/descr">
|
|
1524
|
+
<Annotation Term="Common.Label" String="Description" />
|
|
1525
|
+
</Annotations>
|
|
1526
|
+
<Annotations Target="poc.RequestsService.Status_texts/code">
|
|
1527
|
+
<Annotation Term="Common.Label" String="Status" />
|
|
1528
|
+
<Annotation Term="Common.Text" Path="name">
|
|
1529
|
+
<Annotation Term="UI.TextArrangement" EnumMember="UI.TextArrangementType/TextOnly" />
|
|
1530
|
+
</Annotation>
|
|
1531
|
+
</Annotations>
|
|
1532
|
+
</Schema>
|
|
1533
|
+
</edmx:DataServices>
|
|
1534
|
+
</edmx:Edmx>
|