Skip to content

Commit 6e17351

Browse files
committed
update
1 parent b8b0881 commit 6e17351

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/build_downport.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: send to downport repository
2222
uses: peaceiris/actions-gh-pages@v3
2323
with:
24-
external_repository: abap2UI5-downports/addon-popups
24+
external_repository: abap2UI5-downports/popups
2525
user_name: 'github-actions[bot]'
2626
user_email: 'github-actions[bot]@users.noreply.github.com'
2727
publish_branch: main

ci/abaplint-downport.jsonc

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
"files": "/src/**/*.*"
1010
},
1111
{
12-
"url": "https://github.com/abap2UI5/abap2UI5",
12+
"url": "https://github.com/abap2UI5-downports/abap2UI5",
1313
"folder": "/abap2UI5",
1414
"files": "/src/**/*.*"
1515
},
1616
{
17-
"url": "https://github.com/abap2UI5-addons/layout-variant-management",
17+
"url": "https://github.com/abap2UI5-downports/layout-variant-management",
1818
"folder": "/layout_var_management",
1919
"files": "/src/**/*.*"
2020
}

src/z2ui5_cl_pop_displ_f4_help.clas.abap

+5-4
Original file line numberDiff line numberDiff line change
@@ -453,14 +453,15 @@ CLASS z2ui5_cl_pop_displ_f4_help IMPLEMENTATION.
453453

454454
METHOD get_layout.
455455

456-
DATA(class) = cl_abap_classdescr=>get_class_name( me ).
456+
data(class) = ``.
457+
class = cl_abap_classdescr=>get_class_name( me ).
457458
SHIFT class LEFT DELETING LEADING '\CLASS='.
458459

459460
ms_layout = z2ui5_cl_pop_display_layout=>init_layout( control = z2ui5_cl_pop_display_layout=>m_table
460461
data = mt_data
461-
handle01 = CONV #( class )
462-
handle02 = CONV #( mv_table )
463-
handle03 = CONV #( 'F4' ) ).
462+
handle01 = class
463+
handle02 = mv_table
464+
handle03 = 'F4' ).
464465

465466
ENDMETHOD.
466467

0 commit comments

Comments
 (0)