@openui5/sap.ui.core 1.115.1 → 1.116.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/.dtsgenrc +18 -0
- package/.eslintrc.json +11 -0
- package/.reuse/dep5 +0 -5
- package/THIRDPARTY.txt +1 -7
- package/package.json +1 -1
- package/src/jquery.sap.global.js +1 -1
- package/src/jquery.sap.properties.js +1 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +1 -1
- package/src/jquery.sap.sjax.js +2 -2
- package/src/jquery.sap.storage.js +3 -3
- package/src/sap/base/Event.js +106 -0
- package/src/sap/base/Eventing.js +320 -0
- package/src/sap/base/config.js +1 -1
- package/src/sap/base/i18n/Formatting.js +991 -0
- package/src/sap/base/i18n/LanguageTag.js +189 -0
- package/src/sap/base/i18n/Localization.js +711 -0
- package/src/sap/base/i18n/ResourceBundle.js +5 -20
- package/src/sap/base/i18n/date/CalendarType.js +54 -0
- package/src/sap/base/i18n/date/CalendarWeekNumbering.js +105 -0
- package/src/sap/base/i18n/date/TimezoneUtils.js +287 -0
- package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
- package/src/sap/base/util/restricted/_castArray.js +1 -1
- package/src/sap/base/util/restricted/_compact.js +1 -1
- package/src/sap/base/util/restricted/_curry.js +1 -1
- package/src/sap/base/util/restricted/_debounce.js +1 -1
- package/src/sap/base/util/restricted/_difference.js +1 -1
- package/src/sap/base/util/restricted/_differenceBy.js +1 -1
- package/src/sap/base/util/restricted/_differenceWith.js +1 -1
- package/src/sap/base/util/restricted/_flatMap.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
- package/src/sap/base/util/restricted/_flatten.js +1 -1
- package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
- package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
- package/src/sap/base/util/restricted/_intersection.js +1 -1
- package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
- package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
- package/src/sap/base/util/restricted/_isEqual.js +1 -1
- package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
- package/src/sap/base/util/restricted/_isNil.js +1 -1
- package/src/sap/base/util/restricted/_max.js +1 -1
- package/src/sap/base/util/restricted/_merge.js +1 -1
- package/src/sap/base/util/restricted/_mergeWith.js +1 -1
- package/src/sap/base/util/restricted/_min.js +1 -1
- package/src/sap/base/util/restricted/_omit.js +1 -1
- package/src/sap/base/util/restricted/_pick.js +1 -1
- package/src/sap/base/util/restricted/_pickBy.js +1 -1
- package/src/sap/base/util/restricted/_throttle.js +1 -1
- package/src/sap/base/util/restricted/_toArray.js +1 -1
- package/src/sap/base/util/restricted/_union.js +1 -1
- package/src/sap/base/util/restricted/_unionBy.js +1 -1
- package/src/sap/base/util/restricted/_unionWith.js +1 -1
- package/src/sap/base/util/restricted/_uniq.js +1 -1
- package/src/sap/base/util/restricted/_uniqBy.js +1 -1
- package/src/sap/base/util/restricted/_uniqWith.js +1 -1
- package/src/sap/base/util/restricted/_without.js +1 -1
- package/src/sap/base/util/restricted/_xor.js +1 -1
- package/src/sap/base/util/restricted/_xorBy.js +1 -1
- package/src/sap/base/util/restricted/_xorWith.js +1 -1
- package/src/sap/base/util/restricted/_zipObject.js +1 -1
- package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
- package/src/sap/ui/Device.js +3 -3
- package/src/sap/ui/Global.js +4 -4
- package/src/sap/ui/base/Event.js +1 -1
- package/src/sap/ui/base/EventProvider.js +4 -12
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +8 -12
- package/src/sap/ui/base/ManagedObjectMetadata.js +30 -7
- package/src/sap/ui/base/Metadata.js +1 -1
- package/src/sap/ui/base/Object.js +1 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/base/SyncPromise.js +10 -5
- package/src/sap/ui/core/.library +2 -2
- package/src/sap/ui/core/AccessKeysEnablement.js +10 -5
- package/src/sap/ui/core/AnimationMode.js +49 -0
- package/src/sap/ui/core/BusyIndicator.js +33 -42
- package/src/sap/ui/core/CalendarType.js +11 -37
- package/src/sap/ui/core/Component.js +4 -5
- package/src/sap/ui/core/ComponentContainer.js +1 -1
- package/src/sap/ui/core/ComponentMetadata.js +2 -2
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +409 -1270
- package/src/sap/ui/core/Control.js +4 -12
- package/src/sap/ui/core/ControlBehavior.js +157 -0
- package/src/sap/ui/core/Core.js +124 -132
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/Element.js +14 -3
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +1 -1
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/Fragment.js +1 -1
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- package/src/sap/ui/core/IndicationColorSupport.js +1 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +5 -7
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +12 -12
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +1 -1
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/Lib.js +109 -22
- package/src/sap/ui/core/ListItem.js +1 -1
- package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
- package/src/sap/ui/core/Locale.js +151 -430
- package/src/sap/ui/core/LocaleData.js +39 -11
- package/src/sap/ui/core/Manifest.js +1 -1
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/RenderManager.js +1 -1
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/ResizeHandler.js +1 -1
- package/src/sap/ui/core/ScrollBar.js +1 -1
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/StaticArea.js +31 -17
- package/src/sap/ui/core/Theming.js +451 -0
- package/src/sap/ui/core/Title.js +1 -1
- package/src/sap/ui/core/TooltipBase.js +1 -1
- package/src/sap/ui/core/UIArea.js +1 -1
- package/src/sap/ui/core/UIComponent.js +1 -1
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- package/src/sap/ui/core/ValueStateSupport.js +1 -1
- package/src/sap/ui/core/VariantLayoutData.js +1 -1
- package/src/sap/ui/core/XMLComposite.js +1 -1
- package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +1 -0
- package/src/sap/ui/core/_IconRegistry.js +7 -1
- package/src/sap/ui/core/date/CalendarWeekNumbering.js +12 -83
- package/src/sap/ui/core/date/UI5Date.js +2 -2
- package/src/sap/ui/core/delegate/ItemNavigation.js +8 -10
- package/src/sap/ui/core/delegate/ScrollEnablement.js +5 -5
- package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
- package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
- package/src/sap/ui/core/dnd/DragInfo.js +1 -1
- package/src/sap/ui/core/dnd/DropInfo.js +1 -1
- package/src/sap/ui/core/format/DateFormat.js +20 -15
- package/src/sap/ui/core/format/TimezoneUtil.js +15 -273
- package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
- package/src/sap/ui/core/library.js +3 -3
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +1 -1
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageParser.js +1 -1
- package/src/sap/ui/core/message/MessageProcessor.js +1 -1
- package/src/sap/ui/core/messagebundle_cs.properties +1 -1
- package/src/sap/ui/core/messagebundle_cy.properties +1 -1
- package/src/sap/ui/core/messagebundle_da.properties +1 -1
- package/src/sap/ui/core/messagebundle_de.properties +1 -1
- package/src/sap/ui/core/messagebundle_el.properties +1 -1
- package/src/sap/ui/core/messagebundle_en.properties +1 -1
- package/src/sap/ui/core/messagebundle_en_GB.properties +1 -1
- package/src/sap/ui/core/messagebundle_es.properties +1 -1
- package/src/sap/ui/core/messagebundle_es_MX.properties +1 -1
- package/src/sap/ui/core/messagebundle_et.properties +1 -1
- package/src/sap/ui/core/messagebundle_id.properties +1 -1
- package/src/sap/ui/core/messagebundle_it.properties +49 -49
- package/src/sap/ui/core/messagebundle_iw.properties +1 -1
- package/src/sap/ui/core/messagebundle_kk.properties +1 -1
- package/src/sap/ui/core/messagebundle_ko.properties +1 -1
- package/src/sap/ui/core/messagebundle_lt.properties +1 -1
- package/src/sap/ui/core/messagebundle_lv.properties +1 -1
- package/src/sap/ui/core/messagebundle_ms.properties +8 -8
- package/src/sap/ui/core/messagebundle_nl.properties +1 -1
- package/src/sap/ui/core/messagebundle_no.properties +1 -1
- package/src/sap/ui/core/messagebundle_pl.properties +1 -1
- package/src/sap/ui/core/messagebundle_pt.properties +1 -1
- package/src/sap/ui/core/messagebundle_pt_PT.properties +1 -1
- package/src/sap/ui/core/messagebundle_ro.properties +1 -1
- package/src/sap/ui/core/messagebundle_sh.properties +1 -1
- package/src/sap/ui/core/messagebundle_sv.properties +1 -1
- package/src/sap/ui/core/messagebundle_th.properties +1 -1
- package/src/sap/ui/core/messagebundle_uk.properties +21 -21
- package/src/sap/ui/core/messagebundle_vi.properties +1 -1
- package/src/sap/ui/core/mvc/HTMLView.js +1 -1
- package/src/sap/ui/core/mvc/JSONView.js +1 -1
- package/src/sap/ui/core/mvc/JSView.js +1 -1
- package/src/sap/ui/core/mvc/TemplateView.js +1 -1
- package/src/sap/ui/core/mvc/View.js +1 -1
- package/src/sap/ui/core/mvc/XMLView.js +1 -1
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/plugin/LessSupport.js +14 -16
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
- package/src/sap/ui/core/postmessage/Bus.js +1 -1
- package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
- package/src/sap/ui/core/routing/HashChanger.js +1 -0
- package/src/sap/ui/core/routing/Route.js +1 -0
- package/src/sap/ui/core/routing/Router.js +3 -1
- package/src/sap/ui/core/rules/Config.support.js +2 -2
- package/src/sap/ui/core/rules/Model.support.js +3 -1
- package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
- package/src/sap/ui/core/search/SearchProvider.js +1 -1
- package/src/sap/ui/core/service/Service.js +1 -1
- package/src/sap/ui/core/service/ServiceFactory.js +1 -1
- package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
- package/src/sap/ui/core/support/Plugin.js +1 -1
- package/src/sap/ui/core/support/Support.js +1 -1
- package/src/sap/ui/core/support/controls/TimelineOverview.js +1 -1
- package/src/sap/ui/core/support/plugins/ControlTree.js +2 -2
- package/src/sap/ui/core/support/plugins/Interaction.js +1 -1
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +1 -1
- package/src/sap/ui/core/support/plugins/Selector.js +1 -1
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +1 -1
- package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
- package/src/sap/ui/core/themes/base/LocalBusyIndicator.less +4 -4
- package/src/sap/ui/core/themes/base/base.less +41 -20
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/theming/Parameters.js +6 -5
- package/src/sap/ui/core/theming/ThemeManager.js +310 -447
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +5 -10
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +1 -1
- package/src/sap/ui/core/util/ExportCell.js +1 -1
- package/src/sap/ui/core/util/ExportColumn.js +1 -1
- package/src/sap/ui/core/util/ExportRow.js +1 -1
- package/src/sap/ui/core/util/ExportType.js +1 -1
- package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
- package/src/sap/ui/core/util/File.js +1 -1
- package/src/sap/ui/core/util/LibraryInfo.js +1 -1
- package/src/sap/ui/core/util/MockServer.js +1 -1
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/reflection/BaseTreeModifier.js +3 -1
- package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
- package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
- package/src/sap/ui/core/ws/ReadyState.js +1 -1
- package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
- package/src/sap/ui/core/ws/WebSocket.js +1 -1
- package/src/sap/ui/debug/ControlTree.js +1 -1
- package/src/sap/ui/debug/DebugEnv.js +1 -1
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/events/PseudoEvents.js +17 -9
- package/src/sap/ui/model/Binding.js +19 -15
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/CompositeBinding.js +57 -19
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +1 -1
- package/src/sap/ui/model/ListBinding.js +42 -1
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +5 -4
- package/src/sap/ui/model/PropertyBinding.js +10 -0
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +4 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/base/ManagedObjectModel.js +1 -1
- package/src/sap/ui/model/json/JSONModel.js +1 -1
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
- package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
- package/src/sap/ui/model/odata/ODataModel.js +1 -1
- package/src/sap/ui/model/odata/type/Boolean.js +1 -1
- package/src/sap/ui/model/odata/type/Byte.js +1 -1
- package/src/sap/ui/model/odata/type/Currency.js +1 -1
- package/src/sap/ui/model/odata/type/Date.js +1 -1
- package/src/sap/ui/model/odata/type/DateTime.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeBase.js +8 -1
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
- package/src/sap/ui/model/odata/type/Decimal.js +1 -1
- package/src/sap/ui/model/odata/type/Double.js +1 -1
- package/src/sap/ui/model/odata/type/Guid.js +1 -1
- package/src/sap/ui/model/odata/type/Int.js +1 -1
- package/src/sap/ui/model/odata/type/Int16.js +1 -1
- package/src/sap/ui/model/odata/type/Int32.js +1 -1
- package/src/sap/ui/model/odata/type/Int64.js +1 -1
- package/src/sap/ui/model/odata/type/ODataType.js +3 -3
- package/src/sap/ui/model/odata/type/Raw.js +1 -1
- package/src/sap/ui/model/odata/type/SByte.js +1 -1
- package/src/sap/ui/model/odata/type/Single.js +1 -1
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +1 -1
- package/src/sap/ui/model/odata/type/Time.js +1 -1
- package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/v2/Context.js +3 -2
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +14 -3
- package/src/sap/ui/model/odata/v2/ODataModel.js +45 -31
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/Context.js +7 -3
- package/src/sap/ui/model/odata/v4/ODataBinding.js +68 -39
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +12 -8
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +30 -8
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +11 -9
- package/src/sap/ui/model/odata/v4/ODataModel.js +10 -14
- package/src/sap/ui/model/odata/v4/ODataParentBinding.js +64 -31
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +21 -16
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +2 -0
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +37 -14
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +11 -1
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +7 -4
- package/src/sap/ui/model/odata/v4/lib/_V2MetadataConverter.js +4 -4
- package/src/sap/ui/model/odata/v4/lib/_V2Requestor.js +1 -1
- package/src/sap/ui/model/resource/ResourceModel.js +1 -1
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +1 -1
- package/src/sap/ui/model/type/Date.js +1 -1
- package/src/sap/ui/model/type/DateInterval.js +1 -1
- package/src/sap/ui/model/type/DateTime.js +1 -1
- package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
- package/src/sap/ui/model/type/FileSize.js +1 -1
- package/src/sap/ui/model/type/Float.js +1 -1
- package/src/sap/ui/model/type/Integer.js +1 -1
- package/src/sap/ui/model/type/String.js +1 -1
- package/src/sap/ui/model/type/Time.js +1 -1
- package/src/sap/ui/model/type/TimeInterval.js +1 -1
- package/src/sap/ui/model/type/Unit.js +1 -1
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/test/Opa5.js +1 -1
- package/src/sap/ui/test/autowaiter/_autoWaiter.js +1 -1
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/gherkin/simpleGherkinParser.js +10 -5
- package/src/sap/ui/test/matchers/LabelFor.js +1 -0
- package/src/sap/ui/thirdparty/caja-html-sanitizer.js +111 -96
- package/src/sap/ui/util/ActivityDetection.js +7 -1
- package/src/sap/ui/util/Mobile.js +11 -8
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader-autoconfig.js +5 -2
- package/src/ui5loader.js +169 -185
- package/test/sap/ui/core/FormatHelper.js +3 -2
- package/test/sap/ui/core/demokit/docuindex.json +6 -0
- package/test/sap/ui/core/demokit/sample/OpaBusyIndicator/OpaBusyIndicator.js +1 -1
- package/test/sap/ui/core/demokit/sample/OpaMatchers/OpaMatchers.js +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/MIT.ODataTypes.html +9 -14
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/Opa.qunit.js +7 -0
- package/test/sap/ui/core/demokit/sample/common/pages/Any.js +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/tests/filter.js +2 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/Component.js +27 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/ListReport.controller.js +43 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/ListReport.view.xml +47 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/Main.controller.js +27 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/Main.view.xml +7 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/NotFound.view.xml +8 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/ObjectPage.controller.js +123 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/ObjectPage.view.xml +92 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/Opa.qunit.html +27 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/Opa.qunit.js +69 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/README.html +55 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/SandboxModel.js +56 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/POST-SalesOrderList.json +66 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/SalesOrderList('0500000000')-SO_2_SOITEM.json +57 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/SalesOrderList('0500000000').json +20 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/SalesOrderList('0500000001').json +9 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/SalesOrderList('0500000007')-SO_2_BP.json +12 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/SalesOrderList.json +62 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/VH_CurrencyCode.json +85 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/VH_CurrencyCode.xml +185 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/VH_ProductID.json +93 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/VH_ProductID.xml +262 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/metadata.xml +1779 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/manifest.json +134 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/pages/Main.js +119 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/pages/Main.js +0 -41
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrderTP100_V2/manifest.json +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrderTP100_V4/manifest.json +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.controller.js +5 -17
- package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.view.xml +3 -3
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/webapp/test/integration/arrangements/Startup.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/webapp/test/integration/arrangements/Startup.js +1 -1
- package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +25 -7
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +86 -2
- package/test/sap/ui/core/qunit/DataState.qunit.js +2 -7
- package/test/sap/ui/core/qunit/HTML.qunit.js +31 -31
- package/test/sap/ui/core/qunit/Lib.qunit.js +55 -2
- package/test/sap/ui/core/qunit/LocalBusyIndicator.qunit.js +22 -15
- package/test/sap/ui/core/qunit/ManagedObject.qunit.js +5 -3
- package/test/sap/ui/core/qunit/Object.qunit.js +4 -1
- package/test/sap/ui/core/qunit/ThemeManager.qunit.js +2 -2
- package/test/sap/ui/core/qunit/ThemeParameters.qunit.js +9 -3
- package/test/sap/ui/core/qunit/Theming.beforeBootstrap.qunit.js +13 -0
- package/test/sap/ui/core/qunit/Theming.qunit.js +229 -0
- package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +2 -7
- package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +2 -7
- package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.html +24 -0
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +275 -0
- package/test/sap/ui/core/qunit/base/i18n/Localization.qunit.js +259 -0
- package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +5 -6
- package/test/sap/ui/core/qunit/base/security/sanitizeHTML.qunit.js +17 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +1 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithCustomBootTask.beforeBootstrap.qunit.js +13 -12
- package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +388 -254
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.qunit.js +19 -30
- package/test/sap/ui/core/qunit/component/Models.qunit.js +7 -28
- package/test/sap/ui/core/qunit/component/Models_unavoidablySync.qunit.js +8 -26
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/manifestcomp/Component-preload.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/manifestcomp/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/mycomp/Component-preload.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/mycomp/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/mysubcomp/Component-preload.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/mysubcomp/Component.js +2 -3
- package/test/sap/ui/core/qunit/component/testdata/customizing/customer/ext/Component.js +0 -4
- package/test/sap/ui/core/qunit/component/testdata/customizing/customer/ext/sync/Component.js +2 -6
- package/test/sap/ui/core/qunit/component/testdata/customizing/customersub/Component.js +0 -4
- package/test/sap/ui/core/qunit/component/testdata/inherit/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/inherit/parent/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/parentA/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/parentB/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/parentA/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/parentB/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/other/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/terminologies/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component1/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component2/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component3/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component5/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/terminologies/reuse/Component.js +2 -3
- package/test/sap/ui/core/qunit/component/testdata/v1/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/v1empty/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/v1inline/Component.js +2 -5
- package/test/sap/ui/core/qunit/component/testdata/v1missing/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/v2/Component.js +2 -5
- package/test/sap/ui/core/qunit/component/testdata/v2asyncRootView/Component.js +2 -5
- package/test/sap/ui/core/qunit/component/testdata/v2empty/Component.js +2 -9
- package/test/sap/ui/core/qunit/component/testdata/v2inline/Component.js +2 -5
- package/test/sap/ui/core/qunit/component/testdata/v2missing/Component.js +2 -9
- package/test/sap/ui/core/qunit/component/testdata/v2version/Component.js +2 -2
- package/test/sap/ui/core/qunit/dnd/DragDropInfo.qunit.js +1 -2
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +2 -0
- package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +2 -0
- package/test/sap/ui/core/qunit/gherkin/dataTableUtils.qunit.js +2 -2
- package/test/sap/ui/core/qunit/i18n/Locale.qunit.js +0 -52
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +1 -1
- package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +14 -24
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +18 -0
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
- package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/json/JSONPropertyBinding.qunit.js +7 -12
- package/test/sap/ui/core/qunit/json/JSONTwoWay.qunit.js +3 -8
- package/test/sap/ui/core/qunit/loader/fixture/amd-with-export-true/module1.js +2 -2
- package/test/sap/ui/core/qunit/messages/MessageMixin.qunit.js +2 -7
- package/test/sap/ui/core/qunit/messages/messagesUsage.qunit.js +1 -1
- package/test/sap/ui/core/qunit/model/Binding.qunit.js +36 -11
- package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/Context.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +63 -6
- package/test/sap/ui/core/qunit/model/Model.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +40 -0
- package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +2 -7
- package/test/sap/ui/core/qunit/mvc/XMLView.qunit.js +9 -8
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -4
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/AnnotationParserNoFakeService.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/ODataMessageParser.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/ODataMessageParserNoFakeService.qunit.js +2 -8
- package/test/sap/ui/core/qunit/odata/ODataMetadataNoFakeService.qunit.js +1 -6
- package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +24 -0
- package/test/sap/ui/core/qunit/odata/v2/Context.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataContextBindingNoFakeService.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +31 -17
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +28 -19
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +70 -15
- package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +4 -9
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/v2/_CreatedContextsCache.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/v4/AnnotationHelper.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +45 -17
- package/test/sap/ui/core/qunit/odata/v4/ODataBinding.qunit.js +152 -151
- package/test/sap/ui/core/qunit/odata/v4/ODataContextBinding.qunit.js +55 -27
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +119 -4
- package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +3 -3
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +754 -195
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +42 -53
- package/test/sap/ui/core/qunit/odata/v4/ODataParentBinding.qunit.js +283 -170
- package/test/sap/ui/core/qunit/odata/v4/ODataPropertyBinding.qunit.js +103 -78
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +3 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +87 -58
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +3 -1
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +124 -22
- package/test/sap/ui/core/qunit/odata/v4/testsuite.odatav4.qunit.js +4 -0
- package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +1 -1
- package/test/sap/ui/core/qunit/performance/trace/FESR.qunit.js +5 -0
- package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +17 -37
- package/test/sap/ui/core/qunit/routing/HashChanger.qunit.js +1 -6
- package/test/sap/ui/core/qunit/routing/RouterHashChanger.qunit.js +1 -10
- package/test/sap/ui/core/qunit/routing/async/Router.qunit.js +1 -22
- package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +1 -4
- package/test/sap/ui/core/qunit/rule/model/modelSupport.qunit.js +34 -1
- package/test/sap/ui/core/qunit/testdata/fastnavigation/view/FastNavigation.view.xml +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/resourcebundle/lib1/i18n.properties +1 -0
- package/test/sap/ui/core/qunit/testdata/libraries/resourcebundle/lib1/library.js +10 -0
- package/test/sap/ui/core/qunit/testdata/libraries/resourcebundle/lib1/manifest.json +10 -0
- package/test/sap/ui/core/qunit/testdata/libraries/resourcebundle/lib2/library.js +10 -0
- package/test/sap/ui/core/qunit/testdata/libraries/resourcebundle/lib2/messagebundle.properties +1 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.databinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.theming.qunit.js +29 -0
- package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +397 -607
- package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +16 -2
- package/test/sap/ui/core/qunit/types/Types.qunit.js +2 -37
- package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/SyncPromise.qunit.js +4 -1
- package/test/sap/ui/core/qunit/util/jQuery.sap.measure.qunit.js +16 -11
- package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +1 -3
- package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +4 -14
- package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +7 -11
- package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +1 -1
- package/test/sap/ui/core/qunit/xml/XMLTwoWay.qunit.js +3 -7
- package/test/sap/ui/core/relnotes/changes-1.115.json +1 -37
- package/test/sap/ui/core/relnotes/changes-1.116.json +82 -0
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/firstItem-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/initial.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/lastItem-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/leftDownBtn-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/myButtonSample-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/rightDownBtn-contextMenu.ref.lnk +1 -1
- package/test/testsuite/js/samples.js +2 -0
- package/ui5.yaml +1 -1
package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/SalesOrderList('0500000001').json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@odata.context" : "$metadata#SalesOrderList(LifecycleStatusDesc,Messages,Note,SalesOrderID)/$entity",
|
|
3
|
+
"@odata.metadataEtag" : "W/\"20230620150020\"",
|
|
4
|
+
"@odata.etag" : "W/\"20230621220000.0000000 \"",
|
|
5
|
+
"SalesOrderID" : "0500000001",
|
|
6
|
+
"Note" : "EPM DG: SO ID 0500000001 Deliver as fast as possible",
|
|
7
|
+
"LifecycleStatusDesc" : "New",
|
|
8
|
+
"Messages" : []
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@odata.context" : "$metadata#SalesOrderList(Messages,SalesOrderID,SO_2_BP(BusinessPartnerID,CompanyName))/$entity",
|
|
3
|
+
"@odata.metadataEtag" : "W/\"20230620150020\"",
|
|
4
|
+
"@odata.etag" : "W/\"20230622064216.2786150 \"",
|
|
5
|
+
"Messages" : [],
|
|
6
|
+
"SalesOrderID" : "0500000007",
|
|
7
|
+
"SO_2_BP" : {
|
|
8
|
+
"@odata.etag" : "W/\"20230621133751.8968250 \"",
|
|
9
|
+
"BusinessPartnerID" : "0100000000",
|
|
10
|
+
"CompanyName" : "SAP"
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@odata.context" : "$metadata#SalesOrderList(CurrencyCode,GrossAmount,SalesOrderID,SO_2_BP(BusinessPartnerID,CompanyName))",
|
|
3
|
+
"@odata.metadataEtag" : "W/\"20230620150020\"",
|
|
4
|
+
"@odata.count" : "5",
|
|
5
|
+
"value" : [
|
|
6
|
+
{
|
|
7
|
+
"@odata.etag" : "W/\"20230621220000.0000000 \"",
|
|
8
|
+
"SalesOrderID" : "0500000000",
|
|
9
|
+
"CurrencyCode" : "EUR",
|
|
10
|
+
"GrossAmount" : "25867.03",
|
|
11
|
+
"SO_2_BP" : {
|
|
12
|
+
"@odata.etag" : "W/\"20230310101009.0000000 \"",
|
|
13
|
+
"BusinessPartnerID" : "0100000001",
|
|
14
|
+
"CompanyName" : "Becker Berlin"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"@odata.etag" : "W/\"20230621220000.0000000 \"",
|
|
19
|
+
"SalesOrderID" : "0500000001",
|
|
20
|
+
"CurrencyCode" : "EUR",
|
|
21
|
+
"GrossAmount" : "14602.49",
|
|
22
|
+
"SO_2_BP" : {
|
|
23
|
+
"@odata.etag" : "W/\"20230310101009.0000000 \"",
|
|
24
|
+
"BusinessPartnerID" : "0100000006",
|
|
25
|
+
"CompanyName" : "Asia High tech"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"@odata.etag" : "W/\"20230621220000.0000000 \"",
|
|
30
|
+
"SalesOrderID" : "0500000002",
|
|
31
|
+
"CurrencyCode" : "EUR",
|
|
32
|
+
"GrossAmount" : "5631.08",
|
|
33
|
+
"SO_2_BP" : {
|
|
34
|
+
"@odata.etag" : "W/\"20230310101009.0000000 \"",
|
|
35
|
+
"BusinessPartnerID" : "0100000011",
|
|
36
|
+
"CompanyName" : "Alpine Systems"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"@odata.etag" : "W/\"20230621220000.0000000 \"",
|
|
41
|
+
"SalesOrderID" : "0500000003",
|
|
42
|
+
"CurrencyCode" : "EUR",
|
|
43
|
+
"GrossAmount" : "1704.04",
|
|
44
|
+
"SO_2_BP" : {
|
|
45
|
+
"@odata.etag" : "W/\"20230310101009.0000000 \"",
|
|
46
|
+
"BusinessPartnerID" : "0100000013",
|
|
47
|
+
"CompanyName" : "HEPA Tec"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"@odata.etag" : "W/\"20230621220000.0000000 \"",
|
|
52
|
+
"SalesOrderID" : "0500000004",
|
|
53
|
+
"CurrencyCode" : "EUR",
|
|
54
|
+
"GrossAmount" : "761.24",
|
|
55
|
+
"SO_2_BP" : {
|
|
56
|
+
"@odata.etag" : "W/\"20230310101009.0000000 \"",
|
|
57
|
+
"BusinessPartnerID" : "0100000013",
|
|
58
|
+
"CompanyName" : "HEPA Tec"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@odata.metadataEtag" : "W/\"20200715082514\"",
|
|
3
|
+
"value" : [
|
|
4
|
+
{
|
|
5
|
+
"WAERS" : "ADP",
|
|
6
|
+
"LTEXT" : "Andorran Peseta --> (Old --> EUR)"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"WAERS" : "AED",
|
|
10
|
+
"LTEXT" : "United Arab Emirates Dirham"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"WAERS" : "AFA",
|
|
14
|
+
"LTEXT" : "Afghani (Old)"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"WAERS" : "AFN",
|
|
18
|
+
"LTEXT" : "Afghani"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"WAERS" : "ALL",
|
|
22
|
+
"LTEXT" : "Albanian Lek"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"WAERS" : "AMD",
|
|
26
|
+
"LTEXT" : "Armenian Dram"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"WAERS" : "ANG",
|
|
30
|
+
"LTEXT" : "West Indian Guilder"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"WAERS" : "AOA",
|
|
34
|
+
"LTEXT" : "Angolanische Kwanza"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"WAERS" : "AOK",
|
|
38
|
+
"LTEXT" : "Angolan Kwanza"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"WAERS" : "AON",
|
|
42
|
+
"LTEXT" : "Angolan New Kwanza (Old)"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"WAERS" : "AOR",
|
|
46
|
+
"LTEXT" : "Angolan Kwanza Reajustado (Old)"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"WAERS" : "ARA",
|
|
50
|
+
"LTEXT" : "Argentinian Austral"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"WAERS" : "ARS",
|
|
54
|
+
"LTEXT" : "Argentine Peso"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"WAERS" : "ATS",
|
|
58
|
+
"LTEXT" : "Austrian Schilling (Old --> EUR)"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"WAERS" : "AUD",
|
|
62
|
+
"LTEXT" : "Australian Dollar"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"WAERS" : "AWG",
|
|
66
|
+
"LTEXT" : "Aruban Florin"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"WAERS" : "AZM",
|
|
70
|
+
"LTEXT" : "Azerbaijani Manat (Old)"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"WAERS" : "AZN",
|
|
74
|
+
"LTEXT" : "Azerbaijani Manat"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"WAERS" : "BAD",
|
|
78
|
+
"LTEXT" : "Bosnia-Herzogovinian Dinar"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"WAERS" : "BAM",
|
|
82
|
+
"LTEXT" : "Bosnia and Herzegovina Convertible Mark"
|
|
83
|
+
}
|
|
84
|
+
]
|
|
85
|
+
}
|
|
@@ -0,0 +1,185 @@
|
|
|
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
|
+
xmlns="http://docs.oasis-open.org/odata/ns/edm">
|
|
4
|
+
<edmx:Reference
|
|
5
|
+
Uri="/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMON',Version='0001',SAP__Origin='LOCAL')/$value">
|
|
6
|
+
<edmx:Include Namespace="com.sap.vocabularies.Common.v1" Alias="SAP__common" />
|
|
7
|
+
</edmx:Reference>
|
|
8
|
+
<edmx:Reference
|
|
9
|
+
Uri="/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_MEASURES',Version='0001',SAP__Origin='LOCAL')/$value">
|
|
10
|
+
<edmx:Include Namespace="Org.OData.Measures.V1" Alias="SAP__measures" />
|
|
11
|
+
</edmx:Reference>
|
|
12
|
+
<edmx:Reference
|
|
13
|
+
Uri="/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_CORE',Version='0001',SAP__Origin='LOCAL')/$value">
|
|
14
|
+
<edmx:Include Namespace="Org.OData.Core.V1" Alias="SAP__core" />
|
|
15
|
+
</edmx:Reference>
|
|
16
|
+
<edmx:Reference
|
|
17
|
+
Uri="/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_CAPABILITIES',Version='0001',SAP__Origin='LOCAL')/$value">
|
|
18
|
+
<edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="SAP__capabilities" />
|
|
19
|
+
</edmx:Reference>
|
|
20
|
+
<edmx:Reference
|
|
21
|
+
Uri="/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_AGGREGATION',Version='0001',SAP__Origin='LOCAL')/$value">
|
|
22
|
+
<edmx:Include Namespace="Org.OData.Aggregation.V1" Alias="SAP__aggregation" />
|
|
23
|
+
</edmx:Reference>
|
|
24
|
+
<edmx:Reference
|
|
25
|
+
Uri="/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_VALIDATION',Version='0001',SAP__Origin='LOCAL')/$value">
|
|
26
|
+
<edmx:Include Namespace="Org.OData.Validation.V1" Alias="SAP__validation" />
|
|
27
|
+
</edmx:Reference>
|
|
28
|
+
<edmx:Reference
|
|
29
|
+
Uri="/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_CODELIST',Version='0001',SAP__Origin='LOCAL')/$value">
|
|
30
|
+
<edmx:Include Namespace="com.sap.vocabularies.CodeList.v1" Alias="SAP__CodeList" />
|
|
31
|
+
</edmx:Reference>
|
|
32
|
+
<edmx:Reference
|
|
33
|
+
Uri="/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_UI',Version='0001',SAP__Origin='LOCAL')/$value">
|
|
34
|
+
<edmx:Include Namespace="com.sap.vocabularies.UI.v1" Alias="SAP__UI" />
|
|
35
|
+
</edmx:Reference>
|
|
36
|
+
<edmx:Reference Uri="../../../../default/sap/zui5_epm_sample/0002/$metadata">
|
|
37
|
+
<edmx:Include Namespace="com.sap.gateway.default.zui5_epm_sample.v0002"
|
|
38
|
+
Alias="SAP__ParentService" />
|
|
39
|
+
</edmx:Reference>
|
|
40
|
+
<edmx:DataServices>
|
|
41
|
+
<Schema Namespace="com.sap.gateway.f4.h_tcurc-sh.v0001" Alias="SAP__self">
|
|
42
|
+
<EntityType Name="H_TCURC_SH">
|
|
43
|
+
<Key>
|
|
44
|
+
<PropertyRef Name="WAERS" />
|
|
45
|
+
</Key>
|
|
46
|
+
<Property Name="WAERS" Type="Edm.String" Nullable="false" MaxLength="5" />
|
|
47
|
+
<Property Name="LTEXT" Type="Edm.String" Nullable="false" MaxLength="40" />
|
|
48
|
+
<Property Name="CURRDEC" Type="Edm.Byte" Nullable="false" />
|
|
49
|
+
</EntityType>
|
|
50
|
+
<EntityType Name="TCURC_CT">
|
|
51
|
+
<Key>
|
|
52
|
+
<PropertyRef Name="WAERS" />
|
|
53
|
+
</Key>
|
|
54
|
+
<Property Name="WAERS" Type="Edm.String" Nullable="false" MaxLength="5" />
|
|
55
|
+
<Property Name="LTEXT" Type="Edm.String" Nullable="false" MaxLength="40" />
|
|
56
|
+
<Property Name="CURRDEC" Type="Edm.Byte" Nullable="false" />
|
|
57
|
+
</EntityType>
|
|
58
|
+
<EntityContainer Name="Container">
|
|
59
|
+
<EntitySet Name="H_TCURC_SH_Set"
|
|
60
|
+
EntityType="com.sap.gateway.f4.h_tcurc-sh.v0001.H_TCURC_SH" />
|
|
61
|
+
<EntitySet Name="TCURC_CT_Set"
|
|
62
|
+
EntityType="com.sap.gateway.f4.h_tcurc-sh.v0001.TCURC_CT" />
|
|
63
|
+
</EntityContainer>
|
|
64
|
+
<Annotations Target="SAP__self.Container/H_TCURC_SH_Set">
|
|
65
|
+
<Annotation Term="SAP__capabilities.SearchRestrictions">
|
|
66
|
+
<Record>
|
|
67
|
+
<PropertyValue Property="Searchable" Bool="false" />
|
|
68
|
+
</Record>
|
|
69
|
+
</Annotation>
|
|
70
|
+
<Annotation Term="SAP__capabilities.FilterRestrictions">
|
|
71
|
+
<Record>
|
|
72
|
+
<PropertyValue Property="FilterExpressionRestrictions">
|
|
73
|
+
<Collection>
|
|
74
|
+
<Record>
|
|
75
|
+
<PropertyValue Property="Property" PropertyPath="WAERS" />
|
|
76
|
+
<PropertyValue Property="AllowedExpressions"
|
|
77
|
+
String="MultiValue" />
|
|
78
|
+
</Record>
|
|
79
|
+
</Collection>
|
|
80
|
+
</PropertyValue>
|
|
81
|
+
</Record>
|
|
82
|
+
</Annotation>
|
|
83
|
+
<Annotation Term="SAP__capabilities.UpdateRestrictions">
|
|
84
|
+
<Record>
|
|
85
|
+
<PropertyValue Property="QueryOptions">
|
|
86
|
+
<Record>
|
|
87
|
+
<PropertyValue Property="SelectSupported" Bool="true" />
|
|
88
|
+
</Record>
|
|
89
|
+
</PropertyValue>
|
|
90
|
+
</Record>
|
|
91
|
+
</Annotation>
|
|
92
|
+
</Annotations>
|
|
93
|
+
<Annotations Target="SAP__ParentService.SalesOrder/CurrencyCode">
|
|
94
|
+
<Annotation Term="SAP__common.ValueListMapping">
|
|
95
|
+
<Record>
|
|
96
|
+
<PropertyValue Property="CollectionPath" String="H_TCURC_SH_Set" />
|
|
97
|
+
<PropertyValue Property="Parameters">
|
|
98
|
+
<Collection>
|
|
99
|
+
<Record Type="SAP__common.ValueListParameterInOut">
|
|
100
|
+
<PropertyValue Property="LocalDataProperty"
|
|
101
|
+
PropertyPath="CurrencyCode" />
|
|
102
|
+
<PropertyValue Property="ValueListProperty" String="WAERS" />
|
|
103
|
+
</Record>
|
|
104
|
+
<Record Type="SAP__common.ValueListParameterDisplayOnly">
|
|
105
|
+
<PropertyValue Property="ValueListProperty" String="LTEXT" />
|
|
106
|
+
</Record>
|
|
107
|
+
</Collection>
|
|
108
|
+
</PropertyValue>
|
|
109
|
+
</Record>
|
|
110
|
+
</Annotation>
|
|
111
|
+
</Annotations>
|
|
112
|
+
<Annotations Target="SAP__self.H_TCURC_SH/WAERS">
|
|
113
|
+
<Annotation Term="SAP__common.UnitSpecificScale" Path="CURRDEC" />
|
|
114
|
+
<Annotation Term="SAP__common.ValueListMapping">
|
|
115
|
+
<Record>
|
|
116
|
+
<PropertyValue Property="CollectionPath" String="TCURC_CT_Set" />
|
|
117
|
+
<PropertyValue Property="Parameters">
|
|
118
|
+
<Collection>
|
|
119
|
+
<Record Type="SAP__common.ValueListParameterInOut">
|
|
120
|
+
<PropertyValue Property="LocalDataProperty"
|
|
121
|
+
PropertyPath="WAERS" />
|
|
122
|
+
<PropertyValue Property="ValueListProperty" String="WAERS" />
|
|
123
|
+
</Record>
|
|
124
|
+
<Record Type="SAP__common.ValueListParameterDisplayOnly">
|
|
125
|
+
<PropertyValue Property="ValueListProperty" String="LTEXT" />
|
|
126
|
+
</Record>
|
|
127
|
+
</Collection>
|
|
128
|
+
</PropertyValue>
|
|
129
|
+
</Record>
|
|
130
|
+
</Annotation>
|
|
131
|
+
</Annotations>
|
|
132
|
+
<Annotations Target="SAP__self.Container/TCURC_CT_Set">
|
|
133
|
+
<Annotation Term="SAP__capabilities.SearchRestrictions">
|
|
134
|
+
<Record>
|
|
135
|
+
<PropertyValue Property="Searchable" Bool="false" />
|
|
136
|
+
</Record>
|
|
137
|
+
</Annotation>
|
|
138
|
+
<Annotation Term="SAP__capabilities.FilterRestrictions">
|
|
139
|
+
<Record>
|
|
140
|
+
<PropertyValue Property="FilterExpressionRestrictions">
|
|
141
|
+
<Collection>
|
|
142
|
+
<Record>
|
|
143
|
+
<PropertyValue Property="Property" PropertyPath="WAERS" />
|
|
144
|
+
<PropertyValue Property="AllowedExpressions"
|
|
145
|
+
String="MultiValue" />
|
|
146
|
+
</Record>
|
|
147
|
+
</Collection>
|
|
148
|
+
</PropertyValue>
|
|
149
|
+
</Record>
|
|
150
|
+
</Annotation>
|
|
151
|
+
<Annotation Term="SAP__capabilities.UpdateRestrictions">
|
|
152
|
+
<Record>
|
|
153
|
+
<PropertyValue Property="QueryOptions">
|
|
154
|
+
<Record>
|
|
155
|
+
<PropertyValue Property="SelectSupported" Bool="true" />
|
|
156
|
+
</Record>
|
|
157
|
+
</PropertyValue>
|
|
158
|
+
</Record>
|
|
159
|
+
</Annotation>
|
|
160
|
+
</Annotations>
|
|
161
|
+
<Annotations Target="SAP__self.TCURC_CT/WAERS">
|
|
162
|
+
<Annotation Term="SAP__common.UnitSpecificScale" Path="CURRDEC" />
|
|
163
|
+
</Annotations>
|
|
164
|
+
<Annotations Target="SAP__self.Container">
|
|
165
|
+
<Annotation Term="SAP__capabilities.FilterFunctions">
|
|
166
|
+
<Collection>
|
|
167
|
+
<String>eq</String>
|
|
168
|
+
<String>ne</String>
|
|
169
|
+
<String>gt</String>
|
|
170
|
+
<String>ge</String>
|
|
171
|
+
<String>lt</String>
|
|
172
|
+
<String>le</String>
|
|
173
|
+
<String>and</String>
|
|
174
|
+
<String>or</String>
|
|
175
|
+
<String>contains</String>
|
|
176
|
+
<String>startswith</String>
|
|
177
|
+
<String>endswith</String>
|
|
178
|
+
<String>any</String>
|
|
179
|
+
<String>all</String>
|
|
180
|
+
</Collection>
|
|
181
|
+
</Annotation>
|
|
182
|
+
</Annotations>
|
|
183
|
+
</Schema>
|
|
184
|
+
</edmx:DataServices>
|
|
185
|
+
</edmx:Edmx>
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@odata.metadataEtag" : "W/\"20200722082553\"",
|
|
3
|
+
"value" : [
|
|
4
|
+
{
|
|
5
|
+
"NODE_KEY" : "42010aee-2874-1eda-a6cb-2ec71aba0132",
|
|
6
|
+
"PRODUCT_ID" : "HT-1000",
|
|
7
|
+
"LANGU" : "EN",
|
|
8
|
+
"TEXT" : "Notebook Basic 15",
|
|
9
|
+
"SUPPLIER_KEY" : "00000000-0000-0000-0000-000000000000",
|
|
10
|
+
"SUPPLIER_ID" : ""
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"NODE_KEY" : "42010aee-2874-1eda-a6cb-2ec71aba2132",
|
|
14
|
+
"PRODUCT_ID" : "HT-1001",
|
|
15
|
+
"LANGU" : "EN",
|
|
16
|
+
"TEXT" : "modified by QUnit test",
|
|
17
|
+
"SUPPLIER_KEY" : "00000000-0000-0000-0000-000000000000",
|
|
18
|
+
"SUPPLIER_ID" : ""
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"NODE_KEY" : "42010aee-2874-1eda-a6cb-2ec71aba4132",
|
|
22
|
+
"PRODUCT_ID" : "HT-1002",
|
|
23
|
+
"LANGU" : "EN",
|
|
24
|
+
"TEXT" : "Notebook Basic 18",
|
|
25
|
+
"SUPPLIER_KEY" : "00000000-0000-0000-0000-000000000000",
|
|
26
|
+
"SUPPLIER_ID" : ""
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"NODE_KEY" : "42010aee-2874-1eda-a6cb-2ec71aba6132",
|
|
30
|
+
"PRODUCT_ID" : "HT-1003",
|
|
31
|
+
"LANGU" : "EN",
|
|
32
|
+
"TEXT" : "Notebook Basic 19",
|
|
33
|
+
"SUPPLIER_KEY" : "00000000-0000-0000-0000-000000000000",
|
|
34
|
+
"SUPPLIER_ID" : ""
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"NODE_KEY" : "42010aee-2874-1eda-a6cb-2ec71aba8132",
|
|
38
|
+
"PRODUCT_ID" : "HT-1007",
|
|
39
|
+
"LANGU" : "EN",
|
|
40
|
+
"TEXT" : "ITelO Vault",
|
|
41
|
+
"SUPPLIER_KEY" : "00000000-0000-0000-0000-000000000000",
|
|
42
|
+
"SUPPLIER_ID" : ""
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"NODE_KEY" : "42010aee-2874-1eda-a6cb-2ec71abaa132",
|
|
46
|
+
"PRODUCT_ID" : "HT-1010",
|
|
47
|
+
"LANGU" : "EN",
|
|
48
|
+
"TEXT" : "Notebook Professional 15",
|
|
49
|
+
"SUPPLIER_KEY" : "00000000-0000-0000-0000-000000000000",
|
|
50
|
+
"SUPPLIER_ID" : ""
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"NODE_KEY" : "42010aee-2874-1eda-a6cb-2ec71abac132",
|
|
54
|
+
"PRODUCT_ID" : "HT-1011",
|
|
55
|
+
"LANGU" : "EN",
|
|
56
|
+
"TEXT" : "Notebook Professional 17",
|
|
57
|
+
"SUPPLIER_KEY" : "00000000-0000-0000-0000-000000000000",
|
|
58
|
+
"SUPPLIER_ID" : ""
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"NODE_KEY" : "42010aee-2874-1eda-a6cb-2ec71abae132",
|
|
62
|
+
"PRODUCT_ID" : "HT-1020",
|
|
63
|
+
"LANGU" : "EN",
|
|
64
|
+
"TEXT" : "ITelO Vault Net",
|
|
65
|
+
"SUPPLIER_KEY" : "00000000-0000-0000-0000-000000000000",
|
|
66
|
+
"SUPPLIER_ID" : ""
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"NODE_KEY" : "42010aee-2874-1eda-a6cb-2ec71abb0132",
|
|
70
|
+
"PRODUCT_ID" : "HT-1021",
|
|
71
|
+
"LANGU" : "EN",
|
|
72
|
+
"TEXT" : "ITelO Vault SAT",
|
|
73
|
+
"SUPPLIER_KEY" : "00000000-0000-0000-0000-000000000000",
|
|
74
|
+
"SUPPLIER_ID" : ""
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"NODE_KEY" : "42010aee-2874-1eda-a6cb-2ec71abb2132",
|
|
78
|
+
"PRODUCT_ID" : "HT-1022",
|
|
79
|
+
"LANGU" : "EN",
|
|
80
|
+
"TEXT" : "Comfort Easy",
|
|
81
|
+
"SUPPLIER_KEY" : "00000000-0000-0000-0000-000000000000",
|
|
82
|
+
"SUPPLIER_ID" : ""
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"NODE_KEY" : "42010aee-2874-1eda-a6cb-2ec71abb4132",
|
|
86
|
+
"PRODUCT_ID" : "HT-1023",
|
|
87
|
+
"LANGU" : "EN",
|
|
88
|
+
"TEXT" : "Comfort Senior",
|
|
89
|
+
"SUPPLIER_KEY" : "00000000-0000-0000-0000-000000000000",
|
|
90
|
+
"SUPPLIER_ID" : ""
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|