@sapui5/sap.fe.core 1.100.0 → 1.102.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.
Files changed (295) hide show
  1. package/package.json +4 -4
  2. package/src/sap/fe/core/.library +2 -3
  3. package/src/sap/fe/core/AppComponent.js +23 -30
  4. package/src/sap/fe/core/AppComponent.ts +35 -40
  5. package/src/sap/fe/core/AppStateHandler.js +8 -8
  6. package/src/sap/fe/core/AppStateHandler.ts +11 -11
  7. package/src/sap/fe/core/BaseController.js +9 -9
  8. package/src/sap/fe/core/BaseController.ts +3 -4
  9. package/src/sap/fe/core/CommonUtils.js +122 -101
  10. package/src/sap/fe/core/CommonUtils.ts +239 -193
  11. package/src/sap/fe/core/ExtensionAPI.js +12 -13
  12. package/src/sap/fe/core/ExtensionAPI.ts +21 -31
  13. package/src/sap/fe/core/PageController.js +19 -13
  14. package/src/sap/fe/core/PageController.ts +40 -34
  15. package/src/sap/fe/core/TemplateComponent.js +198 -123
  16. package/src/sap/fe/core/TemplateComponent.ts +109 -121
  17. package/src/sap/fe/core/TemplateModel.js +7 -9
  18. package/src/sap/fe/core/TemplateModel.ts +3 -3
  19. package/src/sap/fe/core/buildingBlocks/AttributeModel.js +60 -0
  20. package/src/sap/fe/core/buildingBlocks/AttributeModel.ts +37 -0
  21. package/src/sap/fe/core/buildingBlocks/BuildingBlock.js +165 -0
  22. package/src/sap/fe/core/buildingBlocks/BuildingBlock.ts +178 -0
  23. package/src/sap/fe/core/buildingBlocks/BuildingBlockRuntime.js +935 -0
  24. package/src/sap/fe/core/buildingBlocks/BuildingBlockRuntime.ts +837 -0
  25. package/src/sap/fe/core/buildingBlocks/TraceInfo.js +436 -0
  26. package/src/sap/fe/core/buildingBlocks/TraceInfo.ts +431 -0
  27. package/src/sap/fe/core/{BusyLocker.js → controllerextensions/BusyLocker.js} +1 -1
  28. package/src/sap/fe/core/{BusyLocker.ts → controllerextensions/BusyLocker.ts} +7 -7
  29. package/src/sap/fe/core/controllerextensions/EditFlow.js +660 -288
  30. package/src/sap/fe/core/controllerextensions/EditFlow.ts +513 -331
  31. package/src/sap/fe/core/controllerextensions/IntentBasedNavigation.js +11 -11
  32. package/src/sap/fe/core/controllerextensions/IntentBasedNavigation.ts +6 -7
  33. package/src/sap/fe/core/controllerextensions/InternalEditFlow.js +43 -25
  34. package/src/sap/fe/core/controllerextensions/InternalEditFlow.ts +132 -103
  35. package/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.js +16 -16
  36. package/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.ts +64 -55
  37. package/src/sap/fe/core/controllerextensions/InternalRouting.js +166 -99
  38. package/src/sap/fe/core/controllerextensions/InternalRouting.ts +187 -149
  39. package/src/sap/fe/core/controllerextensions/KPIManagement.js +14 -14
  40. package/src/sap/fe/core/controllerextensions/KPIManagement.ts +12 -11
  41. package/src/sap/fe/core/controllerextensions/MassEdit.js +13 -12
  42. package/src/sap/fe/core/controllerextensions/MassEdit.ts +22 -22
  43. package/src/sap/fe/core/controllerextensions/MessageHandler.js +14 -26
  44. package/src/sap/fe/core/controllerextensions/MessageHandler.ts +20 -30
  45. package/src/sap/fe/core/controllerextensions/PageReady.js +25 -23
  46. package/src/sap/fe/core/controllerextensions/PageReady.ts +49 -47
  47. package/src/sap/fe/core/controllerextensions/Paginator.js +24 -15
  48. package/src/sap/fe/core/controllerextensions/Paginator.ts +35 -20
  49. package/src/sap/fe/core/controllerextensions/Placeholder.js +10 -10
  50. package/src/sap/fe/core/controllerextensions/Placeholder.ts +12 -14
  51. package/src/sap/fe/core/controllerextensions/Routing.js +11 -11
  52. package/src/sap/fe/core/controllerextensions/Routing.ts +12 -13
  53. package/src/sap/fe/core/controllerextensions/Share.js +34 -16
  54. package/src/sap/fe/core/controllerextensions/Share.ts +50 -32
  55. package/src/sap/fe/core/controllerextensions/SideEffects.js +15 -15
  56. package/src/sap/fe/core/controllerextensions/SideEffects.ts +64 -65
  57. package/src/sap/fe/core/controllerextensions/ViewState.js +27 -31
  58. package/src/sap/fe/core/controllerextensions/ViewState.ts +103 -102
  59. package/src/sap/fe/core/controllerextensions/collaboration/ActivityBase.js +105 -0
  60. package/src/sap/fe/core/controllerextensions/collaboration/ActivityBase.ts +98 -0
  61. package/src/sap/fe/core/controllerextensions/collaboration/ActivitySync.js +360 -0
  62. package/src/sap/fe/core/{actions → controllerextensions}/collaboration/ActivitySync.ts +90 -132
  63. package/src/sap/fe/core/controllerextensions/collaboration/CollaborationCommon.js +146 -0
  64. package/src/sap/fe/core/{actions → controllerextensions}/collaboration/CollaborationCommon.ts +18 -8
  65. package/src/sap/fe/core/controllerextensions/collaboration/Manage.js +264 -0
  66. package/src/sap/fe/core/{actions → controllerextensions}/collaboration/Manage.ts +35 -33
  67. package/src/sap/fe/core/controllerextensions/collaboration/ManageDialog.fragment.xml +100 -0
  68. package/src/sap/fe/core/{actions → controllerextensions}/collaboration/UserDetails.fragment.xml +5 -7
  69. package/src/sap/fe/core/controllerextensions/editFlow/TransactionHelper.js +1584 -0
  70. package/src/sap/fe/core/{TransactionHelper.ts → controllerextensions/editFlow/TransactionHelper.ts} +190 -159
  71. package/src/sap/fe/core/controllerextensions/editFlow/draft.js +780 -0
  72. package/src/sap/fe/core/{actions → controllerextensions/editFlow}/draft.ts +329 -76
  73. package/src/sap/fe/core/controllerextensions/editFlow/operations.js +1149 -0
  74. package/src/sap/fe/core/{actions → controllerextensions/editFlow}/operations.ts +169 -97
  75. package/src/sap/fe/core/controllerextensions/editFlow/sticky.js +190 -0
  76. package/src/sap/fe/core/{actions → controllerextensions/editFlow}/sticky.ts +76 -12
  77. package/src/sap/fe/core/controllerextensions/messageHandler/messageHandling.js +592 -0
  78. package/src/sap/fe/core/{actions → controllerextensions/messageHandler}/messageHandling.ts +83 -60
  79. package/src/sap/fe/core/controllerextensions/routing/RouterProxy.js +940 -0
  80. package/src/sap/fe/core/{RouterProxy.ts → controllerextensions/routing/RouterProxy.ts} +52 -36
  81. package/src/sap/fe/core/controls/ActionParameterDialog.fragment.xml +21 -18
  82. package/src/sap/fe/core/controls/Any.js +28 -0
  83. package/src/sap/fe/core/controls/Any.ts +30 -0
  84. package/src/sap/fe/core/controls/CommandExecution.js +50 -16
  85. package/src/sap/fe/core/controls/CommandExecution.ts +31 -22
  86. package/src/sap/fe/core/controls/ConditionalWrapper.js +136 -65
  87. package/src/sap/fe/core/controls/ConditionalWrapper.ts +49 -58
  88. package/src/sap/fe/core/controls/CustomFilterFieldContentWrapper.js +371 -0
  89. package/src/sap/fe/core/controls/CustomFilterFieldContentWrapper.ts +282 -0
  90. package/src/sap/fe/core/controls/CustomQuickViewPage.js +74 -36
  91. package/src/sap/fe/core/controls/CustomQuickViewPage.ts +23 -32
  92. package/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossDraft.fragment.xml +52 -5
  93. package/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler.js +127 -67
  94. package/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler.ts +127 -67
  95. package/src/sap/fe/core/controls/FieldWrapper.js +171 -87
  96. package/src/sap/fe/core/controls/FieldWrapper.ts +69 -80
  97. package/src/sap/fe/core/controls/FileWrapper.js +360 -0
  98. package/src/sap/fe/core/controls/FileWrapper.ts +202 -0
  99. package/src/sap/fe/core/controls/FilterBar.js +154 -119
  100. package/src/sap/fe/core/controls/FilterBar.ts +128 -123
  101. package/src/sap/fe/core/controls/FormElementWrapper.js +102 -37
  102. package/src/sap/fe/core/controls/FormElementWrapper.ts +43 -35
  103. package/src/sap/fe/core/controls/MassEditSelect.js +33 -0
  104. package/src/sap/fe/core/controls/MassEditSelect.ts +45 -0
  105. package/src/sap/fe/core/controls/filterbar/FilterContainer.js +111 -89
  106. package/src/sap/fe/core/controls/filterbar/FilterContainer.ts +86 -82
  107. package/src/sap/fe/core/controls/filterbar/VisualFilter.js +242 -193
  108. package/src/sap/fe/core/controls/filterbar/VisualFilter.ts +211 -204
  109. package/src/sap/fe/core/controls/filterbar/VisualFilterContainer.js +152 -116
  110. package/src/sap/fe/core/controls/filterbar/VisualFilterContainer.ts +105 -105
  111. package/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils.js +2 -2
  112. package/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils.ts +23 -28
  113. package/src/sap/fe/core/controls/massEdit/MassEditDialog.fragment.xml +41 -81
  114. package/src/sap/fe/core/controls/massEdit/MassEditField.fragment.xml +107 -0
  115. package/src/sap/fe/core/controls/massEdit/MassEditHandlers.js +550 -35
  116. package/src/sap/fe/core/controls/massEdit/MassEditHandlers.ts +604 -35
  117. package/src/sap/fe/core/converters/ManifestSettings.js +3 -1
  118. package/src/sap/fe/core/converters/ManifestSettings.ts +9 -2
  119. package/src/sap/fe/core/converters/MetaModelConverter.js +11 -40
  120. package/src/sap/fe/core/converters/MetaModelConverter.ts +56 -84
  121. package/src/sap/fe/core/converters/annotations/DataField.js +20 -5
  122. package/src/sap/fe/core/converters/annotations/DataField.ts +27 -6
  123. package/src/sap/fe/core/converters/controls/Common/Action.js +14 -21
  124. package/src/sap/fe/core/converters/controls/Common/Action.ts +23 -28
  125. package/src/sap/fe/core/converters/controls/Common/Chart.js +17 -10
  126. package/src/sap/fe/core/converters/controls/Common/Chart.ts +20 -14
  127. package/src/sap/fe/core/converters/controls/Common/Form.js +16 -18
  128. package/src/sap/fe/core/converters/controls/Common/Form.ts +20 -20
  129. package/src/sap/fe/core/converters/controls/Common/KPI.js +1 -1
  130. package/src/sap/fe/core/converters/controls/Common/KPI.ts +2 -3
  131. package/src/sap/fe/core/converters/controls/Common/Table.js +389 -173
  132. package/src/sap/fe/core/converters/controls/Common/Table.ts +440 -244
  133. package/src/sap/fe/core/converters/controls/Common/table/StandardActions.js +26 -16
  134. package/src/sap/fe/core/converters/controls/Common/table/StandardActions.ts +27 -19
  135. package/src/sap/fe/core/converters/controls/ListReport/FilterBar.js +78 -47
  136. package/src/sap/fe/core/converters/controls/ListReport/FilterBar.ts +146 -107
  137. package/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet.js +6 -6
  138. package/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet.ts +20 -18
  139. package/src/sap/fe/core/converters/controls/ObjectPage/SubSection.js +30 -25
  140. package/src/sap/fe/core/converters/controls/ObjectPage/SubSection.ts +39 -34
  141. package/src/sap/fe/core/converters/helpers/Aggregation.js +10 -2
  142. package/src/sap/fe/core/converters/helpers/Aggregation.ts +18 -13
  143. package/src/sap/fe/core/converters/helpers/BindingHelper.js +3 -2
  144. package/src/sap/fe/core/converters/helpers/BindingHelper.ts +6 -5
  145. package/src/sap/fe/core/converters/objectPage/FormMenuActions.js +1 -1
  146. package/src/sap/fe/core/converters/objectPage/FormMenuActions.ts +0 -4
  147. package/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.js +27 -24
  148. package/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.ts +49 -40
  149. package/src/sap/fe/core/converters/templates/ListReportConverter.js +33 -22
  150. package/src/sap/fe/core/converters/templates/ListReportConverter.ts +77 -62
  151. package/src/sap/fe/core/converters/templates/ObjectPageConverter.js +28 -28
  152. package/src/sap/fe/core/converters/templates/ObjectPageConverter.ts +38 -45
  153. package/src/sap/fe/core/designtime/AppComponent.designtime.js +3 -3
  154. package/src/sap/fe/core/designtime/AppComponent.designtime.ts +8 -6
  155. package/src/sap/fe/core/formatters/KPIFormatter.js +3 -12
  156. package/src/sap/fe/core/formatters/KPIFormatter.ts +3 -2
  157. package/src/sap/fe/core/formatters/TableFormatter.js +74 -13
  158. package/src/sap/fe/core/formatters/TableFormatter.ts +71 -16
  159. package/src/sap/fe/core/formatters/ValueFormatter.js +4 -4
  160. package/src/sap/fe/core/formatters/ValueFormatter.ts +4 -7
  161. package/src/sap/fe/core/fpm/Component.js +46 -17
  162. package/src/sap/fe/core/fpm/Component.ts +11 -16
  163. package/src/sap/fe/core/helpers/AppStartupHelper.js +4 -4
  164. package/src/sap/fe/core/helpers/AppStartupHelper.ts +3 -3
  165. package/src/sap/fe/core/helpers/BindingExpression.js +10 -7
  166. package/src/sap/fe/core/helpers/BindingExpression.ts +37 -35
  167. package/src/sap/fe/core/helpers/ClassSupport.js +273 -256
  168. package/src/sap/fe/core/helpers/ClassSupport.ts +315 -237
  169. package/src/sap/fe/core/helpers/FPMHelper.js +3 -2
  170. package/src/sap/fe/core/helpers/FPMHelper.ts +9 -8
  171. package/src/sap/fe/core/helpers/MassEditHelper.js +522 -147
  172. package/src/sap/fe/core/helpers/MassEditHelper.ts +563 -236
  173. package/src/sap/fe/core/helpers/ModelHelper.js +29 -1
  174. package/src/sap/fe/core/helpers/ModelHelper.ts +39 -26
  175. package/src/sap/fe/core/helpers/PasteHelper.js +4 -4
  176. package/src/sap/fe/core/helpers/PasteHelper.ts +4 -3
  177. package/src/sap/fe/core/helpers/SemanticDateOperators.js +3 -3
  178. package/src/sap/fe/core/helpers/SemanticDateOperators.ts +3 -1
  179. package/src/sap/fe/core/helpers/SemanticKeyHelper.js +1 -1
  180. package/src/sap/fe/core/helpers/SemanticKeyHelper.ts +1 -1
  181. package/src/sap/fe/core/helpers/StableIdHelper.js +5 -7
  182. package/src/sap/fe/core/helpers/StableIdHelper.ts +8 -8
  183. package/src/sap/fe/core/{Synchronization.js → helpers/Synchronization.js} +1 -1
  184. package/src/sap/fe/core/{Synchronization.ts → helpers/Synchronization.ts} +1 -1
  185. package/src/sap/fe/core/jsx-runtime/jsx.js +35 -5
  186. package/src/sap/fe/core/jsx-runtime/jsx.ts +22 -8
  187. package/src/sap/fe/core/library.js +13 -5
  188. package/src/sap/fe/core/library.ts +26 -17
  189. package/src/sap/fe/core/manifestMerger/ChangePageConfiguration.js +1 -1
  190. package/src/sap/fe/core/manifestMerger/ChangePageConfiguration.ts +0 -3
  191. package/src/sap/fe/core/messagebundle.properties +135 -180
  192. package/src/sap/fe/core/messagebundle_ar.properties +31 -64
  193. package/src/sap/fe/core/messagebundle_bg.properties +31 -64
  194. package/src/sap/fe/core/messagebundle_ca.properties +31 -64
  195. package/src/sap/fe/core/messagebundle_cs.properties +31 -64
  196. package/src/sap/fe/core/messagebundle_cy.properties +32 -65
  197. package/src/sap/fe/core/messagebundle_da.properties +31 -64
  198. package/src/sap/fe/core/messagebundle_de.properties +29 -62
  199. package/src/sap/fe/core/messagebundle_el.properties +32 -65
  200. package/src/sap/fe/core/messagebundle_en.properties +32 -65
  201. package/src/sap/fe/core/messagebundle_en_GB.properties +29 -62
  202. package/src/sap/fe/core/messagebundle_en_US_sappsd.properties +41 -74
  203. package/src/sap/fe/core/messagebundle_en_US_saprigi.properties +32 -65
  204. package/src/sap/fe/core/messagebundle_en_US_saptrc.properties +20 -6
  205. package/src/sap/fe/core/messagebundle_es.properties +31 -64
  206. package/src/sap/fe/core/messagebundle_es_MX.properties +31 -64
  207. package/src/sap/fe/core/messagebundle_et.properties +31 -64
  208. package/src/sap/fe/core/messagebundle_fi.properties +29 -62
  209. package/src/sap/fe/core/messagebundle_fr.properties +36 -69
  210. package/src/sap/fe/core/messagebundle_fr_CA.properties +33 -66
  211. package/src/sap/fe/core/messagebundle_hi.properties +29 -62
  212. package/src/sap/fe/core/messagebundle_hr.properties +32 -65
  213. package/src/sap/fe/core/messagebundle_hu.properties +30 -63
  214. package/src/sap/fe/core/messagebundle_id.properties +32 -65
  215. package/src/sap/fe/core/messagebundle_it.properties +31 -64
  216. package/src/sap/fe/core/messagebundle_iw.properties +31 -64
  217. package/src/sap/fe/core/messagebundle_ja.properties +29 -62
  218. package/src/sap/fe/core/messagebundle_kk.properties +31 -64
  219. package/src/sap/fe/core/messagebundle_ko.properties +31 -64
  220. package/src/sap/fe/core/messagebundle_lt.properties +31 -64
  221. package/src/sap/fe/core/messagebundle_lv.properties +32 -65
  222. package/src/sap/fe/core/messagebundle_ms.properties +31 -64
  223. package/src/sap/fe/core/messagebundle_nl.properties +31 -64
  224. package/src/sap/fe/core/messagebundle_no.properties +31 -64
  225. package/src/sap/fe/core/messagebundle_pl.properties +34 -67
  226. package/src/sap/fe/core/messagebundle_pt.properties +32 -65
  227. package/src/sap/fe/core/messagebundle_pt_PT.properties +31 -64
  228. package/src/sap/fe/core/messagebundle_ro.properties +33 -66
  229. package/src/sap/fe/core/messagebundle_ru.properties +33 -66
  230. package/src/sap/fe/core/messagebundle_sh.properties +31 -64
  231. package/src/sap/fe/core/messagebundle_sk.properties +31 -64
  232. package/src/sap/fe/core/messagebundle_sl.properties +29 -62
  233. package/src/sap/fe/core/messagebundle_sv.properties +30 -63
  234. package/src/sap/fe/core/messagebundle_th.properties +31 -64
  235. package/src/sap/fe/core/messagebundle_tr.properties +31 -64
  236. package/src/sap/fe/core/messagebundle_uk.properties +32 -65
  237. package/src/sap/fe/core/messagebundle_vi.properties +31 -64
  238. package/src/sap/fe/core/messagebundle_zh_CN.properties +32 -65
  239. package/src/sap/fe/core/messagebundle_zh_TW.properties +34 -67
  240. package/src/sap/fe/core/services/AsyncComponentServiceFactory.js +4 -4
  241. package/src/sap/fe/core/services/AsyncComponentServiceFactory.ts +1 -1
  242. package/src/sap/fe/core/services/CacheHandlerServiceFactory.js +5 -5
  243. package/src/sap/fe/core/services/CacheHandlerServiceFactory.ts +1 -2
  244. package/src/sap/fe/core/services/EnvironmentServiceFactory.js +11 -8
  245. package/src/sap/fe/core/services/EnvironmentServiceFactory.ts +15 -13
  246. package/src/sap/fe/core/services/NavigationServiceFactory.js +5 -5
  247. package/src/sap/fe/core/services/NavigationServiceFactory.ts +9 -5
  248. package/src/sap/fe/core/services/ResourceModelServiceFactory.js +4 -4
  249. package/src/sap/fe/core/services/ResourceModelServiceFactory.ts +1 -1
  250. package/src/sap/fe/core/services/RoutingServiceFactory.js +105 -66
  251. package/src/sap/fe/core/services/RoutingServiceFactory.ts +59 -49
  252. package/src/sap/fe/core/services/ShellServicesFactory.js +104 -29
  253. package/src/sap/fe/core/services/ShellServicesFactory.ts +64 -30
  254. package/src/sap/fe/core/services/SideEffectsServiceFactory.js +4 -4
  255. package/src/sap/fe/core/services/SideEffectsServiceFactory.ts +1 -1
  256. package/src/sap/fe/core/services/TemplatedViewServiceFactory.js +11 -10
  257. package/src/sap/fe/core/services/TemplatedViewServiceFactory.ts +38 -51
  258. package/src/sap/fe/core/services/view/TemplatingErrorPage.controller.js +43 -5
  259. package/src/sap/fe/core/services/view/TemplatingErrorPage.controller.ts +6 -3
  260. package/src/sap/fe/core/support/CommonHelper.js +1 -1
  261. package/src/sap/fe/core/support/CommonHelper.ts +0 -3
  262. package/src/sap/fe/core/templating/DataModelPathHelper.js +2 -9
  263. package/src/sap/fe/core/templating/DataModelPathHelper.ts +32 -38
  264. package/src/sap/fe/core/templating/DisplayModeFormatter.js +23 -3
  265. package/src/sap/fe/core/templating/DisplayModeFormatter.ts +27 -6
  266. package/src/sap/fe/core/templating/EntitySetHelper.js +1 -9
  267. package/src/sap/fe/core/templating/EntitySetHelper.ts +11 -13
  268. package/src/sap/fe/core/templating/FilterHelper.js +4 -4
  269. package/src/sap/fe/core/templating/FilterHelper.ts +6 -5
  270. package/src/sap/fe/core/templating/PropertyHelper.js +70 -33
  271. package/src/sap/fe/core/templating/PropertyHelper.ts +49 -27
  272. package/src/sap/fe/core/templating/UIFormatters.js +133 -22
  273. package/src/sap/fe/core/templating/UIFormatters.ts +144 -50
  274. package/src/sap/fe/core/type/DateTimeWithTimezone.js +47 -0
  275. package/src/sap/fe/core/type/DateTimeWithTimezone.ts +23 -0
  276. package/src/sap/fe/core/type/Email.js +26 -8
  277. package/src/sap/fe/core/type/Email.ts +8 -7
  278. package/src/sap/fe/core/AnnotationHelper.js +0 -312
  279. package/src/sap/fe/core/AnnotationHelper.ts +0 -315
  280. package/src/sap/fe/core/RouterProxy.js +0 -926
  281. package/src/sap/fe/core/TransactionHelper.js +0 -1562
  282. package/src/sap/fe/core/actions/collaboration/ActivitySync.js +0 -392
  283. package/src/sap/fe/core/actions/collaboration/CollaborationCommon.js +0 -136
  284. package/src/sap/fe/core/actions/collaboration/Manage.js +0 -262
  285. package/src/sap/fe/core/actions/collaboration/ManageDialog.fragment.xml +0 -103
  286. package/src/sap/fe/core/actions/draft.js +0 -523
  287. package/src/sap/fe/core/actions/messageHandling.js +0 -567
  288. package/src/sap/fe/core/actions/nonDraft.js +0 -20
  289. package/src/sap/fe/core/actions/nonDraft.ts +0 -12
  290. package/src/sap/fe/core/actions/operations.js +0 -1096
  291. package/src/sap/fe/core/actions/sticky.js +0 -130
  292. package/src/sap/fe/core/controllerextensions/ControllerExtensionMetadata.js +0 -78
  293. package/src/sap/fe/core/controllerextensions/ControllerExtensionMetadata.ts +0 -65
  294. package/src/sap/fe/core/formatters/CriticalityFormatter.js +0 -77
  295. package/src/sap/fe/core/formatters/CriticalityFormatter.ts +0 -58
