Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatic Update #39

Merged
merged 1 commit into from
Feb 5, 2025
Merged
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: 6 additions & 6 deletions src/00/03/zabap2ui5_cl_util.clas.abap
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CLASS zabap2ui5_cl_util DEFINITION
PUBLIC
INHERITING FROM zabap2ui5_cl_abap_api
INHERITING FROM zabap2ui5_cl_util_abap
CREATE PUBLIC.

PUBLIC SECTION.
Expand Down Expand Up @@ -96,7 +96,7 @@ CLASS zabap2ui5_cl_util DEFINITION
rollname TYPE clike
langu TYPE clike DEFAULT sy-langu
RETURNING
VALUE(result) TYPE zabap2ui5_cl_abap_api=>ty_t_fix_val ##NEEDED.
VALUE(result) TYPE zabap2ui5_cl_util_abap=>ty_t_fix_val ##NEEDED.

CLASS-METHODS source_get_method2
IMPORTING
Expand Down Expand Up @@ -1244,10 +1244,10 @@ CLASS zabap2ui5_cl_util IMPLEMENTATION.

TRY.
CALL METHOD zabap2ui5_cl_srt_typedescr=>('CREATE_BY_DATA_OBJECT')
EXPORTING
data_object = data
RECEIVING
srtti = srtti.
EXPORTING
data_object = data
RECEIVING
srtti = srtti.

CALL TRANSFORMATION id SOURCE srtti = srtti dobj = data RESULT XML result.

Expand Down
Loading