diff --git a/file-formats/enho/enho-v1.json b/file-formats/enho/enho-v1.json index e4129469d..c6f21c04a 100644 --- a/file-formats/enho/enho-v1.json +++ b/file-formats/enho/enho-v1.json @@ -118,20 +118,21 @@ "description": "Does the BAdI implementation support customizing", "type": "string", "enum": [ - "supported", "notSupported", + "supported", "supportedNoTransport" ], "enumTitles": [ - "Customizing supported", - "Customizing not supported", - "Customizing supported (no transport)" + "Customizing Not Supported", + "Customizing Supported", + "Customizing Supported (No Transport)" ], "enumDescriptions": [ - "Customizing is supported", "Customizing is not supported", + "Customizing is supported", "Customizing is supported (without transport)" - ] + ], + "default": "notSupported" }, "filterValues": { "title": "Filter Values", diff --git a/file-formats/enho/type/zif_aff_enho_v1.intf.abap b/file-formats/enho/type/zif_aff_enho_v1.intf.abap index 53322cc94..dd62e9638 100644 --- a/file-formats/enho/type/zif_aff_enho_v1.intf.abap +++ b/file-formats/enho/type/zif_aff_enho_v1.intf.abap @@ -16,19 +16,20 @@ INTERFACE zif_aff_enho_v1 "!
Customizing
"! Customizing "! $values {@link zif_aff_enho_v1.data:co_customizing} + "! $default {@link zif_aff_enho_v1.data:co_customizing.not_supported} TYPES ty_customizing TYPE c LENGTH 1. CONSTANTS: "!Customizing
"! Customizing BEGIN OF co_customizing, - "!Customizing supported
- "! Customizing is supported - supported TYPE ty_customizing VALUE ' ', - "!Customizing not supported
+ "!Customizing Not Supported
"! Customizing is not supported not_supported TYPE ty_customizing VALUE 'X', - "!Customizing supported (no transport)
+ "!Customizing Supported
+ "! Customizing is supported + supported TYPE ty_customizing VALUE ' ', + "!Customizing Supported (No Transport)
"! Customizing is supported (without transport) supported_no_transport TYPE ty_customizing VALUE 'D', END OF co_customizing.