From 7e41e73ae797f66c6ed79986f8e15839231ae32c Mon Sep 17 00:00:00 2001 From: robinPfaffSap Date: Tue, 18 Feb 2025 17:21:49 +0100 Subject: [PATCH 01/10] Add files for SXTG --- file-formats/sxtg/README.md | 5 + file-formats/sxtg/sxtg-v1.json | 116 ++++++++++++++++++ .../sxtg/type/zif_aff_sxtg_v1.intf.abap | 63 ++++++++++ .../sxtg/type/zif_aff_sxtg_v1.intf.json | 7 ++ 4 files changed, 191 insertions(+) create mode 100644 file-formats/sxtg/README.md create mode 100644 file-formats/sxtg/sxtg-v1.json create mode 100644 file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap create mode 100644 file-formats/sxtg/type/zif_aff_sxtg_v1.intf.json diff --git a/file-formats/sxtg/README.md b/file-formats/sxtg/README.md new file mode 100644 index 000000000..3b26f7013 --- /dev/null +++ b/file-formats/sxtg/README.md @@ -0,0 +1,5 @@ +# SXTG File Format + +File | Cardinality | Definition | Schema | Example +:--- | :--- | :--- | :--- | :--- +`.sxtg.json` | 1 | [`zif_aff_sxtg_v1.intf.abap`](./type/zif_aff_sxtg_v1.intf.abap) | [`sxtg-v1.json`](./sxtg-v1.json) diff --git a/file-formats/sxtg/sxtg-v1.json b/file-formats/sxtg/sxtg-v1.json new file mode 100644 index 000000000..7a9b1dfad --- /dev/null +++ b/file-formats/sxtg/sxtg-v1.json @@ -0,0 +1,116 @@ +{ + "$comment": "This file is autogenerated, do not edit manually, see https://github.com/SAP/abap-file-formats for more information.", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://github.com/SAP/abap-file-formats/blob/main/file-formats/sxtg/sxtg-v1.json", + "title": "SAP GUI Extension Point", + "description": "SAP gui extension point for developer extensibility", + "type": "object", + "properties": { + "formatVersion": { + "title": "Format Version", + "description": "Format version", + "type": "string", + "const": "1" + }, + "header": { + "title": "Header", + "description": "Header", + "type": "object", + "properties": { + "description": { + "title": "Description", + "description": "Description of the ABAP object", + "type": "string", + "maxLength": 60 + }, + "originalLanguage": { + "title": "Original Language", + "description": "Original language of the ABAP object", + "type": "string", + "minLength": 2 + }, + "abapLanguageVersion": { + "title": "ABAP Language Version", + "description": "ABAP language version", + "type": "string", + "enum": [ + "standard", + "keyUser", + "cloudDevelopment" + ], + "enumTitles": [ + "Standard", + "ABAP for Key Users", + "ABAP Cloud Development" + ], + "enumDescriptions": [ + "Standard", + "ABAP for key user extensibility", + "ABAP cloud development" + ], + "default": "standard" + } + }, + "additionalProperties": false, + "required": [ + "description", + "originalLanguage" + ] + }, + "extensionPointDetails": { + "title": "Extension Point Details", + "description": "Details for SAP gui extension point", + "type": "object", + "properties": { + "extensionInclude": { + "title": "Extension Include", + "description": "Extension include with persisted custom fields", + "type": "string", + "maxLength": 30 + }, + "applicationDataStructure": { + "title": "Application Data Structure", + "description": "Structure with application data", + "type": "string", + "maxLength": 30 + }, + "uiExtensionEntity": { + "title": "UI Extension Entity", + "description": "Abstract entity with ui definition", + "type": "string", + "maxLength": 30 + } + }, + "additionalProperties": false, + "required": [ + "extensionInclude", + "applicationDataStructure", + "uiExtensionEntity" + ] + }, + "transactionCodes": { + "title": "Transaction Codes", + "description": "Transaction codes of extensible application", + "type": "array", + "items": { + "title": "Transaction Code", + "description": "Transaction Code", + "type": "object", + "properties": { + "transactionCode": { + "title": "Transaction Code", + "description": "Transaction Codes", + "type": "string", + "maxLength": 20 + } + }, + "additionalProperties": false + } + } + }, + "additionalProperties": false, + "required": [ + "formatVersion", + "header" + ] +} diff --git a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap new file mode 100644 index 000000000..3e6eb2c8a --- /dev/null +++ b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap @@ -0,0 +1,63 @@ +INTERFACE zif_aff_sxtg_v1 + PUBLIC. + + TYPES ty_extension_include TYPE c LENGTH 30. + TYPES ty_application_data_structure TYPE c LENGTH 30. + TYPES ty_ui_extension_entity TYPE c LENGTH 30. + + TYPES: + "!