@@ -9,22 +9,25 @@ C_COMMON_SAPFE_CLOSE=Close
9
9
  # XBUT,30: Text for close button
10
10
  C_COMMON_SAPFE_REFRESH=Refresh
11
11
 
12
- # XBUT, 10: OK, can be used in dialog buttons
12
+ # XBUT,30: OK, can be used in dialog buttons
13
13
  C_COMMON_DIALOG_OK=OK
14
14
 
15
- # XBUT,15: Text for button to cancel draft
16
- C_COMMON_OBJECT_PAGE_CANCEL=Cancel
15
+ # XBUT,30: Cancel, can be used in dialog buttons
16
+ C_COMMON_DIALOG_CANCEL=Cancel
17
17
 
18
- # XTIT,25: Title for the List Report
18
+ # XBUT,30: Text for button to cancel draft
19
+ C_COMMON_OBJECT_PAGE_CANCEL=Discard Draft
20
+
21
+ # XTIT,30: Title for the List Report
19
22
  T_LR_TITLE_LR=List Report
20
23
 
21
- # XTIT,25: Title for the Object Page
24
+ # XTIT,30: Title for the Object Page
22
25
  T_OP_TITLE_OP=Object Page
23
26
 
24
- # YMSG, 100: Used in the confirmation message box after pressing the create button in default case.
27
+ # YMSG,100: Used in the confirmation message box after pressing the create button in default case.
25
28
  C_TRANSACTION_HELPER_OBJECT_CREATED= Object was created.
