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

fix cl_abap_dyn_prg #888

Merged
merged 1 commit into from
Jun 6, 2024
Merged
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
7 changes: 4 additions & 3 deletions src/abap/dyn/cl_abap_dyn_prg.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ CLASS cl_abap_dyn_prg DEFINITION PUBLIC.
PUBLIC SECTION.
CLASS-METHODS check_table_name_str
IMPORTING
val TYPE csequence
packages TYPE csequence
val TYPE csequence
packages TYPE csequence
incl_sub_packages TYPE abap_bool OPTIONAL
RETURNING
VALUE(val_str) TYPE string
VALUE(val_str) TYPE string
RAISING
cx_abap_not_a_table
cx_abap_not_in_package.
Expand Down