Transaction Code

+ "! Transaction Code + BEGIN OF ty_transaction_code, + "!

Transaction Code

+ "! Transaction Codes + transaction_code TYPE c LENGTH 20, + END OF ty_transaction_code. + + "!

Transaction Codes

+ "! Transaction Codes + TYPES ty_transaction_codes TYPE STANDARD TABLE OF ty_transaction_code WITH KEY transaction_code. + + TYPES: + "!

Extension Point Details

+ "! Details for SAP gui extension point + BEGIN OF ty_extension_point_details, + "!

Extension Include

+ "! Extension include with persisted custom fields + "! $required + extension_include TYPE ty_extension_include, + + "!

Application Data Structure

+ "! Structure with application data + "! $required + application_data_structure TYPE ty_application_data_structure, + + "!

UI Extension Entity

+ "! Abstract entity with ui definition + "! $required + ui_extension_entity TYPE ty_ui_extension_entity, + END OF ty_extension_point_details. + + TYPES: + "!

SAP GUI Extension Point

+ "! SAP gui extension point for developer extensibility + BEGIN OF ty_main, + "!

Format Version

+ "! Format version + "! $required + format_version TYPE zif_aff_types_v1=>ty_format_version, + "!

Header

+ "! Header + "! $required + header TYPE zif_aff_types_v1=>ty_header_60, + + "!

Extension Point Details

+ "! Details for SAP gui extension point + extension_point_details TYPE ty_extension_point_details, + + "!

Transaction Codes

