Skip to content

Commit

Permalink
GSMP: New Execution Mode 'J' (#382)
Browse files Browse the repository at this point in the history
* Update gsmp-v1.json

* Update zif_aff_gsmp_v1.intf.abap

* Update gsmp-v1.json

* Update zif_aff_gsmp_v1.intf.abap

* Update gsmp-v1.json

* Update zif_aff_gsmp_v1.intf.abap
  • Loading branch information
mseich authored Jul 26, 2022
1 parent 333ea5f commit f5240ba
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion file-formats/gsmp/gsmp-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -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/gsmp/gsmp-v1.json",
"title": "Metric Provider",
"description": "Metric Provider (GSMP) v1",
"description": "Metric Provider (GSMP)",
"type": "object",
"properties": {
"formatVersion": {
Expand Down Expand Up @@ -102,18 +102,21 @@
"system",
"instance",
"application",
"job",
"none"
],
"enumTitles": [
"System",
"Instance",
"Application",
"Job",
"None"
],
"enumDescriptions": [
"System",
"Instance",
"Application",
"Job",
"No execution. Only model. Data from external."
]
},
Expand Down
6 changes: 5 additions & 1 deletion file-formats/gsmp/type/zif_aff_gsmp_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ INTERFACE zif_aff_gsmp_v1
"! Application
application TYPE ty_execution_mode VALUE 'A',

"! <p class="shorttext">Job</p>
"! Job
job TYPE ty_execution_mode VALUE 'J',

"! <p class="shorttext">None</p>
"! No execution. Only model. Data from external.
none TYPE ty_execution_mode VALUE 'N',
Expand Down Expand Up @@ -128,7 +132,7 @@ INTERFACE zif_aff_gsmp_v1
TYPES:

"! <p class="shorttext">Metric Provider</p>
"! Metric Provider (GSMP) v1
"! Metric Provider (GSMP)
BEGIN OF ty_main,

"! $required
Expand Down

0 comments on commit f5240ba

Please sign in to comment.