26
29
 
27
- # YMSG, 100: Used in the confirmation message box after pressing the save button in defualt case.
30
+ # YMSG,100: Used in the confirmation message box after pressing the save button in defualt case.
28
31
  C_TRANSACTION_HELPER_OBJECT_SAVED= Object was saved.
29
32
 
30
33
  # XTIT,50: Semantic Date Range, filter
@@ -39,61 +42,74 @@ C_FROM=From
39
42
  # XTIT,50: Semantic Date Range, filter
40
43
  C_TO=To
41
44
 
42
- # YMSG
45
+ # YMSG: Text in message box content
43
46
  C_APP_COMPONENT_SAPFE_APPSTART_TECHNICAL_ISSUES=Application could not be started due to technical issues.
44
47
 
45
- # YMSG, ETAG Technical Error
48
+ # YMSG: ETAG Technical Error
46
49
  C_APP_COMPONENT_SAPFE_ETAG_TECHNICAL_ISSUES=Your changes could not be saved. Refresh the data to work with the most recent version.
47
50
 
48
- # YMSG, ETAG Error with Late Property
51
+ # YMSG: ETAG Error with Late Property
49
52
  C_APP_COMPONENT_SAPFE_ETAG_LATE_PROPERTY=This action may not work. Refresh the data to work with the most recent version.
