We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86b4809 commit 008a27fCopy full SHA for 008a27f
src/z2ui5_cl_demo_app_320.clas.abap
@@ -292,6 +292,8 @@ CLASS z2ui5_cl_demo_app_320 IMPLEMENTATION.
292
ENDMETHOD.
293
294
METHOD calculate_content_height.
295
- result = |{ condense( CONV i( floor( ( lines / 2 ) ) * 68 + 48 ) ) }px|.
+ DATA(lv_floor) = floor( ( lines / 2 ) ) * 68 + 48.
296
+ DATA(lv_string) = CONV string( lv_floor ).
297
+ result = |{ condense( lv_string ) }px|.
298
299
ENDCLASS.
0 commit comments