+ "! Transaction codes of extensible application + transaction_codes TYPE ty_transaction_codes, + END OF ty_main. + +ENDINTERFACE. diff --git a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.json b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.json new file mode 100644 index 000000000..06f4b3293 --- /dev/null +++ b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.json @@ -0,0 +1,7 @@ +{ + "formatVersion": "1", + "header": { + "description": "SXTG: SAP GUI Extension Point AFF Type", + "originalLanguage": "en" + } +} From e82ab76eb4698d4eea50fb7a9ab72e730028b068 Mon Sep 17 00:00:00 2001 From: robinPfaffSap Date: Thu, 6 Mar 2025 09:42:56 +0100 Subject: [PATCH 02/10] React to review comments --- file-formats/sxtg/sxtg-v1.json | 37 ++++------------- .../sxtg/type/zif_aff_sxtg_v1.intf.abap | 40 +++++++++---------- 2 files changed, 26 insertions(+), 51 deletions(-) diff --git a/file-formats/sxtg/sxtg-v1.json b/file-formats/sxtg/sxtg-v1.json index 7a9b1dfad..b3e6098b8 100644 --- a/file-formats/sxtg/sxtg-v1.json +++ b/file-formats/sxtg/sxtg-v1.json @@ -28,27 +28,6 @@ "description": "Original language of the ABAP object", "type": "string", "minLength": 2 - }, - "abapLanguageVersion": { - "title": "ABAP Language Version", - "description": "ABAP language version", - "type": "string", - "enum": [ - "standard", - "keyUser", - "cloudDevelopment" - ], - "enumTitles": [ - "Standard", - "ABAP for Key Users", - "ABAP Cloud Development" - ], - "enumDescriptions": [ - "Standard", - "ABAP for key user extensibility", - "ABAP cloud development" - ], - "default": "standard" } }, "additionalProperties": false, @@ -57,9 +36,9 @@ "originalLanguage" ] }, - "extensionPointDetails": { - "title": "Extension Point Details", - "description": "Details for SAP gui extension point", + "generalInformation": { + "title": "General Information", + "description": "General information", "type": "object", "properties": { "extensionInclude": { @@ -89,17 +68,17 @@ ] }, "transactionCodes": { - "title": "Transaction Codes", + "title": "Transaction codes", "description": "Transaction codes of extensible application", "type": "array", "items": { - "title": "Transaction Code", - "description": "Transaction Code", + "title": "Transaction code", + "description": "Transaction code", "type": "object", "properties": { "transactionCode": { - "title": "Transaction Code", - "description": "Transaction Codes", + "title": "Transaction code", + "description": "Transaction codes", "type": "string", "maxLength": 20 } diff --git a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap index 3e6eb2c8a..ea21b7d47 100644 --- a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap +++ b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap @@ -1,42 +1,38 @@ INTERFACE zif_aff_sxtg_v1 PUBLIC. - TYPES ty_extension_include TYPE c LENGTH 30. - TYPES ty_application_data_structure TYPE c LENGTH 30. - TYPES ty_ui_extension_entity TYPE c LENGTH 30. - TYPES: - "!

Transaction Code

- "! Transaction Code + "!

Transaction code

+ "! Transaction code BEGIN OF ty_transaction_code, - "!

Transaction Code

- "! Transaction Codes + "!

Transaction code

+ "! Transaction codes transaction_code TYPE c LENGTH 20, END OF ty_transaction_code. - "!

Transaction Codes

- "! Transaction Codes + "!

Transaction codes

+ "! Transaction codes TYPES ty_transaction_codes TYPE STANDARD TABLE OF ty_transaction_code WITH KEY transaction_code. TYPES: - "!

Extension Point Details

- "! Details for SAP gui extension point - BEGIN OF ty_extension_point_details, + "!

General Information

+ "! General information + BEGIN OF ty_general_information, "!

Extension Include

"! Extension include with persisted custom fields "! $required - extension_include TYPE ty_extension_include, + extension_include TYPE zif_aff_types_v1=>ty_object_name_30, "!

Application Data Structure

"! Structure with application data "! $required - application_data_structure TYPE ty_application_data_structure, + application_data_structure TYPE zif_aff_types_v1=>ty_object_name_30, "!

UI Extension Entity

"! Abstract entity with ui definition "! $required - ui_extension_entity TYPE ty_ui_extension_entity, - END OF ty_extension_point_details. + ui_extension_entity TYPE zif_aff_types_v1=>ty_object_name_30, + END OF ty_general_information. TYPES: "!

SAP GUI Extension Point

@@ -49,13 +45,13 @@ INTERFACE zif_aff_sxtg_v1 "!

Header

"! Header "! $required - header TYPE zif_aff_types_v1=>ty_header_60, + header TYPE zif_aff_types_v1=>ty_header_60_no_abap_lv , - "!

Extension Point Details

- "! Details for SAP gui extension point - extension_point_details TYPE ty_extension_point_details, + "!

General Information

+ "! General information + general_information TYPE ty_general_information, - "!

Transaction Codes

+ "!

Transaction codes

"! Transaction codes of extensible application transaction_codes TYPE ty_transaction_codes, END OF ty_main. From c0d1deec18219217907bd1c5e410ef9adfaba354 Mon Sep 17 00:00:00 2001 From: robinPfaffSap Date: Thu, 6 Mar 2025 09:46:49 +0100 Subject: [PATCH 03/10] React to abaplint --- file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap index ea21b7d47..d44773511 100644 --- a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap +++ b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap @@ -41,11 +41,11 @@ INTERFACE zif_aff_sxtg_v1 "!