50
53
 
51
- # YMSG
52
- T_COMMON_SAPFE_APPSTART_WRONG_CONFIGURATION=The application's configuration is wrong and could therefore not be started. Please get in touch with your administrator.
53
-
54
- # YMSG
55
- T_COMMON_SAPFE_APPSTART_TEMPLATING_ISSUE=An error occurred during pre-processing. Click this message to see the technical details.
56
-
57
- # YMSG
54
+ # YMSG: Text in message box content
58
55
  T_TEMPLATING_ERROR_PAGE_SAPFE_APPSTART_TEMPLATING_FAILED=A technical error has occurred.
59
56
 
60
- # YMSG
57
+ # YMSG: Text in confirmation dialog content
61
58
  C_ROUTER_PROXY_SAPFE_EXIT_NOTSAVED_MESSAGE=Your entries will be lost when you leave this page.
62
59
 
63
60
  # ------------------------ DRAFT MODEL ------------------------
64
61
 
65
- # XTIT,50
62
+ # XMSG,100: Text displayed in popover content
66
63
  C_TRANSACTION_HELPER_DRAFT_DISCARD_MESSAGE=Discard all changes?
67
64
 
68
- # XBUT,15: Text for button to discard draft changes
65
+ # XBUT,30: Text for button to discard draft changes
69
66
  C_TRANSACTION_HELPER_DRAFT_DISCARD_BUTTON=Discard
70
67
 
71
- # XMSG,90
72
- ST_DRAFT_DATALOSS_MESSAGE_DRAFT=Do you want to keep your draft changes for later?
68
+ # XMSG,150: Text displayed in dialog content for save case
69
+ ST_DRAFT_DATALOSS_POPUP_MESSAGE_SAVE=You've made changes to this object.\nWhat would you like to do?
70
+
71
+ # XMSG,150: Text displayed in dialog content for create case
72
+ ST_DRAFT_DATALOSS_POPUP_MESSAGE_CREATE=You haven't created this object yet.\nWhat would you like to do?
73
+
74
+ # XRBL,50 - The radio button list element for the "save" option
75
+ ST_DRAFT_DATALOSS_SAVE_DRAFT_RBL=Save
76
+
77
+ # XRBL,50 - The radio button list element for the "create" option
78
+ ST_DRAFT_DATALOSS_CREATE_ENTITY_RBL=Create
79
+
80
+ # XTOL,150 - The quick info text with details for the save option
81
+ ST_DRAFT_DATALOSS_SAVE_DRAFT_TOL=Apply changes to the saved version.
82
+
83
+ # XTOL,100 - The quick info text with details for the create option
84
+ ST_DRAFT_DATALOSS_CREATE_ENTITY_TOL=Create the object.
73
85
 
74
- # XBUT,30
75
- ST_DRAFT_DATALOSS_KEEP_DRAFT_BTN=Keep Draft
86
+ # XRBL,50 - The radio button list element for the "keep draft" option
87
+ ST_DRAFT_DATALOSS_KEEP_DRAFT_RBL=Keep Draft
76
88
 
77
- # XBUT,30
78
- ST_DRAFT_DATALOSS_DISCARD_DRAFT_BTN=Discard Draft
89
+ # XTOL,150 - The quick info text with details for the keep draft option
90
+ ST_DRAFT_DATALOSS_KEEP_DRAFT_TOL=Changes are only visible to you and have no effect on dependent processes and functions.
79
91
 
80
- # XBUT,30
81
- CANCEL=Cancel
92
+ # XRBL,50 - The radio button list element for the "discard draft" option
93
+ ST_DRAFT_DATALOSS_DISCARD_DRAFT_RBL=Discard Draft
82
94
 
