Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions abap_transpile.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,14 @@
"\\.g4ba\\.",
"zbp_",
"zasis_cl_interprettypetext",
"zasis_cl_calc_export_url",
"zasis_cl_catstattext",
"zasis_cl_get_domain_fix_values"
],
"output_folder": "output",
"libs": [
{ "url": "https://github.com/open-abap/open-abap-core" },
{ "url": "https://github.com/open-abap/express-icf-shim" },
{ "url": "https://github.com/open-abap/open-abap-gui" },
{ "url": "https://github.com/open-abap/open-abap-rap" },
{ "url": "https://github.com/open-abap/open-abap-xco" },
{ "url": "https://github.com/open-abap/open-abap-rest" },
{ "url": "https://github.com/open-abap/open-abap-adt" },
{ "url": "https://github.com/open-abap/open-abap-seo" },
{ "url": "https://github.com/open-abap/open-abap-lock" },
{ "url": "https://github.com/open-abap/open-abap-jobs" },
{ "url": "https://github.com/open-abap/open-abap-ci" },
{ "url": "https://github.com/open-abap/open-abap-proxy" }
{ "url": "https://github.com/open-abap/open-abap-sadl"}
],
"write_unit_tests": true,
"write_source_map": true,
Expand Down
78 changes: 47 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"author": "Philipp Doelker",
"license": "MIT",
"devDependencies": {
"@abaplint/cli": "^2.120.4",
"@abaplint/cli": "^2.120.5",
"@abaplint/database-sqlite": "^2.13.40",
"@abaplint/runtime": "^2.13.42",
"@abaplint/transpiler-cli": "^2.13.42",
"@abaplint/runtime": "^2.13.46",
"@abaplint/transpiler-cli": "^2.13.46",
"@types/node": "^26.1.1",
"abap-adt-api": "^8.4.1",
"express": "^4.22.2",
Expand Down
15 changes: 8 additions & 7 deletions src/bo/zasis_cl_calc_export_url.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ CLASS zasis_cl_calc_export_url DEFINITION
CREATE PUBLIC.

PUBLIC SECTION.
INTERFACES if_sadl_exit.
INTERFACES if_sadl_exit_calc_element_read.
PROTECTED SECTION.
PRIVATE SECTION.
Expand All @@ -26,14 +25,16 @@ CLASS zasis_cl_calc_export_url IMPLEMENTATION.
ENDMETHOD.

METHOD if_sadl_exit_calc_element_read~calculate.
DATA calculated TYPE STANDARD TABLE OF zasis_c_ruleset.
calculated = CORRESPONDING #( it_original_data ).
ct_calculated_data = CORRESPONDING #( it_original_data ).

LOOP AT calculated ASSIGNING FIELD-SYMBOL(<row>).
<row>-exporturl = |/sap/bc/http/sap/zasis_ext_api_cld/{ zasis_constants=>export-resource_path }/{ <row>-rulesetid }|.
ENDLOOP.
LOOP AT ct_calculated_data ASSIGNING FIELD-SYMBOL(<row>).
ASSIGN COMPONENT 'RULESETID' OF STRUCTURE <row> TO FIELD-SYMBOL(<rulesetid>).
CHECK sy-subrc = 0.
ASSIGN COMPONENT 'EXPORTURL' OF STRUCTURE <row> TO FIELD-SYMBOL(<exporturl>).
CHECK sy-subrc = 0.

ct_calculated_data = CORRESPONDING #( calculated ).
<exporturl> = |/sap/bc/http/sap/zasis_ext_api_cld/{ zasis_constants=>export-resource_path }/{ <rulesetid> }|.
ENDLOOP.
ENDMETHOD.

ENDCLASS.
2 changes: 0 additions & 2 deletions src/bo/zasis_cl_interprettypetext.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ CLASS zasis_cl_interprettypetext DEFINITION
CREATE PUBLIC.

PUBLIC SECTION.

INTERFACES if_sadl_exit .
INTERFACES if_sadl_exit_calc_element_read .
PROTECTED SECTION.
PRIVATE SECTION.
Expand Down
1 change: 0 additions & 1 deletion src/catalogs/sharedobjects/zasis_cl_catstattext.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ CLASS zasis_cl_catstattext DEFINITION

PUBLIC SECTION.

INTERFACES if_sadl_exit .
INTERFACES if_sadl_exit_calc_element_read .
PROTECTED SECTION.
PRIVATE SECTION.
Expand Down