Format Version

"! Format version "! $required - format_version TYPE zif_aff_types_v1=>ty_format_version, + format_version TYPE zif_aff_types_v1=>ty_format_version, "!

Header

"! Header "! $required - header TYPE zif_aff_types_v1=>ty_header_60_no_abap_lv , + header TYPE zif_aff_types_v1=>ty_header_60_no_abap_lv, "!

General Information

"! General information @@ -53,7 +53,7 @@ INTERFACE zif_aff_sxtg_v1 "!

Transaction codes

"! Transaction codes of extensible application - transaction_codes TYPE ty_transaction_codes, + transaction_codes TYPE ty_transaction_codes, END OF ty_main. ENDINTERFACE. From e902a95881aba22b694ced9dce4149f733d44f31 Mon Sep 17 00:00:00 2001 From: robinPfaffSap Date: Thu, 6 Mar 2025 16:12:54 +0100 Subject: [PATCH 04/10] React to review comment --- file-formats/sxtg/sxtg-v1.json | 6 +++--- file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/file-formats/sxtg/sxtg-v1.json b/file-formats/sxtg/sxtg-v1.json index b3e6098b8..417634eb7 100644 --- a/file-formats/sxtg/sxtg-v1.json +++ b/file-formats/sxtg/sxtg-v1.json @@ -68,16 +68,16 @@ ] }, "transactionCodes": { - "title": "Transaction codes", + "title": "Transaction Codes", "description": "Transaction codes of extensible application", "type": "array", "items": { - "title": "Transaction code", + "title": "Transaction Code", "description": "Transaction code", "type": "object", "properties": { "transactionCode": { - "title": "Transaction code", + "title": "Transaction Code", "description": "Transaction codes", "type": "string", "maxLength": 20 diff --git a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap index d44773511..0e3f09a96 100644 --- a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap +++ b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap @@ -2,15 +2,15 @@ INTERFACE zif_aff_sxtg_v1 PUBLIC. TYPES: - "!

Transaction code

+ "!

Transaction Code

"! Transaction code BEGIN OF ty_transaction_code, - "!

Transaction code

+ "!

Transaction Code

"! Transaction codes transaction_code TYPE c LENGTH 20, END OF ty_transaction_code. - "!

Transaction codes

+ "!

Transaction Codes

"! Transaction codes TYPES ty_transaction_codes TYPE STANDARD TABLE OF ty_transaction_code WITH KEY transaction_code. @@ -51,7 +51,7 @@ INTERFACE zif_aff_sxtg_v1 "! General information general_information TYPE ty_general_information, - "!

Transaction codes

+ "!

Transaction Codes