83
- # XMSG,30
95
+ # XTOL,150 - The quick info text with details for the discard draft option
96
+ ST_DRAFT_DATALOSS_DISCARD_DRAFT_TOL=All changes will be lost.
97
+
98
+ # XTIT,30: Title of message box
84
99
  WARNING=Warning
85
100
 
86
- # XMSG,30
101
+ # XMSG,100: Text displayed in message box content
87
102
  PROCEED=Proceed anyway?
88
103
 
89
- # XBUT,50
90
- IGNORE=Ignore Warnings and {0}
104
+ # XBUT,50: Ignore warnings for action and execute the action (placeholder is action name).
105
+ IGNORE=Ignore Warnings and "{0}"
91
106
 
92
107
 
93
- # YMSG, 100: Used in the message box after pressing the edit button of a locked object.
108
+ # YMSG: Used in the message box after pressing the edit button of a locked object.
94
109
  C_DRAFT_OBJECT_PAGE_DRAFT_LOCKED_BY_USER=You can\'t edit this object at the moment \nIt is locked by {0}
95
110
 
96
111
  # ------------------------ COLLABORATION DRAFT ------------------------
112
+
97
113
  # YMSG
98
114
  C_COLLABORATIONDRAFT_ACTIVATE=User "{0}" has saved the document.
99
115
 
@@ -103,9 +119,12 @@ C_COLLABORATIONDRAFT_DISCARD=User "{0}" has discarded the draft document.
103
119
  # YMSG
104
120
  C_COLLABORATIONDRAFT_DELETE=User "{0}" has deleted the currently viewed document.
105
121
 
122
+ # YMSG, showing (You) next your name
123
+ C_COLLABORATIONDRAFT_YOU=You
124
+
106
125
  # ------------------------ ACTION CONTROLLER ------------------------
107
126
 
108
- # XTIT,70
127
+ # XTIT,100
109
128
  C_COMMON_SAPFE_ACTION_SUCCESS=Action "{0}" was executed successfully
110
129
 
111
130
  # XTIT,50: Critical action confirmation text
@@ -120,9 +139,6 @@ C_COMMON_ACTION_PARAMETER_DIALOG_CANCEL=Cancel
120
139
  # XTIT,50: text for action parameter dialog error message
121
140
  C_OPERATIONS_ACTION_PARAMETER_DIALOG_MISSING_MANDATORY_MSG=Enter a value for "{0}".
122
141
 
123
- # XTIT,50: Error text if parameter is not filled by user
124
- C_OPERATIONS_ACTION_PARAMETER_REQUIRED=Invalid Entry
125
-
126
142
  # XTIT,50: Label for create dialog title with parameter
127
143
  C_TRANSACTION_HELPER_SAPFE_ACTION_CREATE=Create
128
144
 
@@ -132,29 +148,30 @@ C_TRANSACTION_HELPER_SAPFE_ACTION_CREATE_BUTTON=Continue
132
148
  # XBUT,30: Text for Continue Anyway
133
149
  C_ACTION_PARTIAL_FRAGMENT_SAPFE_CONTINUE_ANYWAY=Continue Anyway
134
150
 
135
- # XFLD,50: Text for Partial Processing
151
+ # XFLD,100: Text for Partial Processing
136
152
  C_ACTION_PARTIAL_FRAGMENT_SAPFE_BOUND_ACTION={0} selected object will not be processed
137
153
 
138
- # XFLD,50: Text for Partial Processing
154
+ # XFLD,100: Text for Partial Processing
139
155
  C_ACTION_PARTIAL_FRAGMENT_SAPFE_BOUND_ACTION_PLURAL={0} selected objects will not be processed
140
156
 
141
- # XFLD,50: Text for Partial Processing
157
+ # XFLD,100: Text for Partial Processing
142
158
  C_ACTION_PARTIAL_FRAGMENT_SAPFE_BOUND_ACTION_SEMANTICKEY=One selected object will not be processed
143
159
 
144
- # XFLD,50: Text for Partial Processing
160
+ # XFLD,100: Text for Partial Processing
145
161
  C_ACTION_PARTIAL_FRAGMENT_SAPFE_BOUND_ACTION_SEMANTICKEY_PLURAL={0} selected objects will not be processed
146
162
 
147
163
  # ------------------------ MESSAGE UTILS ------------------------
164
+
148
165
  # XFLD,30: Text for default group name of the message in message-popover
149
166
  T_MESSAGE_BUTTON_SAPFE_MESSAGE_GROUP_GENERAL=General
150
167
 
151
168
  # XFLD,30: Text for table denominator in the message of the group title in message-popover
152
169
  T_MESSAGE_GROUP_TITLE_TABLE_DENOMINATOR=Table
153
170
 
154
- # XFLD,10: Text for table Row in the message description in message-popover
171
+ # XFLD,30: Text for table Row in the message description in message-popover
155
172
  T_MESSAGE_GROUP_DESCRIPTION_TABLE_ROW=Row
156
173
 
157
- # XFLD,10: Text for table Column in the message description in message-popover
174
+ # XFLD,30: Text for table Column in the message description in message-popover
158
175
  T_MESSAGE_GROUP_DESCRIPTION_TABLE_COLUMN=Column
159
176
 
160
177
  # XFLD,30: Text for prefix for the group name of the message from action in message-popover
@@ -166,108 +183,70 @@ T_MESSAGE_ITEM_SUBTITLE_CREATION_ROW_INDICATOR=<New>
166
183
  # XFLD,30: Text to be displayed when the row/column indicator is not computed in the message subtitle in message-popover
167
184
  T_MESSAGE_ITEM_SUBTITLE_INDICATOR_UNKNOWN=Unknown
168
185
 
169
- # XFLD: Text to be displayed if the column is not part of table settings
186
+ # XFLD,30: Text to be displayed if the column is not part of table settings
170
187
  T_COLUMN_INDICATOR_IN_TABLE_DEFINITION=Hidden
171
188
 
172
- # XFLD,20: Text to be displayed in message description based on column availability in case of error
189
+ # XFLD: Text to be displayed in message description based on column availability in case of error
173
190
  T_COLUMN_AVAILABLE_DIAGNOSIS_MSGDESC_ERROR=The field causing the error is on the linked page
174
191
 
175
- # XFLD,20: Fields Affected Title text
192
+ # XFLD,50: Fields Affected Title text
176
193
  T_FIELDS_AFFECTED_TITLE=Field Affected
177
194
 
178
- # XFLD,20: Diagnosis Title text
195
+ # XFLD,50: Diagnosis Title text
179
196
  T_DIAGNOSIS_TITLE=Diagnosis
180
197
 
181
- # XFLD,20: Text to be displayed in message description based on column availability in case of message types other than error
198
+ # XFLD: Text to be displayed in message description based on column availability in case of message types other than error
182
199
  T_COLUMN_AVAILABLE_DIAGNOSIS_MSGDESC=The underlying field is on the linked page
183
200
 
184
201
  # XFLD,50: Text in the message subtitle in message-popover. Parameters: {0}= row indicator, {1}= column indicator.
185
202
  T_MESSAGE_ITEM_SUBTITLE=Row: {0}, Column: {1}
186
203
 
187
- # XFLD, 24: Title of the NavContainer Errors Page
204
+ # XFLD,30: Title of the NavContainer Errors Page
188
205
  C_COMMON_SAPFE_ERROR=Error
189
206
 
190
- # XTIT, 24: Title of the NavContainer Error Messages Page
207
+ # XTIT,30: Title of the NavContainer Error Messages Page
191
208
  C_MESSAGE_HANDLING_SAPFE_ERROR_MESSAGES_PAGE_TITLE=Messages
192
209
 
193
- # XTIT, 24: Title of the 503 Error Messages Page
210
+ # YMSG,100: Used in the Toast message box
211
+ C_MASS_EDIT_SUCCESS_TOAST=Your changes have been saved
212
+
213
+ # XTIT: Title of the 503 Error Messages Page
194
214
  C_MESSAGE_HANDLING_SAPFE_503_TITLE=Sorry, this service is temporarily unavailable.
