@abaplint/core 2.101.30 → 2.101.31
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/build/src/registry.js
CHANGED
|
@@ -10,7 +10,9 @@ class FunctionModuleRecommendationsConf extends _basic_rule_config_1.BasicRuleCo
|
|
|
10
10
|
constructor() {
|
|
11
11
|
super(...arguments);
|
|
12
12
|
/** Tuple of Function Module Name to be replaced, the recommended alternative and
|
|
13
|
-
* the version from which the recommendation is valid
|
|
13
|
+
* the version from which the recommendation is valid.
|
|
14
|
+
* @uniqueItems true
|
|
15
|
+
*/
|
|
14
16
|
this.recommendations = [
|
|
15
17
|
{ name: "CALCULATE_HASH_FOR_RAW", replace: "use CL_ABAP_HMAC or CL_ABAP_MESSAGE_DIGEST" },
|
|
16
18
|
{ name: "ECATT_CONV_XSTRING_TO_STRING", replace: "use CL_BINARY_CONVERT" },
|
|
@@ -21,7 +23,7 @@ class FunctionModuleRecommendationsConf extends _basic_rule_config_1.BasicRuleCo
|
|
|
21
23
|
{ name: "GUID_CREATE", replace: "use CL_SYSTEM_UUID" },
|
|
22
24
|
{ name: "IGN_TIMESTAMP_DIFFERENCE", replace: "use CL_ABAP_TSTMP" },
|
|
23
25
|
{ name: "IGN_TIMESTAMP_PLUSMINUS", replace: "use CL_ABAP_TSTMP" },
|
|
24
|
-
{ name: "
|
|
26
|
+
{ name: "ISM_SD_GET_PRICING_CONDITIONS", replace: "use CL_PRC_RESULT_FACTORY as per note 2220005" },
|
|
25
27
|
{ name: "JOB_CREATE", replace: "use CL_BP_ABAP_JOB" },
|
|
26
28
|
{ name: "JOB_SUBMIT", replace: "use CL_BP_ABAP_JOB" },
|
|
27
29
|
{ name: "POPUP_TO_CONFIRM_STEP", replace: "use POPUP_TO_CONFIRM" },
|