"! Transaction codes of extensible application transaction_codes TYPE ty_transaction_codes, END OF ty_main. From 46f7c12a164a12e199005c6d778a1f758c31d15c Mon Sep 17 00:00:00 2001 From: robinPfaffSap Date: Mon, 17 Mar 2025 07:57:11 +0100 Subject: [PATCH 05/10] React to review --- file-formats/sxtg/README.md | 2 +- .../sxtg/examples/sxtg_tsm_so.sxtg.json | 17 +++++++++++++++++ file-formats/sxtg/sxtg-v1.json | 2 +- .../sxtg/type/zif_aff_sxtg_v1.intf.abap | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json diff --git a/file-formats/sxtg/README.md b/file-formats/sxtg/README.md index 3b26f7013..87287df96 100644 --- a/file-formats/sxtg/README.md +++ b/file-formats/sxtg/README.md @@ -2,4 +2,4 @@ File | Cardinality | Definition | Schema | Example :--- | :--- | :--- | :--- | :--- -`.sxtg.json` | 1 | [`zif_aff_sxtg_v1.intf.abap`](./type/zif_aff_sxtg_v1.intf.abap) | [`sxtg-v1.json`](./sxtg-v1.json) +`.sxtg.json` | 1 | [`zif_aff_sxtg_v1.intf.abap`](./type/zif_aff_sxtg_v1.intf.abap) | [`sxtg-v1.json`](./sxtg-v1.json) | [`sxtg_tsm_so.sxtg.json`](./examples/sxtg_tsm_so.sxtg.json) diff --git a/file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json b/file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json new file mode 100644 index 000000000..50a305e63 --- /dev/null +++ b/file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json @@ -0,0 +1,17 @@ +{ + "formatVersion": "1", + "header": { + "description": "SXTG: Sales Order Header (Home)", + "originalLanguage": "en" + }, + "generalInformation": { + "extensionInclude": "SXTG_S_TSM_SO_INCL_EEW", + "applicationDataStructure": "SXTG_S_TSM_SO_APPL_DATA", + "uiExtensionEntity": "D_SXTG_TSM_SO_UI_HEADER" + }, + "transactionCodes": [ + { + "transactionCode": "SXTG_TSM_SO" + } + ] +} diff --git a/file-formats/sxtg/sxtg-v1.json b/file-formats/sxtg/sxtg-v1.json index 417634eb7..34a182587 100644 --- a/file-formats/sxtg/sxtg-v1.json +++ b/file-formats/sxtg/sxtg-v1.json @@ -78,7 +78,7 @@ "properties": { "transactionCode": { "title": "Transaction Code", - "description": "Transaction codes", + "description": "Transaction code", "type": "string", "maxLength": 20 } diff --git a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap index 0e3f09a96..87a425684 100644 --- a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap +++ b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap @@ -6,7 +6,7 @@ INTERFACE zif_aff_sxtg_v1 "! Transaction code BEGIN OF ty_transaction_code, "!

Transaction Code

- "! Transaction codes + "! Transaction code transaction_code TYPE c LENGTH 20, END OF ty_transaction_code. From d08e8bdc59ea6a9dfe61079a0e6eef225424de1b Mon Sep 17 00:00:00 2001 From: robinPfaffSap Date: Tue, 29 Jul 2025 09:34:08 +0200 Subject: [PATCH 06/10] React to review --- file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json b/file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json index 50a305e63..ec21ab07c 100644 --- a/file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json +++ b/file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json @@ -1,7 +1,7 @@ { "formatVersion": "1", "header": { - "description": "SXTG: Sales Order Header (Home)", + "description": "", "originalLanguage": "en" }, "generalInformation": { @@ -11,7 +11,7 @@ }, "transactionCodes": [ { - "transactionCode": "SXTG_TSM_SO" + "name": "SXTG_TSM_SO" } ] } From 0e2609c026b64115109b784e57504028bc77e412 Mon Sep 17 00:00:00 2001 From: robinPfaffSap Date: Tue, 29 Jul 2025 09:38:32 +0200 Subject: [PATCH 07/10] React to review --- file-formats/sxtg/README.md | 10 +++++++++- file-formats/sxtg/sxtg-v1.json | 10 +++++----- file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap | 12 ++++++------ 3 files changed, 20 insertions(+), 12 deletions(-) diff --git a/file-formats/sxtg/README.md b/file-formats/sxtg/README.md index 87287df96..5bf5837fa 100644 --- a/file-formats/sxtg/README.md +++ b/file-formats/sxtg/README.md @@ -1,4 +1,12 @@ -# SXTG File Format +# SAP GUI Extension Point File Format + +## Object Type Information + +Object Type | Description | Group +:--- | :--- | :--- +SXTG | SAP GUI Extension Point | Extensibility + +## File Structure File | Cardinality | Definition | Schema | Example :--- | :--- | :--- | :--- | :--- diff --git a/file-formats/sxtg/sxtg-v1.json b/file-formats/sxtg/sxtg-v1.json index 34a182587..98f66aa07 100644 --- a/file-formats/sxtg/sxtg-v1.json +++ b/file-formats/sxtg/sxtg-v1.json @@ -72,13 +72,13 @@ "description": "Transaction codes of extensible application", "type": "array", "items": { - "title": "Transaction Code", - "description": "Transaction code", + "title": "Transaction Codes", + "description": "Transaction codes", "type": "object", "properties": { - "transactionCode": { - "title": "Transaction Code", - "description": "Transaction code", + "name": { + "title": "Name", + "description": "Name of transaction code", "type": "string", "maxLength": 20 } diff --git a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap index 87a425684..cdc65cae3 100644 --- a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap +++ b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap @@ -2,17 +2,17 @@ INTERFACE zif_aff_sxtg_v1 PUBLIC. TYPES: - "!