195
215
 
196
- # XTIT, 24: Description of the 503 Error Messages Page
216
+ # XMSG: Description of the 503 Error Messages Page
197
217
  C_MESSAGE_HANDLING_SAPFE_503_DESC=Please try again in a few minutes.
198
218
 
219
+ # XMSG: Text displayed in message box content
199
220
  C_MESSAGE_HANDLING_SAPFE_503_ERROR = We expect it to be available again on {0}.
200
221
 
222
+ # XMSG: Text displayed in message box content
201
223
  C_MESSAGE_HANDLING_SAPFE_503_ERROR_DAY = We expect it to be available again at {0}.
202
224
 
225
+ # XMSG: Text displayed in message box content
203
226
  C_MESSAGE_HANDLING_SAPFE_503_ERROR_NO_RETRY_AFTER = Please try again later.
204
227
 
228
+ # XMSG: Text displayed in message box content
205
229
  C_MESSAGE_HANDLING_SAPFE_503_BACKEND_PREFIX =Source message:
206
230
 
207
- # XTIT, 24: Title text of Error Message Box
231
+ # XTIT,30: Title text of Error Message Box
208
232
  C_COMMON_SAPFE_ERROR_MESSAGES_PAGE_TITLE_ERROR=Error
209
233
 
210
- # XTIT, 24: Title text of Warning Message Box
234
+ # XTIT,30: Title text of Warning Message Box
211
235
  C_MESSAGE_HANDLING_SAPFE_ERROR_MESSAGES_PAGE_TITLE_WARNING=Warning
212
236
 
213
- # XTIT, 24: Title text of Info Message Box
237
+ # XTIT,30: Title text of Info Message Box
214
238
  C_MESSAGE_HANDLING_SAPFE_ERROR_MESSAGES_PAGE_TITLE_INFO=Information
215
239
 
216
- # XTIT, 24: Title text of Success Message Box
240
+ # XTIT,30: Title text of Success Message Box
217
241
  C_MESSAGE_HANDLING_SAPFE_ERROR_MESSAGES_PAGE_TITLE_SUCCESS=Success
218
242
 
219
- # XFLD, 48: Title of the NavContainer Technical Page
220
- C_COMMON_SAPFE_TECHNICAL_MESSAGES_PAGE_TITLE=Technical Details
221
-
222
- # XFLD, 30: Label of Technical Detail HTTP Status
223
- C_COMMON_SAPFE_TECHNICAL_DETAILS_HTTP_STATUS=HTTP Status
224
-
225
- # YMSG, 120: Message for the technical issues from Backend
243
+ # YMSG: Message for the technical issues from Backend
226
244
  C_EDITFLOW_SAPFE_CREATION_FAILED_DESCRIPTION=The object could not be created due to a technical error. Please try again later.
227
245
 
228
- # XFLD, 51: Label of Technical Detail Exception Category
229
- C_COMMON_SAPFE_TECHNICAL_DETAILS_EXCEPTION_CATEGORY=Exception Category
230
-
231
- # XFLD, 33: Label of Technical Details Group Application
232
- C_COMMON_SAPFE_TECHNICAL_DETAILS_GROUP_APPLICATION=Application
233
-
234
- # XFLD, 33: Label of Technical Detail Component ID
235
- C_COMMON_SAPFE_TECHNICAL_DETAILS_COMPONENT_ID=Component ID
236
-
237
- # XFLD, 36: Label of Technical Detail OData Service
238
- C_COMMON_SAPFE_TECHNICAL_DETAILS_ODATA_SERVICE=OData Service
239
-
240
- # XFLD, 45: Label of Technical Details Group Error Resolution
241
- C_COMMON_SAPFE_TECHNICAL_DETAILS_GROUP_ERROR_RESOLUTION=Error Resolution
242
-
243
- # XFLD, 39: Label of Technical Detail Transaction ID
244
- C_COMMON_SAPFE_TECHNICAL_DETAILS_TRANSACTION_ID=Transaction ID
245
-
246
- # XFLD, 27: Label of Technical Detail Time Stamp
247
- C_COMMON_SAPFE_TECHNICAL_DETAILS_TIMESTAMP=Time Stamp
248
-
249
- # XFLD, 40: Label of Technical Detail Analysis
250
- C_COMMON_SAPFE_TECHNICAL_DETAILS_ANALYSIS=Analysis
251
-
252
- # XFLD, 35: Label of Technical Detail SAP Note
253
- C_COMMON_SAPFE_TECHNICAL_DETAILS_SAP_NOTE=SAP Note
254
-
255
- # XFLD, 45: Label of Technical Detail SAP Detailed Note
256
- C_COMMON_SAPFE_TECHNICAL_DETAILS_SAP_DETAILED_NOTE=SAP Detailed Note
257
-
258
- # XFLD, 45: Label of Technical Details Group Messages
259
- C_COMMON_SAPFE_TECHNICAL_DETAILS_GROUP_MESSAGES=Messages
260
-
261
- # XFLD, 24: Label of Technical Detail Message
262
- C_COMMON_SAPFE_TECHNICAL_DETAILS_MESSAGES=Message
263
-
264
- # XFLD, 45: Text for message page
246
+ # XFLD,100: Text for message page
265
247
  C_COMMON_SAPFE_DATA_RECEIVED_ERROR=Unable to load the data.
266
248
 
267
- # XFLD: Text for Apply Error
268
- C_COMMON_APPLY_ERROR= An error occurred when submitting the changes. Please navigate back to discard the changes or try to submit the changes again.
269
-
270
- # XBUT,15: Title for Delete dialog
249
+ # XBUT,30: Title for Delete dialog
271
250
  C_COMMON_OBJECT_PAGE_DELETE=Delete
272
251
 
273
252
  # YMSG,100: Used in the confirmation message box after pressing the delete button. Parameters: {0}= object title, {1}= object subtitle.
@@ -279,110 +258,79 @@ C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTTITLE_SINGULAR=Delete
279
258
  # YMSG,100: Used in the confirmation message box after pressing the delete button.
280
259
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTTITLE_SINGULAR_NON_DELETABLE=Delete the deletable object?
281
260
 
282
- # YMSG, 100: Used in the confirmation message box after pressing the delete button.
283
- C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_GENERIC_DELETE=Delete object?
284
-
285
- # YMSG, 100: Used in the confirmation message box after pressing the delete button with only unsaved changes object. Parameters: {0}=user name
261
+ # YMSG: Used in the confirmation message box after pressing the delete button with only unsaved changes object. Parameters: {0}=user name
286
262
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_UNSAVED_CHANGES= Another user edited this object without saving the changes:\n{0} \n\nDelete anyway?
287
263
 
288
- # YMSG, 100: Used in the confirmation message box after pressing the delete button with only multiple unsaved changes object.
264
+ # YMSG: Used in the confirmation message box after pressing the delete button with only multiple unsaved changes object.
289
265
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_UNSAVED_CHANGES_MULTIPLE_OBJECTS=Other users have edited the selected objects without saving the changes. \n\nDelete anyway?
290
266
 
291
- # YMSG,100: Used in the confirmation message box after pressing the delete button.
292
- C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTTITLE_PLURAL_NON_DELETABLE=Delete all deletable objects ?
267
+ # YMSG: Used in the confirmation message box after pressing the delete button.
268
+ C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTTITLE_PLURAL_NON_DELETABLE=Delete all deletable objects?
293
269
 
294
- # YMSG,100: Used in the confirmation message box after pressing the delete button.
270
+ # YMSG: Used in the confirmation message box after pressing the delete button.
295
271
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTTITLE_PLURAL=Delete the selected objects?
296
272
 
297
- # YMSG, 100: Used in the confirmation message box after pressing the delete button with non deletable objects. Parameters: {0}= objects that cannot be deleted, {1}= number of selected objects.
273
+ # YMSG: Used in the confirmation message box after pressing the delete button with non deletable objects. Parameters: {0}= objects that cannot be deleted, {1}= number of selected objects.
298
274
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTINFO_AND_FEW_OBJECTS_NON_DELETABLE= {0} out of {1} objects cannot be deleted.
299
275
 
