@sapui5/sap.fe.core 1.133.0 → 1.133.2

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.
@@ -79,6 +79,12 @@ function normalizeSearchTerm(sSearchTerm: string): string | undefined {
79
79
  if (!sSearchTerm) {
80
80
  return undefined;
81
81
  }
82
+
83
+ // checking for search term "OR" is to allow the SD specific search for SaleOrderType=OR (OR is a hana keyword)
84
+ if (sSearchTerm === "OR") {
85
+ return '"' + sSearchTerm + '"';
86
+ }
87
+
82
88
  const convertedSearchTerm = sSearchTerm.replace(/["();]/g, " "); // these are the specific characters that fail on both, CAP and RAP: "();
83
89
  if (convertedSearchTerm === "" || convertedSearchTerm === " ") {
84
90
  return undefined;