Transaction Code

- "! Transaction code + "!

Transaction Codes

+ "! Transaction codes BEGIN OF ty_transaction_code, - "!

Transaction Code

- "! Transaction code - transaction_code TYPE c LENGTH 20, + "!

Name

+ "! Name of transaction code + name TYPE c LENGTH 20, END OF ty_transaction_code. "!

Transaction Codes

"! Transaction codes - TYPES ty_transaction_codes TYPE STANDARD TABLE OF ty_transaction_code WITH KEY transaction_code. + TYPES ty_transaction_codes TYPE STANDARD TABLE OF ty_transaction_code WITH KEY name. TYPES: "!

General Information

From 13b39ef239aa98675f8cb14074f8b3d619cc6d71 Mon Sep 17 00:00:00 2001 From: robinPfaffSap Date: Tue, 29 Jul 2025 09:41:18 +0200 Subject: [PATCH 08/10] Update file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap Co-authored-by: Markus --- file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap index cdc65cae3..aae71f168 100644 --- a/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap +++ b/file-formats/sxtg/type/zif_aff_sxtg_v1.intf.abap @@ -36,7 +36,7 @@ INTERFACE zif_aff_sxtg_v1 TYPES: "!

SAP GUI Extension Point

- "! SAP gui extension point for developer extensibility + "! SAP GUI extension point for developer extensibility BEGIN OF ty_main, "!

Format Version

"! Format version From 01f1a964c888ec5029e5ecee2a5ad19d54959dea Mon Sep 17 00:00:00 2001 From: robinPfaffSap Date: Tue, 29 Jul 2025 09:44:41 +0200 Subject: [PATCH 09/10] React to review --- file-formats/sxtg/sxtg-v1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/sxtg/sxtg-v1.json b/file-formats/sxtg/sxtg-v1.json index 98f66aa07..5a8bd1162 100644 --- a/file-formats/sxtg/sxtg-v1.json +++ b/file-formats/sxtg/sxtg-v1.json @@ -3,7 +3,7 @@ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://github.com/SAP/abap-file-formats/blob/main/file-formats/sxtg/sxtg-v1.json", "title": "SAP GUI Extension Point", - "description": "SAP gui extension point for developer extensibility", + "description": "SAP GUI extension point for developer extensibility", "type": "object", "properties": { "formatVersion": { From 484266fdea1433b6158a7790de69fd0ffdd4b975 Mon Sep 17 00:00:00 2001 From: Katharina Wurz Date: Tue, 29 Jul 2025 10:03:31 +0200 Subject: [PATCH 10/10] Add description --- file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json b/file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json index ec21ab07c..2c4871101 100644 --- a/file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json +++ b/file-formats/sxtg/examples/sxtg_tsm_so.sxtg.json @@ -1,7 +1,7 @@ { "formatVersion": "1", "header": { - "description": "", + "description": "SXTG: Sales Order Header (Home)", "originalLanguage": "en" }, "generalInformation": {