300
- # YMSG, 100: Used in the confirmation message box after pressing the delete button. Parameters: {0}= objects that are locked, {1}= number of selected objects.
276
+ # YMSG: Used in the confirmation message box after pressing the delete button. Parameters: {0}= objects that are locked, {1}= number of selected objects.
301
277
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTINFO_AND_FEW_OBJECTS_LOCKED= {0} of {1} objects are currently locked.
302
278
 
303
- # YMSG, 100: Used in the confirmation message box after pressing the delete button. Parameters: {0}= number of selected objects.
279
+ # YMSG: Used in the confirmation message box after pressing the delete button. Parameters: {0}= number of selected objects.
304
280
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTINFO_AND_ONE_OBJECT_LOCKED= 1 of {0} objects is currently locked.
305
281
 
306
- # YMSG, 100: Used in the confirmation message box after pressing the delete button.
282
+ # YMSG: Used in the confirmation message box after pressing the delete button.
307
283
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_UNSAVED_AND_FEW_OBJECTS_LOCKED_SINGULAR= \nThe remaining object has unsaved changes.\n\nDo you still want to delete it?
308
284
 
309
- # YMSG, 100: Used in the confirmation message box after pressing the delete button.
285
+ # YMSG: Used in the confirmation message box after pressing the delete button.
310
286
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_UNSAVED_AND_FEW_OBJECTS_LOCKED_PLURAL= \nThe remaining objects have unsaved changes.\n\nDo you still want to delete them?
311
287
 
312
- # YMSG, 100: Used in the confirmation message box after pressing the delete button.
288
+ # YMSG: Used in the confirmation message box after pressing the delete button.
313
289
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTINFO_AND_FEW_OBJECTS_UNSAVED_SINGULAR= Also delete object with unsaved changes?
314
290
 
315
- # YMSG, 100: Used in the confirmation message box after pressing the delete button.
291
+ # YMSG: Used in the confirmation message box after pressing the delete button.
316
292
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTINFO_AND_FEW_OBJECTS_UNSAVED_PLURAL= Also delete objects with unsaved changes?
317
293
 
318
- # YMSG, 150: Used in the confirmation message box after pressing the delete button with non deletable objects and locked objects. Parameters: {0}= objects that cannot be deleted, {1}= number of locked objects, {2}= number of selected objects.
294
+ # YMSG: Used in the confirmation message box after pressing the delete button with non deletable objects and locked objects. Parameters: {0}= objects that cannot be deleted, {1}= number of locked objects, {2}= number of selected objects.
319
295
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTINFO_AND_FEW_OBJECTS_LOCKED_AND_NON_DELETABLE= {0} out of {2} objects cannot be deleted. \n{1} of {2} objects are currently locked.
320
296
 
321
- # YMSG, 100: Used in the confirmation message box after pressing the delete button with non deletable objects and locked objects. Parameters: {0}= objects that cannot be deleted, {1}= number of selected objects.
297
+ # YMSG: Used in the confirmation message box after pressing the delete button with non deletable objects and locked objects. Parameters: {0}= objects that cannot be deleted, {1}= number of selected objects.
322
298
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_OBJECTINFO_AND_ONE_OBJECT_LOCKED_AND_NON_DELETABLE= {0} out of {1} objects cannot be deleted. \n1 of {1} objects is currently locked.
323
299
 
324
- # YMSG, 100: Used in the message box when deleting a locked object. Parameters: {0}= objects that cannot be deleted, {1}= number of locked objects, {2}= number of selected objects.
300
+ # YMSG: Used in the message box when deleting a locked object. Parameters: {0}= objects that cannot be deleted, {1}= number of locked objects, {2}= number of selected objects.
325
301
  C_TRANSACTION_HELPER_OBJECT_PAGE_CONFIRM_DELETE_WITH_SINGLE_OBJECT_LOCKED= This object is currently locked by another user and cannot be deleted.
326
302
 
327
- # XTIT,50: Text for title to Delete Dialog. Parameters: {0}= number of selected contexts
328
- C_TRANSACTION_HELPER_OBJECT_PAGE_DELETE_DIALOG=Delete ({0})?
329
-
330
- # YMSG, 100: Used in the Toast message box after pressing the delete button.
303
+ # YMSG,100: Used in the Toast message box after pressing the delete button.
331
304
  C_TRANSACTION_HELPER_OBJECT_PAGE_DELETE_TOAST_SINGULAR=Object was deleted.
332
305
 
333
- # YMSG, 100: Used in the Toast message box after pressing the delete button.
306
+ # YMSG,100: Used in the Toast message box after pressing the delete button.
334
307
  C_TRANSACTION_HELPER_OBJECT_PAGE_DELETE_TOAST_PLURAL=Objects were deleted.
335
308
 
336
309
  #------------DRAFT INFO -----------------
337
- # XTIT,30
338
- C_DRAFT_POPOVER_ADMIN_DATA_DRAFTINFO_LOCKED_OBJECT_WITH_OWNER_INFO=Locked by {0}
339
310
 
340
- # XTIT,30: Edit state, list description
341
- C_DRAFT_POPOVER_ADMIN_DATA_DRAFTINFO_DRAFT_OBJECT=Draft
342
-
343
- # XTIT,30: Edit state, list description
344
- C_DRAFT_POPOVER_ADMIN_DATA_DRAFTINFO_UNSAVED_OBJECT=Unsaved Changes
345
-
346
- # XTIT,30: Edit state, list description
311
+ # XTIT,50: Edit state, list description
347
312
  C_DRAFT_POPOVER_ADMIN_DATA_DRAFTINFO_FLAGGED_OBJECT=Flagged
348
313
 
349
- # XTIT,70
314
+ # XTIT
350
315
  C_DRAFT_POPOVER_ADMIN_DATA_DRAFTINFO_POPOVER_NO_DATA_TEXT=No detailed information available.
351
316
 
352
- # XTIT,70
353
- C_EDIT_FLOW_GENERIC_LOCKED_OBJECT_POPOVER_TEXT_OWNER_INFO=This object is currently being edited by {0}.
354
-
355
- # XTIT,70
356
- C_EDIT_FLOW_GENERIC_LOCKED_OBJECT_POPOVER_TEXT_ADDITIONAL_USER=This object is currently being edited by another user.
357
-
358
- # XTIT,70
359
- C_EDIT_FLOW_LAST_CHANGE_USER_TEXT_OWNER_INFO=This object has unsaved changes made by {0}.
360
-
361
- # XTIT,70
362
- C_EDIT_FLOW_LAST_CHANGE_USER_TEXT_ADDITIONAL_USER=This object has unsaved changes made by another user.
363
-
364
- # XTIT,70
365
- C_EDIT_FLOW_LAST_CHANGE_USER_TEXT=This object has unsaved changes made
366
-
367
317
  #------------Messages for Transient Contexts-----------------
318
+
368
319
  # Currently used both in core and templates - to be cleaned up
369
320
 
370
- # XTIT,70
321
+ # XTIT
371
322
  C_ROUTING_NAVIGATION_DISABLED_TITLE=Navigation is currently not possible
372
323
 
373
- # YMSG, 240
374
- C_ROUTING_NAVIGATION_DISABLED_MESSAGE=Navigation is currently not possible as there are still entries not yet synchronized to the back end.
375
-
376
- # XTIT,15: Text for Warning message title
324
+ # XTIT,50: Text for Warning message title
377
325
  C_DRAFT_OBJECT_PAGE_WARNING=Warning
378
326
 
379
- # YMSG, 200: Used in the confirmation dialog box after pressing the edit button of an object page with unsaved changes
327
+ # YMSG: Used in the confirmation dialog box after pressing the edit button of an object page with unsaved changes
380
328
  C_DRAFT_OBJECT_PAGE_DRAFT_UNSAVED_CHANGES=Another user edited this object without saving the changes\: \n{0} \n\nIf you start editing, those changes will be lost.
381
329
 
382
- # XBUT,15: Text for button to edit draft
330
+ # XBUT,30: Text for button to edit draft
383
331
  C_COMMON_OBJECT_PAGE_EDIT=Edit
384
332
 
385
- # XBUT,15: Text for button to save draft
333
+ # XBUT,30: Text for button to save draft
386
334
  C_OP_OBJECT_PAGE_SAVE=Save
387
335
 
388
336
  # XTIT,50: Edit state, filter
@@ -397,69 +345,76 @@ C_DRAFT_EDIT_STATE_DRAFT_OWN_DRAFT_FILTER=Own Draft
397
345
  # XTIT,50: Edit state, filter
398
346
  C_DRAFT_EDIT_STATE_DRAFT_LOCKED_FILTER=Locked by Another User
399
347
 
400
- # XTIT,50: Edit state, filter
348
+ # XTIT,100: Edit state, filter
401
349
  C_DRAFT_EDIT_STATE_DRAFT_UNSAVED_CHANGES_FILTER=Unsaved Changes by Another User
402
350
 
403
351
  # XTIT,50: Edit state, filter
404
352
  C_DRAFT_EDIT_STATE_DRAFT_ALL_HIDING_DRAFTS_FILTER=All (Hiding Drafts)
405
353
 
406
- # XBUT,15: Text for button Share
407
- T_COMMON_SAPFE_ACTION_SHARE=Share
408
-
409
354
  #------------Texts for in-page navigation-----------------
410
355
 
411
- # XMSG, 130: Message on accessing header datapoint title link for in-page navigation
356
+ # XMSG: Message on accessing header datapoint title link for in-page navigation
412
357
  T_COMMON_HEADERDP_TITLE_LINK_INPAGE_ARIA=Click here to jump to the respective section on the current page
413
358
 
414
- # XMSG, 130: Message on accessing header datapoint title link for external navigation
359
+ # XMSG: Message on accessing header datapoint title link for external navigation
415
360
  T_HEADER_DATAPOINT_TITLE_LINK_EXTERNAL_ARIA=Click here to navigate to the external app
416
361
 
417
362
  #------------Messages for Paste action-----------------
418
363
 
364
+ # YMSG: Text in message box content
419
365
  C_PASTE_HELPER_SAPFE_PASTE_ERROR_MESSAGE_PLURAL=Unable to paste. {0} items contain invalid data.
420
366
 
367
+ # YMSG: Text in message box content
421
368
  C_PASTE_HELPER_SAPFE_PASTE_ERROR_MESSAGE_SINGULAR=Unable to paste. One item contains invalid data.
422
369
 
370
+ # YMSG: Text in message box content
423
371
  C_PASTE_HELPER_SAPFE_PASTE_ERROR_CORRECTION_MESSAGE=Please correct the values below in your source file.
424
372
 
373
+ # YMSG: Text in message box content
425
374
  C_PASTE_HELPER_SAPFE_PASTE_ERROR_CORRECTION_NOTE=(Note: The row/column refers to the position in the dataset you copied.)
426
375
 
427
- # YMSG, 240 : Error message on trying to paste when creation is not allowed.
376
+ # YMSG : Error message on trying to paste when creation is not allowed.
428
377
  T_OP_CONTROLLER_SAPFE_PASTE_DISABLED_MESSAGE=You can\'t use the paste function to create new entries.
429
378
 
430
379
  #-------------Intent Based Navigation Messages -------------------------
431
- # XTIT,70
380
+
381
+ # XTIT,50
432
382
  C_COMMON_NAVIGATION_ERROR_TITLE=Error
433
383
 
434
- # XMSG,70
384
+ # XMSG
435
385
  C_COMMON_HELPER_NAVIGATION_ERROR_MESSAGE = Navigation to this application is not supported.
436
386
 
437
387
  #-------------Type validation messages ----------------
388
+
438
389
  # XMSG: Error message when typing an invalid value for an email address
439
390
  T_EMAILTYPE_INVALID_VALUE=Please enter a valid email address
440
391
 
441
392
  # XFLD: Format for text arrangement with 2 values
442
393
  C_FORMAT_FOR_TEXT_ARRANGEMENT={0} ({1})
443
394
 
444
- #Tooltip of message pop-over button when backend message has more than 1 errors
395
+ # Tooltip of message pop-over button when backend message has more than 1 errors
445
396
  C_COMMON_SAPFE_ERROR_MESSAGES_PAGE_MULTIPLE_ERROR_TOOLTIP=Errors
446
397
 
447
- #Tooltip of message pop-over button when backend message has no errors but 1 or more warnings
398
+ # Tooltip of message pop-over button when backend message has no errors but 1 or more warnings
448
399
  C_COMMON_SAPFE_ERROR_MESSAGES_PAGE_WARNING_TOOLTIP=Warnings
449
400
 
450
- #Aria Text for the Message Pop-over button
401
+ # Aria Text for the Message Pop-over button
451
402
  C_COMMON_SAPFE_ERROR_MESSAGES_PAGE_BUTTON_ARIA_TEXT=Display Messages
452
403
 
453
- #XBUT: Send Email button text
404
+ # XBUT: Send Email button text
454
405
  T_SEMANTIC_CONTROL_SEND_EMAIL=Send Email
455
406
 
456
- # XFLD,30: Text of the Share via JAM button
407
+ # XFLD: Text of the Share via JAM button
457
408
  T_COMMON_SAPFE_SHARE_JAM=Share in SAP Jam
458
409
 
459
- # XFLD,60: Email subject of Share via Email button
410
+ # XFLD: Email subject of Share via Email button
460
411
  T_SHARE_UTIL_HELPER_SAPFE_EMAIL_SUBJECT=Link To: {0}
461
412
 
413
+ # XBUT: Send Email button text
414
+ T_COMMON_SAPFE_SHARE_MSTEAMS=Share to Microsoft Teams
415
+
462
416
  #------------KPI tooltip templates-----------------------
417
+
463
418
  #XMSG: Tooltip template when the KPI has an error status
464
419
  C_KPI_TOOLTIP_ERROR={0} {1}\nStatus\: High-Risk
465
420
 
@@ -506,19 +461,19 @@ C_MASS_EDIT_APPLY_BUTTON_TEXT=Apply
506
461
  # XBUT,30: Text for the cancel button in the mass edit dialog
507
462
  C_MASS_EDIT_CANCEL_BUTTON_TEXT=Cancel
508
463
 
509
- #XMSG: Message to confirm non-editable contexts
464
+ # XMSG: Message to confirm non-editable contexts
510
465
  C_MASS_EDIT_CONFIRM_MESSAGE={0} of {1} products can''t be edited.\nDo you want to edit the remaining {2} products?
511
466
 
512
- #XMSG: Message to confirm non-editable contexts detail header
467
+ # XMSG: Message to confirm non-editable contexts detail header
513
468
  C_MASS_EDIT_CONFIRM_MESSAGE_DETAIL_HEADER=Possible Causes
514
469
 
515
- #XMSG: Message details cause grouping text
470
+ # XMSG: Message details cause grouping text
516
471
  C_MASS_EDIT_CONFIRM_MESSAGE_DETAIL_REASON=Selected products are excluded if:
517
472
 
518
- #XMSG: Message details cause for draft products to confirm non-editable contexts
473
+ # XMSG: Message details cause for draft products to confirm non-editable contexts
519
474
  C_MASS_EDIT_CONFIRM_MESSAGE_DETAIL_REASON_DRAFT=Somebody is working on the product (a draft exists or changes haven't been saved).
520
475
 
521
- #XMSG: Message details cause for non-editable products to confirm non-editable contexts.
476
+ # XMSG: Message details cause for non-editable products to confirm non-editable contexts.
522
477
  C_MASS_EDIT_CONFIRM_MESSAGE_DETAIL_REASON_NON_EDITABLE=Editing isn't allowed for the product.
523
478
 
524
479
  # XBUT,30: Text for Confirm Mass Edit.